Re: [PATCH 1/2] evdev: Add support for device quirks and implement axes swapping

2012-09-18 Thread Pekka Paalanen
On Tue, 18 Sep 2012 16:44:57 +0100 Rob Bradford wrote: > From: Rob Bradford > > This quirk is designed for hardware that has the X and Y axes swapped for > absolute events. > --- > src/evdev.c | 68 > - > src/evdev.h | 6 ++ > 2

Re: Weston framerate (Re: bare bones opengl weston client sample)

2012-09-18 Thread Pekka Paalanen
On Tue, 18 Sep 2012 12:52:12 -0400 jegde jedge wrote: > the (window == NULL) was a remnant of prior experimentation. > I have removed and confirmed > There are no other eglSwapBuffer() calls anywhere in the code. Ok, good. > I will produce a simple test app that illustrates my problem. > Bottom

Re: [PATCH 2/4] keyboard: Allow backspace for pre-edit text

2012-09-18 Thread Bill Spitzak
Jan Arne Petersen wrote: On 09/18/2012 02:29 AM, Bill Spitzak wrote: I feel it would be better to confirm the pre-edit at this point, then send the backspace to the application. With a virtual keyboard one usually keeps the current word in the composing (pre-edit) state (to allow correction/pr

Re: [PATCH] faq.html: fix typos

2012-09-18 Thread Diego Viola
Awesome. Thanks Darxus. On Tue, Sep 18, 2012 at 12:58 PM, wrote: > Done. > > When using git format-patch or git send-email to send these, you can use > "--subject-prefix web" to indicate which repo the patch is for, resulting > in, for example: > > Subject: Re: [PATCH web] faq.html: fix typos >

Re: [PATCH] faq.html: fix typos

2012-09-18 Thread darxus
Done. When using git format-patch or git send-email to send these, you can use "--subject-prefix web" to indicate which repo the patch is for, resulting in, for example: Subject: Re: [PATCH web] faq.html: fix typos On 09/17, Diego Viola wrote: > Could you guys merge this please? > > On Sat, S

Re: Weston framerate (Re: bare bones opengl weston client sample)

2012-09-18 Thread jegde jedge
the (window == NULL) was a remnant of prior experimentation. I have removed and confirmed There are no other eglSwapBuffer() calls anywhere in the code. I will produce a simple test app that illustrates my problem. Bottom line is: glut = 60 fps wayland = 20 fps Hopefully, in doing so, it will flu

[PATCH 2/2] compositor-drm: Add quirk loading from udev

2012-09-18 Thread Rob Bradford
From: Rob Bradford Look at udev properties and then set the quirk flags based on the udev properties that are set on the device node. --- src/compositor-drm.c | 11 +++ 1 file changed, 11 insertions(+) diff --git a/src/compositor-drm.c b/src/compositor-drm.c index 10f16bd..0d4c6bd 10064

[PATCH 1/2] evdev: Add support for device quirks and implement axes swapping

2012-09-18 Thread Rob Bradford
From: Rob Bradford This quirk is designed for hardware that has the X and Y axes swapped for absolute events. --- src/evdev.c | 68 - src/evdev.h | 6 ++ 2 files changed, 55 insertions(+), 19 deletions(-) diff --git a/src/evdev.c

Input device quirking

2012-09-18 Thread Rob Bradford
I'd love to hear feedback on these changes. Cheers, Rob ___ wayland-devel mailing list wayland-devel@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/wayland-devel

Re: compositor-android: should output be added to compositor one step before

2012-09-18 Thread Pekka Paalanen
On Thu, 13 Sep 2012 16:20:21 +0530 Abhijit Potnis wrote: > From 8e1adf2e8024e2ef804df2d1b8b1cfd49c91186f Mon Sep 17 00:00:00 2001 > From: Abhijit Potnis > Date: Thu, 13 Sep 2012 12:32:55 +0530 > Subject: [PATCH] text: Adding output to compositor before calling > gles2_renderer_init > > Calling

Re: [PATCH 2/4] keyboard: Allow backspace for pre-edit text

2012-09-18 Thread Jan Arne Petersen
On 09/18/2012 02:29 AM, Bill Spitzak wrote: > I feel it would be better to confirm the pre-edit at this point, then > send the backspace to the application. With a virtual keyboard one usually keeps the current word in the composing (pre-edit) state (to allow correction/prediction). I do not think

Re: Weston framerate (Re: bare bones opengl weston client sample)

2012-09-18 Thread Pekka Paalanen
On Fri, 14 Sep 2012 10:32:03 -0400 jegde jedge wrote: > Sorry about the delay. > I flew 8 legs in 4 days this week. > > Here are the mains for both the glut and Wayland instance of my test > application. > > uMfdInit, uMfdDraw, and c->controller->event() are the interface > functions, solely us