[PATCH wayland] protocol: fix key event and related comments

2011-07-14 Thread Tiago Vignatti
--- protocol/wayland.xml |6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/protocol/wayland.xml b/protocol/wayland.xml index 8d8afa4..8622088 100644 --- a/protocol/wayland.xml +++ b/protocol/wayland.xml @@ -10,9 +10,9 @@ - @@ -70,7 +70,7 @@

[PATCH wayland] debug: add timestamps when logging

2011-07-14 Thread Tiago Vignatti
Signed-off-by: Tiago Vignatti --- wayland/connection.c | 16 ++-- wayland/connection.h |2 +- wayland/wayland-client.c |9 - wayland/wayland-server.c |9 - 4 files changed, 23 insertions(+), 13 deletions(-) diff --git a/wayland/connection.c b/way

[PATCH wayland-demos] compositor: fix order for posting surface list

2011-07-14 Thread Tiago Vignatti
If more than one frame event is queued to the client then pick first them in reverse order so it can be dequeued accordingly. Signed-off-by: Tiago Vignatti --- compositor/compositor.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/compositor/compositor.c b/compositor/c

[PATCH wayland] wayland-server: fix frame list behaviour

2011-07-14 Thread Tiago Vignatti
Enqueue new key events on the beginning of the list and select the last one first to be posted. We may need a wl_list_for_each_reverse_safe there. Signed-off-by: Tiago Vignatti --- wayland/wayland-server.c |6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/wayland/way