Re: XSetBackgroundPixmap question

2012-05-21 Thread Adam Jackson
On Sat, 2012-05-19 at 23:00 +0100, Glynn Clements wrote: I've encountered code which uses a background pixmap to implement a persistent screen, and drawing to the pixmap then calling XClearWindow (without calling XSetWindowBackgroundPixmap in between) results in the updated pixmap contents

[PATCH x11proto-fixes (v2)] fixesproto v6: Pointer barrier thresholds

2012-05-21 Thread Christopher James Halse Rogers
v2: Use a GenericEvent for BarrierNotify Add PointerReleased event type Clarify scope of barrier event-id Release multiple barriers in a single ReleasePointer call. --- configure.ac |2 +- fixesproto.txt | 132 +++-

Re: [PATCH xf86-input-evdev] Fix some obvious constness-related compile warnings.

2012-05-21 Thread Peter Hutterer
On Mon, May 21, 2012 at 01:22:33AM +0200, Marcin Slusarz wrote: Signed-off-by: Marcin Slusarz marcin.slus...@gmail.com --- There are many more, but they need fixes to xserver API. this is going to cause some warnings on older servers, but I'll probably drop those instead of hacking around it.

Re: [PATCH] input: fix mouse wheel support for DGA clients

2012-05-21 Thread Peter Hutterer
On Mon, May 21, 2012 at 01:16:40AM +0200, Marcin Slusarz wrote: xf86-input-evdev (since smooth scrolling support was added) can send mouse motion and wheel events in one batch, so we need to handle it properly. Otherwise mouse wheel events which came with motion events are lost and separate

New xf86-video-armsoc DDX driver

2012-05-21 Thread Tom Cooksey
Hi All, For the last few months we (ARM MPD... The Mali guys) have been working on getting X.Org up and running with Mali T6xx (ARM's next-generation GPU IP). The approach is very similar (well identical I think) to how things work on OMAP: We use a DRM driver to manage the display controller via

Re: New xf86-video-armsoc DDX driver

2012-05-21 Thread Dave Airlie
For the last few months we (ARM MPD... The Mali guys) have been working on getting X.Org up and running with Mali T6xx (ARM's next-generation GPU IP). The approach is very similar (well identical I think) to how things work on OMAP: We use a DRM driver to manage the display controller via

Re: lack of reviewers

2012-05-21 Thread Chase Douglas
On 05/20/2012 08:42 AM, Simon Thum wrote: Hi all, I would like to tell another story, perhaps you follow me. I work on a project with a quite sharp gradient of competence in the development team. We do use gerrit and a build server which verifies our patches. The effect of gerrit -

[git pull] new apis and fixes

2012-05-21 Thread Dave Airlie
Hi Keith, Just the first set of reviewed changes, thanks for looking at the newer ones. The following changes since commit ba883a0f3435d5da82a8134e696c4905eea70f23: Merge remote-tracking branch 'jeremyhu/master' (2012-05-17 16:49:19 -0700) are available in the git repository at:

Re: [PATCH 2/2 xorg-gtest] Namespace xorg-gtest header filenames

2012-05-21 Thread Chase Douglas
On 05/20/2012 02:55 PM, Peter Hutterer wrote: On Fri, May 18, 2012 at 01:23:32PM -0700, Chase Douglas wrote: Due to the default automake compilation flags including -I. -I.., it is possible to pick up an xorg-gtest header like device.h instead of a project header. Namespacing the headers

Re: [PATCH 1/2 xorg-gtest] Add comment to Makefile-xorg-gtest.am about compiling with -w

2012-05-21 Thread Chase Douglas
On 05/18/2012 01:23 PM, Chase Douglas wrote: Users of xorg-gtest will not want warnings or failed builds due to issues in gtest or xorg-gtest. Note that the internal build of the xorg-gtest example does not use the -w flag when building examples, so we will still see warnings when

[PATCH] Remove NO_LIBCWRAPPER define

2012-05-21 Thread Tomas Carnecky
I'll just refer to 1faba79 (Death to libcwrapper., 2007-12-03). Signed-off-by: Tomas Carnecky tomas.carne...@gmail.com --- configure.ac |2 -- 1 file changed, 2 deletions(-) diff --git a/configure.ac b/configure.ac index 97ceab1..d3881e4 100644 --- a/configure.ac +++ b/configure.ac @@

[PULL: xserver master] SPARC build fix, documentation fixes

2012-05-21 Thread Alan Coopersmith
The following changes since commit ba883a0f3435d5da82a8134e696c4905eea70f23: Merge remote-tracking branch 'jeremyhu/master' (2012-05-17 16:49:19 -0700) are available in the git repository at: git://people.freedesktop.org/~alanc/xserver.git master for you to fetch changes up to

Non-recursive make

2012-05-21 Thread Tomas Carnecky
Many years ago I wrote a small patch to generate protocol bindings from XCB. Initially only for DPMS, it worked quite well. I've been running my xserver with that patch since then. A few weeks ago I decided to port another extension and that where the trouble started. I've run into big problems

[PULL: xserver] dri2: Add DRI2GetParam request

2012-05-21 Thread Chad Versace
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 The following changes since commit ba883a0f3435d5da82a8134e696c4905eea70f23: Merge remote-tracking branch 'jeremyhu/master' (2012-05-17 16:49:19 -0700) are available in the git repository at:

[PATCH] ephyrGLXQueryServerString: Send padded copy of server_string to client

2012-05-21 Thread Alan Coopersmith
ephyrGLXQueryServerString() carefully allocated a buffer padded to the word-aligned string length for sending to the client, copied the string to it, and then forgot to use it, potentially reading a few bytes of garbage past the end of the server_string buffer. Signed-off-by: Alan Coopersmith

[PATCH] Fix statement not reached warning in _DMXXineramaActive

2012-05-21 Thread Alan Coopersmith
Signed-off-by: Alan Coopersmith alan.coopersm...@oracle.com --- hw/dmx/dmx.c |3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/hw/dmx/dmx.c b/hw/dmx/dmx.c index 5c59d05..5ea133e 100644 --- a/hw/dmx/dmx.c +++ b/hw/dmx/dmx.c @@ -74,8 +74,9 @@ _DMXXineramaActive(void) {

[PATCH] Actually send the reply in SProcDRI2Connect()

2012-05-21 Thread Alan Coopersmith
No point faking up a reply for remote clients if we never send it to them. Signed-off-by: Alan Coopersmith alan.coopersm...@oracle.com --- hw/xfree86/dri2/dri2ext.c |2 ++ 1 file changed, 2 insertions(+) diff --git a/hw/xfree86/dri2/dri2ext.c b/hw/xfree86/dri2/dri2ext.c index