On Thu, Sep 01, 2016 at 03:48:39PM -0700, Jason Gerecke wrote:
> The first 5 patches look fine, but I have a few questions about this
> one, especially in the unit tests:
>
[...]
> > @@ -1466,6 +1500,16 @@ tablet_process(struct evdev_dispatch *dispatch,
> > }
> >
> > static void
> > +tablet_su
From: Yong Bakos
Add doxygen comment blocks to all wl_list methods.
Signed-off-by: Yong Bakos
---
v2: Refine the writing for clarity.
Add dox for wl_list macros, omitted in v1.
Add notices for unsafe operations and invalid states (giucam, pq)
src/wayland-util.h | 213 +
From: Yong Bakos
list-test.c did not cover wl_list_length, so add one test that specifically
tests this method.
Signed-off-by: Yong Bakos
Reviewed-by: Eric Engestrom
Reviewed-by: Pekka Paalanen
---
v2: No changes.
tests/list-test.c | 13 +
1 file changed, 13 insertions(+)
diff
The first 5 patches look fine, but I have a few questions about this
one, especially in the unit tests:
On 08/21/2016 11:14 PM, Peter Hutterer wrote:
> So far we've relied on the wacom kernel module to do touch arbitration for us
> but that won't be the case in upcoming kernels. Implement touch ar
On 08/31/2016 11:43 PM, Peter Hutterer wrote:
> If a tool starts reporting with serial 0 and later updates to a real serial,
> discard that serial and keep reporting as serial 0. We cannot really change
> the tool after proximity in as we don't know when callers query for the serial
> (well, we cou
On 01/09/16 04:13 AM, Pekka Paalanen wrote:
> On Wed, 31 Aug 2016 23:17:09 +0100
> Emil Velikov wrote:
>
>> On 31 August 2016 at 19:10, Derek Foreman wrote:
>>> Thanks for taking a look!
>>>
>>> On 31/08/16 04:22 AM, Emil Velikov wrote:
On 30 August 2016 at 19:56, Derek Foreman wrote:
On 31/08/16 05:17 PM, Emil Velikov wrote:
> On 31 August 2016 at 19:10, Derek Foreman wrote:
>> Thanks for taking a look!
>>
>> On 31/08/16 04:22 AM, Emil Velikov wrote:
>>> On 30 August 2016 at 19:56, Derek Foreman wrote:
From: "Reynaldo H. Verdejo Pinochet"
>>> As mentioned before u
On 01/09/16 07:38 AM, Emil Velikov wrote:
> On 1 September 2016 at 10:13, Pekka Paalanen wrote:
>> On Wed, 31 Aug 2016 23:17:09 +0100
>> Emil Velikov wrote:
>>
>>> On 31 August 2016 at 19:10, Derek Foreman wrote:
Thanks for taking a look!
On 31/08/16 04:22 AM, Emil Velikov wrote:
On 1 September 2016 at 15:12, Emmanuel Gil Peyrot
wrote:
> This prevents a segfault when running on Mesa master, due to the GLES2
> symbols not being declared with the correct prototype (or at all).
>
> Signed-off-by: Emmanuel Gil Peyrot
> ---
> libweston/gl-renderer.c | 1 +
> 1 file changed, 1
This prevents a segfault when unplugging an output when using pixman.
Signed-off-by: Emmanuel Gil Peyrot
---
libweston/compositor-wayland.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/libweston/compositor-wayland.c b/libweston/compositor-wayland.c
index 7c12b4c..c223baa 1
This prevents a segfault when running on Mesa master, due to the GLES2
symbols not being declared with the correct prototype (or at all).
Signed-off-by: Emmanuel Gil Peyrot
---
libweston/gl-renderer.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/libweston/gl-renderer.c b/libweston/gl-rend
On 1 September 2016 at 10:13, Pekka Paalanen wrote:
> On Wed, 31 Aug 2016 23:17:09 +0100
> Emil Velikov wrote:
>
>> On 31 August 2016 at 19:10, Derek Foreman wrote:
>> > Thanks for taking a look!
>> >
>> > On 31/08/16 04:22 AM, Emil Velikov wrote:
>> >> On 30 August 2016 at 19:56, Derek Foreman
On Thu, Sep 01, 2016 at 11:43:41AM +0100, Eric Engestrom wrote:
> On Thu, Sep 01, 2016 at 11:18:12AM +0100, Eric Engestrom wrote:
> > On Thu, Sep 01, 2016 at 09:53:36AM +1000, Peter Hutterer wrote:
> > > Signed-off-by: Peter Hutterer
> > > ---
> > > Mostly sending this out for any hints on how to
On Thu, Sep 01, 2016 at 11:18:12AM +0100, Eric Engestrom wrote:
> On Thu, Sep 01, 2016 at 09:53:36AM +1000, Peter Hutterer wrote:
> > Signed-off-by: Peter Hutterer
> > ---
> > Mostly sending this out for any hints on how to deal with this in Arch or
> > other distributions not listed here. Let me
Hi,
On 01-09-16 03:38, Peter Hutterer wrote:
INPUT_PROP_BUTTONPAD is not set on this device and RMI4 which should fix this
is a bit too far into the future at this point. Hack around it.
https://bugs.freedesktop.org/show_bug.cgi?id=97147
Signed-off-by: Peter Hutterer
Reviewed-by: Hans de Go
On Thu, Sep 01, 2016 at 09:53:36AM +1000, Peter Hutterer wrote:
> Signed-off-by: Peter Hutterer
> ---
> Mostly sending this out for any hints on how to deal with this in Arch or
> other distributions not listed here. Let me know and I'll add it to the
> list.
The Arch way would be to install the
Hi
> > + keyboard->grab_serial = wl_display_get_serial(compositor->wl_display);
> > if (state == WL_KEYBOARD_KEY_STATE_PRESSED) {
> > - keyboard->grab_serial =
> > - wl_display_get_serial(compositor->wl_display);
> > keyboard->grab_time = time;
> >
On Wed, 31 Aug 2016 23:17:09 +0100
Emil Velikov wrote:
> On 31 August 2016 at 19:10, Derek Foreman wrote:
> > Thanks for taking a look!
> >
> > On 31/08/16 04:22 AM, Emil Velikov wrote:
> >> On 30 August 2016 at 19:56, Derek Foreman wrote:
> >>> From: "Reynaldo H. Verdejo Pinochet"
> >>>
>
18 matches
Mail list logo