Re: [PUSH xf86-video-nested] Driver for nesting X-servers

2011-05-09 Thread Stef Bon
On 05/09/2011 01:53 AM, Jamey Sharp wrote: On Sun, May 08, 2011 at 11:48:26PM +0200, Stef Bon wrote: On 05/08/2011 05:07 PM, Jamey Sharp wrote: (I think you mean without using Xinerama.) no, I do mean with Xinerama. As I've written before the trick is to link a screen to a display: :99:0

Re: [PATCH 0/8] Port xf86-video-v4l driver to V4L2 version 2

2011-05-09 Thread Cyril Brulebois
Hi Mauro, Mauro Carvalho Chehab mche...@redhat.com (11/02/2011): Mauro Carvalho Chehab (8): Port xf86-video-v4l driver to V4L2 thanks for your work on it. Maybe it would be nice to have a release at some point? Mraw, KiBi. signature.asc Description: Digital signature

Re: Are we ready to tag release libXext 1.3.0?

2011-05-09 Thread James Jones
Thanks for digging that patch up, but it is incomplete. Let me plug in the missing functions and do a little testing, then I'll post an updated patch. Thanks, -James nvpublic On 5/7/11 9:40 PM, Alan Coopersmith alan.coopersm...@oracle.com wrote: Thanks - as you probably saw I pushed libXext

Re: [PATCH] Make RegionInit() and RegionCreate() take just a box and no size

2011-05-09 Thread Soeren Sandmann
Daniel Stone dan...@fooishbar.org writes: On Mon, May 02, 2011 at 07:44:15AM -0400, Søren Sandmann wrote: The interface to these function was was very confusing since it gave the impression that they initialized the region from a list of boxes, which they didn't. This patch changes the

Re: [PATCH] Make RegionInit() and RegionCreate() take just a box and no size

2011-05-09 Thread Daniel Stone
On Mon, May 09, 2011 at 05:18:29PM +0200, Soeren Sandmann wrote: Daniel Stone dan...@fooishbar.org writes: On Mon, May 02, 2011 at 07:44:15AM -0400, Søren Sandmann wrote: The interface to these function was was very confusing since it gave the impression that they initialized the region

[PATCH xrandr] find_mode: Search for the mode closes to the specified rate

2011-05-09 Thread Jeremy Huddleston
Hey Keith, clang found an issue in xrandr that I'd like you to review the fix for. I'm fairly certain this is what you intended. Thanks, Jeremy For reference: http://people.freedesktop.org/~jeremyhu/analyzer/yuffie/20110509-/xrandr/report-gZOzCf.html#EndPath http://cgit.freedesktop.org

Re: [PATCH 2/6] XKB: Simplify a loop in ProcXkbGetKbdByName

2011-05-09 Thread Cyril Brulebois
Sorry I'm late but: Daniel Stone dan...@fooishbar.org (05/05/2011): Replace: for (stuff; things; etc) { if (misc || other) { [...] } } with: for (stuff; things; etc) { if (!misc !other) continue; [...] } that

Re: [PUSH xf86-video-nested] Driver for nesting X-servers

2011-05-09 Thread Jamey Sharp
On Mon, May 09, 2011 at 08:56:50AM +0200, Stef Bon wrote: yes, you're right, a real Xinerama is different cards combined in one display. See the multiseat setup here: http://beforeafterx.blogspot.com/2011/02/multiseat-setup.html As you see there, it's a multiseat sollution. Well, to be

Call for desktop/graphics/mobile tracks for Linux Plumbers' Conf 2011

2011-05-09 Thread Jesse Barnes
We have both desktop (for general graphics/media stuff) and mobile tracks at this year's LPC. So if you're working on a topic related to one of the above areas, especially one that has open issues or spans multiple parts of the stack, please submit a topic for discussion at

Re: More DRI2 invalidate stuff

2011-05-09 Thread Eric Anholt
On Fri, 6 May 2011 18:18:14 +0300, ville.syrj...@nokia.com wrote: The proposed DRI@ invalidate patch [1] causes a lot more invalidate events to be sent out. That will cause processes to wake up needlessly. Eg. if an unredirected fullscreen app is flipping, each flip will also send an

Re: [PATCH rendercheck] Report the success_mask to stdout

2011-05-09 Thread Eric Anholt
On Sat, 7 May 2011 18:20:17 -0700, Jeremy Huddleston jerem...@apple.com wrote: This was previously computed but never passed on to the caller. Found-by: clang static analyzer Signed-off-by: Jeremy Huddleston jerem...@apple.com Doing something useful with those success flags would be nice,

Re: More DRI2 invalidate stuff

2011-05-09 Thread Ville Syrjälä
On Mon, May 09, 2011 at 01:42:03PM -0700, ext Eric Anholt wrote: On Fri, 6 May 2011 18:18:14 +0300, ville.syrj...@nokia.com wrote: The proposed DRI@ invalidate patch [1] causes a lot more invalidate events to be sent out. That will cause processes to wake up needlessly. Eg. if an

Re: [PUSH xf86-video-nested] Driver for nesting X-servers

2011-05-09 Thread Stef Bon
On 05/09/2011 06:37 PM, Jamey Sharp wrote: On Mon, May 09, 2011 at 08:56:50AM +0200, Stef Bon wrote: yes, you're right, a real Xinerama is different cards combined in one display. See the multiseat setup here: http://beforeafterx.blogspot.com/2011/02/multiseat-setup.html As you see there,

Re: [PATCH rendercheck] Report the success_mask to stdout

2011-05-09 Thread Jeremy Huddleston
Well it's better than nothing... but ok, I'll beautify it. On May 9, 2011, at 13:47, Eric Anholt wrote: On Sat, 7 May 2011 18:20:17 -0700, Jeremy Huddleston jerem...@apple.com wrote: This was previously computed but never passed on to the caller. Found-by: clang static analyzer

Re: [PATCH 2/6] XKB: Simplify a loop in ProcXkbGetKbdByName

2011-05-09 Thread Daniel Stone
Hi, On Mon, May 09, 2011 at 06:34:09PM +0200, Cyril Brulebois wrote: Sorry I'm late but: Daniel Stone dan...@fooishbar.org (05/05/2011): Replace: for (stuff; things; etc) { if (misc || other) { [...] } } with: for (stuff; things; etc) {

[PATCH rendercheck] Report which test groups passed successfully

2011-05-09 Thread Jeremy Huddleston
This was previously computed but never passed on to the caller. Found-by: clang static analyzer Signed-off-by: Jeremy Huddleston jerem...@apple.com --- configure.ac |2 +- main.c| 83 +++-- rendercheck.h |5 +++- tests.c

Re: [PATCH 20/20] dix: reduce scope of tmp and mult.

2011-05-09 Thread Peter Hutterer
On Sun, May 08, 2011 at 03:16:38PM +0200, Simon Thum wrote: On 05/03/2011 03:00 AM, Peter Hutterer wrote: Some more documentation would have helped, I found it hard to get the big picture in my head even with the wiki page. There are too many details that weren't clear immediately and

Re: IR remote control autorepeat / evdev

2011-05-09 Thread Peter Hutterer
On Sun, May 08, 2011 at 07:38:00AM +0300, Anssi Hannula wrote: Hi all! Most IR/RF remotes differ from normal keyboards in that they don't provide release events. They do provide native repeat events, though. Currently the Linux kernel RC/input subsystems provide a simulated autorepeat for

Re: IR remote control autorepeat / evdev

2011-05-09 Thread Anssi Hannula
On 10.05.2011 07:11, Peter Hutterer wrote: On Sun, May 08, 2011 at 07:38:00AM +0300, Anssi Hannula wrote: Hi all! Most IR/RF remotes differ from normal keyboards in that they don't provide release events. They do provide native repeat events, though. Currently the Linux kernel RC/input

Re: IR remote control autorepeat / evdev

2011-05-09 Thread Peter Hutterer
On Tue, May 10, 2011 at 08:14:30AM +0300, Anssi Hannula wrote: On 10.05.2011 07:11, Peter Hutterer wrote: On Sun, May 08, 2011 at 07:38:00AM +0300, Anssi Hannula wrote: Hi all! Most IR/RF remotes differ from normal keyboards in that they don't provide release events. They do provide

[PATCH:twm] Remove unused fallback implementation of putenv()

2011-05-09 Thread Alan Coopersmith
NOPUTENV was never defined in a modular build, probably because putenv() is a standard function in Unix98 / SUSv2. Signed-off-by: Alan Coopersmith alan.coopersm...@oracle.com --- src/util.c | 66 1 files changed, 0 insertions(+), 66