On Sun, Jul 13, 2014 at 12:17 PM, Lyude wrote:
>wl_tablet specifications
> Version 2
>
> General notes:
> - Many of the axis values in this are normalized to either 0-65535 or
> (-65535)-65535. I would leave the axis values as-is sinc
Guilio,
Would it be better to name it wl_event_queue_roundtrip and just have it
take the wl_event_queue? I guess it is sort-of a wl_display operation, but
you could argue it either way. Thoughts?
--Jason Ekstrand
On Mon, Jul 14, 2014 at 7:15 AM, Giulio Camuffo
wrote:
> wl_display_roundtrip()
wl_display_roundtrip() works on the default queue. Add a parallel
wl_display_roundtrip_queue().
---
v3: fixed dispatch call in place of dispatch_queue
documented the queue parameter
src/wayland-client.c | 24 +---
src/wayland-client.h | 2 ++
2 files changed, 23 insertion
Hi,
On 14 July 2014 14:52, Giulio Camuffo wrote:
> @@ -851,6 +851,7 @@ wl_display_roundtrip(struct wl_display *display)
> callback = wl_display_sync(display);
> if (callback == NULL)
> return -1;
> + wl_proxy_set_queue(callback, queue);
> wl_callback
wl_display_roundtrip() works on the default queue. Add a parallel
wl_display_roundtrip_queue().
---
v2: fixed stupid mistake
src/wayland-client.c | 21 +++--
src/wayland-client.h | 2 ++
2 files changed, 21 insertions(+), 2 deletions(-)
diff --git a/src/wayland-client.c b/src/w
wl_display_roundtrip() works on the default queue. Add a parallel
wl_display_roundtrip_queue().
---
src/wayland-client.c | 21 +++--
src/wayland-client.h | 2 ++
2 files changed, 21 insertions(+), 2 deletions(-)
diff --git a/src/wayland-client.c b/src/wayland-client.c
index e8aab