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 bubba...@gmail.com 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,

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

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

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

2012-09-18 Thread Rob Bradford
From: Rob Bradford r...@linux.intel.com 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

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

2012-09-18 Thread Rob Bradford
From: Rob Bradford r...@linux.intel.com 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

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

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, Sep

Re: [PATCH] faq.html: fix typos

2012-09-18 Thread Diego Viola
Awesome. Thanks Darxus. On Tue, Sep 18, 2012 at 12:58 PM, dar...@chaosreigns.com 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]

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

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 bubba...@gmail.com 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