Re: Wayland generic dmabuf protocol

2014-06-10 Thread Thomas Hellstrom
On 06/09/2014 01:23 PM, Daniel Stone wrote: > Hi, > > On 9 June 2014 12:06, Pekka Paalanen > wrote: > > On Mon, 9 Jun 2014 11:00:04 +0200 > Benjamin Gaignard > wrote: > > One of the main comment on the lat

RE: Suggestions on implementing Wayland Protocol Dumper.

2014-06-10 Thread Srivardhan
Thanks All for the suggestions... Will do it in the 2nd way... Thank-you, Hebbar > -Original Message- > From: wayland-devel [mailto:wayland-devel- > boun...@lists.freedesktop.org] On Behalf Of Bryce W. Harrington > Sent: Tuesday, June 10, 2014 2:58 AM > To: Srivardhan > Cc: wayland-devel@

Re: [PATCH libinput 1/2] Add a log_msg_va function

2014-06-10 Thread Peter Hutterer
On Tue, Jun 10, 2014 at 03:08:03PM +0200, Hans de Goede wrote: > This is useful for when we use libraries which want us to provide them with > a logging callback. > > Signed-off-by: Hans de Goede > --- > src/libinput-private.h | 3 +++ > src/libinput.c | 16 +++- > 2 files c

[PATCH libinput 2/6] test: add litest_assert_empty_queue helper function

2014-06-10 Thread Peter Hutterer
Checks if the queue is empty and prints informatino about any events before failing. Signed-off-by: Peter Hutterer --- test/litest.c | 61 + test/litest.h | 1 + test/touchpad.c | 9 ++--- 3 files changed, 64 insertions(+), 7 dele

[PATCH libinput 4/6] test: add clickpad software button tests

2014-06-10 Thread Peter Hutterer
Signed-off-by: Peter Hutterer --- test/touchpad.c | 380 1 file changed, 380 insertions(+) diff --git a/test/touchpad.c b/test/touchpad.c index f9e2820..7b7cb7d 100644 --- a/test/touchpad.c +++ b/test/touchpad.c @@ -517,6 +517,377 @@ START

[PATCH libinput 3/6] test: add a bunch of test for click behavior on touchpads

2014-06-10 Thread Peter Hutterer
Mainly testing the behaviour when clicking during a tap or tap-n-drag. Adds a new "feature" to the litest system, Apple clickpads don't have software buttons by default. Signed-off-by: Peter Hutterer --- test/litest-bcm5974.c | 3 +- test/litest.h | 1 + test/touchpad.c | 180 +

[PATCH libinput 5/6] test: Add description for the T440 synaptics touchpad

2014-06-10 Thread Peter Hutterer
Signed-off-by: Peter Hutterer --- test/Makefile.am | 1 + test/litest-synaptics-t440.c | 112 +++ test/litest.c| 2 + test/litest.h| 2 + 4 files changed, 117 insertions(+) create mode 100644 test/litest-sy

[PATCH libinput 6/6] test: add a couple of top software button test

2014-06-10 Thread Peter Hutterer
Signed-off-by: Peter Hutterer --- test/touchpad.c | 124 1 file changed, 124 insertions(+) diff --git a/test/touchpad.c b/test/touchpad.c index 7b7cb7d..147d0e2 100644 --- a/test/touchpad.c +++ b/test/touchpad.c @@ -888,6 +888,125 @@ START

[PATCH libinput 1/6] touchpad: always call into the the tap state machine

2014-06-10 Thread Peter Hutterer
A button event consumed by the softbutton or clickpad code does not feed into the tap state machine, leaving it in its current state. The touch generating that event however may have triggered state changes. For some tap/click combinations this gives us either double press/release events or an inc

Re: Texture object locking

2014-06-10 Thread Neil Roberts
I was trying to be too clever with git-sendmail and I accidentally sent that message to the wrong list. Please ignore it. Sorry about that. - Neil ___ wayland-devel mailing list wayland-devel@lists.freedesktop.org http://lists.freedesktop.org/mailman/lis

Re: Texture object locking

2014-06-10 Thread Neil Roberts
Jason wrote: > Kristian and I were looking at this today, and there seems to be a > substantial race in the way that we are doing texture locking. Yes, it does look like this is a problem. I also noticed another dodgy-looking pattern when implementing the GL_ARB_clear_texture extension. Whenever

Re: [Mesa-dev] [PATCH mesa] add EGL_TEXTURE_EXTERNAL_WL to WL_bind_wayland_display spec

2014-06-10 Thread Rob Clark
On Mon, Jun 9, 2014 at 5:53 AM, Pekka Paalanen wrote: > On Thu, 16 Aug 2012 17:28:19 -0500 > Rob Clark wrote: > >> From: Rob Clark >> >> Signed-off-by: Rob Clark >> --- >> docs/WL_bind_wayland_display.spec |5 + >> include/EGL/eglmesaext.h |1 + >> 2 files changed, 6 inser

[PATCH libinput 2/2] timer.h: Add #include libinput-util.h

2014-06-10 Thread Hans de Goede
libinput-util.h is needed for the linked list definitions. Signed-off-by: Hans de Goede --- src/timer.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/timer.h b/src/timer.h index df12d0e..5e3b89b 100644 --- a/src/timer.h +++ b/src/timer.h @@ -25,6 +25,8 @@ #include +#include "li

[PATCH libinput 1/2] Add a log_msg_va function

2014-06-10 Thread Hans de Goede
This is useful for when we use libraries which want us to provide them with a logging callback. Signed-off-by: Hans de Goede --- src/libinput-private.h | 3 +++ src/libinput.c | 16 +++- 2 files changed, 14 insertions(+), 5 deletions(-) diff --git a/src/libinput-private.h b

[PATCH libinput] Add a log_msg_va function

2014-06-10 Thread Hans de Goede
This is useful for when we use libraries which want us to provide them with a logging callback. Signed-off-by: Hans de Goede --- src/libinput-private.h | 3 +++ src/libinput.c | 16 +++- 2 files changed, 14 insertions(+), 5 deletions(-) diff --git a/src/libinput-private.h b

Re: [PATCH libinput 1/8] Drop empty FFI_CFLAGS

2014-06-10 Thread Hans de Goede
Hi, All patches in this series look good and are: Reviewed-by: Hans de Goede Regards, Hans On 06/06/2014 08:18 AM, Peter Hutterer wrote: > Leftover from weston > > Signed-off-by: Peter Hutterer > --- > src/Makefile.am | 1 - > 1 file changed, 1 deletion(-) > > diff --git a/src/Makefile.a