Re: [PATCH weston] Remove cairo-gles2 support from toytoolkit

2016-03-16 Thread Pekka Paalanen
Hi Bryce On Tue, 15 Mar 2016 19:04:41 -0700 Bryce Harrington wrote: > This is a first step towards stopping use of cairo-egl in demo apps. > See: https://bugs.freedesktop.org/show_bug.cgi?id=83878 Also note that is a GSoC project idea: https://phabricator.freedesktop.org/w/wayland/gsoc_2016/id

Re: [PATCH 3/3] ivi: Switch from MEM_ALLOC to the now equivalent xzalloc

2016-03-16 Thread Pekka Paalanen
On Tue, 15 Mar 2016 15:34:45 -0700 Bryce Harrington wrote: > Signed-off-by: Bryce Harrington > --- > clients/ivi-shell-user-interface.c | 22 +++--- > 1 file changed, 7 insertions(+), 15 deletions(-) Reviewed-by: Pekka Paalanen regardless whether xzalloc will be reporting file

Re: [PATCH libinput] touchpad: add quirk for the T450 and T460 generation hardware

2016-03-16 Thread Hans de Goede
Hi, On 11-03-16 01:24, Peter Hutterer wrote: The touchpad's sensors are too far apart (or the firmware interferes), causing in a jerky movement visible especially on slow motion. We get a bunch of normal motion events, then only ABS_MT_PRESSURE updates without x/y updates. After about one mm of

Re: [PATCH 2/2] shared: Print .c file/line number in x* routines

2016-03-16 Thread Pekka Paalanen
On Tue, 15 Mar 2016 15:23:31 -0700 Bryce Harrington wrote: > Switches from inline to pre-processor definitions in order to utilize > __FILE__ and __LINE__ from the .c file in order to display the location > of memory allocation failures when failing. > > Now xmalloc, et al calls will produce: >

Re: [PATCH 1/2] clients & tests: Unify multiple definitions of x*alloc and related functions

2016-03-16 Thread Pekka Paalanen
On Tue, 15 Mar 2016 15:23:30 -0700 Bryce Harrington wrote: > Direct fail_on_null calls now produce output like: > > [weston-info] clients/weston-info.c:714: out of memory > > xmalloc, et al produce output on failure like: > > [weston-info] out of memory (-1) > > Signed-off-by: Bryce H

Re: [PATCH weston] clients: fix incorrect format handling in simple-shm

2016-03-16 Thread Pekka Paalanen
On Tue, 15 Mar 2016 21:41:14 + Murray Calavera wrote: > the `shm_format` function seems to assume the `wl_shm_format` > enum has bit-exclusive enumerations which is not true. > > Signed-off-by: Murray Calavera > --- > clients/simple-shm.c | 9 + > 1 file changed, 5 insertions(+), 4

RE: [PATCH weston 0/5] ivi-shell untangling

2016-03-16 Thread Ucan, Emre (ADITG/SW1)
Hi Pekka, I agree with you that we can let it like this for now. Because as you said we will change ivi-layout.c a lot. Reviewed-by: Emre Ucan Best regards Emre Ucan Software Group I (ADITG/SW1) Tel. +49 5121 49 6937 > -Original Message- > From: Pekka Paalanen [mailto:ppaala...@gmai

Re: [PATCH weston 0/5] ivi-shell untangling

2016-03-16 Thread Pekka Paalanen
On Wed, 16 Mar 2016 08:16:38 + "Ucan, Emre (ADITG/SW1)" wrote: > Hi Pekka-san, > > Basically, it looks good. But I have one question: > > Would it not be better to merge ivi-shell.c and ivi-layout.c > together, if they are the some component ? > > We can then merge also ivi_layout struct t

[ANNOUNCE] libxkbcommon 0.6.0

2016-03-16 Thread Ran Benita
Here are the NEWS for this release: libxkbcommon 0.6.0 == - If the XKB_CONFIG_ROOT environment variable is set, it is used as the XKB configuration root instead of the path determined at build time. - Tests and benchmarks now build correctly on OSX. - An XKB keymap provides a

RE: [PATCH weston 0/5] ivi-shell untangling

2016-03-16 Thread Ucan, Emre (ADITG/SW1)
Hi Pekka-san, Basically, it looks good. But I have one question: Would it not be better to merge ivi-shell.c and ivi-layout.c together, if they are the some component ? We can then merge also ivi_layout struct to ivi_shell struct, and ivi_layout_surface struct to ivi_shell_surface struct etc.

Re: [PATCH weston] input: Implement wl_seat.release

2016-03-16 Thread Hardening
Le 13/03/2016 17:49, Quentin Glidic a écrit : > From: Quentin Glidic > > Avoid a crash because listener is NULL. > > Signed-off-by: Quentin Glidic > --- > src/input.c | 7 +++ > 1 file changed, 7 insertions(+) > > diff --git a/src/input.c b/src/input.c > index 8c106dd..5d13b08 100644 > --