Re: [PATCH weston] input: Don't try to send pointer frames if no focus_client

2016-01-29 Thread Jonas Ådahl
On Fri, Jan 29, 2016 at 10:29:46AM -0600, Derek Foreman wrote: > Prevents a segfault when mousing into clients that don't get_pointer > like weston-simple-shm and weston-simple-damage. > > Signed-off-by: Derek Foreman Reviewed-by: Jonas Ådahl This fixes what seems to be part of https://bugs.f

Re: [PATCH v3 wayland-protocols] Add the tablet protocol

2016-01-29 Thread Jason Gerecke
On Thu, Jan 28, 2016 at 8:32 PM, Peter Hutterer wrote: > Signed-off-by: Peter Hutterer > --- > Changes to v2: > - renamed hwserial to hardware_serial > - renamed to hwid event to a hardware_id_wacom. no-one else uses this ID > type, so having a generic event with a wacom-specific type + enum is

[PATCH weston] input: Don't try to send pointer frames if no focus_client

2016-01-29 Thread Derek Foreman
Prevents a segfault when mousing into clients that don't get_pointer like weston-simple-shm and weston-simple-damage. Signed-off-by: Derek Foreman --- src/input.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/input.c b/src/input.c index 91813ec..2539fa7 100644 --- a/src/input.c +++

[PATCH] platform: explicitly cast the return value of weston_platform_get_egl_proc_address

2016-01-29 Thread Matthias Treydte
This allows the header to be consumed by C++ compilers, because C++ does away with C's implicit cast from (void*). --- shared/platform.h | 10 ++ 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/shared/platform.h b/shared/platform.h index cf4ecc0..dd55008 100644 --- a/shared/p