Re: Starting document for porting wayland to mali gpu

2012-03-23 Thread Pekka Paalanen
On Fri, 23 Mar 2012 05:50:02 +0900 Simon Hong simon.hon...@gmail.com wrote: Dear folks, I'm new to wayland and want to port wayland on Mali GPU. Any advice, articles or document for start porting for wayland newbie. Hi, apart from the wayland website (I assume you already read all of it),

Re: [PATCH v2] Remove info about nouveau kernel build

2012-03-23 Thread Pekka Paalanen
On Thu, 22 Mar 2012 21:58:27 -0400 cdah...@redhat.com wrote: From: Casey Dahlin cdah...@redhat.com The page flip code for nouveau has been upstream for almost a year now, but the build instructions still stated you needed a kernel from nouveau git. This has been corrected.

[PULL wayland 0.85] signedness fixes and OS compatibility

2012-03-23 Thread Pekka Paalanen
Hi Kristian, this patch series is divided in two: The first part just enables compiler warnings, and then fixes or silences them. One warning is left unfixed: data-device.c:237:26: warning: comparison between signed and unsigned integer expressions The fix for that would be wayland-server.h @@

[PATCH v2] Add simple memory leak check to all tests.

2012-03-23 Thread U. Artie Eoff
From: U. Artie Eoff ullysses.a.e...@intel.com Wrap all tests with a memory balance check to detect potential memory leaks. Fixed a few tests that had memory leaks contained in the tests themselves. Signed-off-by: U. Artie Eoff ullysses.a.e...@intel.com --- tests/Makefile.am |2 +-

[PATCH] Secure screenshooter protocol.

2012-03-23 Thread Scott Moreau
--- clients/Makefile.am |9 + src/screenshooter.c | 40 +++- 2 files changed, 44 insertions(+), 5 deletions(-) diff --git a/clients/Makefile.am b/clients/Makefile.am index eab8939..dd11382 100644 --- a/clients/Makefile.am +++

[PATCH v2] Secure screenshooter protocol.

2012-03-23 Thread Scott Moreau
--- Changed in this version: s/screenshot/screenshooter/ clients/Makefile.am |9 + src/screenshooter.c | 40 +++- 2 files changed, 44 insertions(+), 5 deletions(-) diff --git a/clients/Makefile.am b/clients/Makefile.am index eab8939..dd11382

[PATCH] Window.c delay redraws with frame callback

2012-03-23 Thread Martin Minarik
Don't ignore schedule redraw between idle_redraw() triggering and the frame callback. The frame callback now sets redraw_from_callback and forces window schedule redraw. The flags prevent getting into idle_redraw again until another frame callback. diff --git a/clients/window.c