[PATCH 0/7] Touch patches that don't do anything much

2013-02-28 Thread Peter Hutterer
Neither of these actually change anything much, they're just general cleanup so I'd like to get them out of the way, before the other, much more nasty ones. Reviews appreciated. Cheers, Peter ___ xorg-devel@lists.x.org: X.Org development Archives: h

Re: Initial DRI3000 protocol specs available

2013-02-28 Thread Keith Packard
Owen Taylor writes: > Sorry for joining the discussion late here. I went through the specs and > discussion and have various comments and questions. Thanks for reviewing stuff, of course. You're not late at all :-) > * It would be great if we could figure out a plan to get to the > point wher

Re: [PATCH 0/5] Various GLX fixes

2013-02-28 Thread Ian Romanick
On 02/25/2013 02:04 PM, Adam Jackson wrote: GLX's GetDrawableAttributes request works by simply dumping all the attributes the server knows about to the client, and filtering on the client side. Sadly we only ever bothered to implement enough of that to make texture_from_pixmap work. This serie

Re: [PATCH xrandr] Print spaces between XA_ATOM property values

2013-02-28 Thread Peter Hutterer
On Thu, Feb 28, 2013 at 12:12:01PM -0800, Aaron Plattner wrote: > Commit b26fd532b3dab222956ea27eef4e41345978b5b2 redid how xrandr prints > properties. It neglected to put spaces between the values of XA_ATOM > properties, so they all run together. For example, > > audio: auto > supp

Re: [PATCH 4/5] glx: Implement GLX_PRESERVED_CONTENTS drawable attribute

2013-02-28 Thread Ian Romanick
On 02/25/2013 02:04 PM, Adam Jackson wrote: We back pixmaps with pbuffers so they're never actually clobbered, so we're really just recording the value passed in at create time so that you get the same thing when you query. Is that actually right? There are some cases where they query returns

[PATCH xrandr] Print spaces between XA_ATOM property values

2013-02-28 Thread Aaron Plattner
Commit b26fd532b3dab222956ea27eef4e41345978b5b2 redid how xrandr prints properties. It neglected to put spaces between the values of XA_ATOM properties, so they all run together. For example, audio: auto supported: force-dvioffautoon Fix this by putting a space after each atom name.

Re: [PATCH util/modular 2/7] xorg.modules: mesa is now autotooled

2013-02-28 Thread Matt Turner
On Thu, Feb 28, 2013 at 7:41 AM, Dan Nicholson wrote: > Are all the old Makefiles (which require > makedepend) removed at this point? Yes, except for apple-glx. ___ xorg-devel@lists.x.org: X.Org development Archives: http://lists.x.org/archives/xorg-dev

Re: [PATCH util/modular 0/7] Various updates to xorg.modules

2013-02-28 Thread Dan Nicholson
On Feb 28, 2013 7:05 AM, "Jon TURNEY" wrote: > > Jon TURNEY (7): > xorg.modules: Add libXaw3d so it gets tinderboxed > xorg.modules: mesa is now autotooled > xorg.modules: Add mesa-glut so it gets tinderboxed > xorg.modules: Add mesa-glu so it gets tinderboxed > xorg.modules: Add mesa me

Re: [PATCH util/modular 6/7] xorg.modules: Add split xcb util repositories so they get tinderboxed

2013-02-28 Thread Dan Nicholson
On Feb 28, 2013 7:10 AM, "Jon TURNEY" wrote: > > Add split xcb util repositories and a xcb metamodule > > Signed-off-by: Jon TURNEY > --- > xorg.modules | 32 > 1 files changed, 32 insertions(+), 0 deletions(-) > > diff --git a/xorg.modules b/xorg.modules > ind

Re: [PATCH util/modular 2/7] xorg.modules: mesa is now autotooled

2013-02-28 Thread Dan Nicholson
On Feb 28, 2013 7:08 AM, "Jon TURNEY" wrote: > > mesa is now sufficently autotooled that: > - it doesn't need makedepend > - non-srcdir builds work > - it doesn't need skip-autogen > - the check target exists > > Signed-off-by: Jon TURNEY > > libGL doesn't need makedepend I haven't checked on th

[PATCH util/modular 7/7] xorg.modules: Add xf86-video-nested so it gets tinderboxed

2013-02-28 Thread Jon TURNEY
Signed-off-by: Jon TURNEY --- xorg.modules |9 + 1 files changed, 9 insertions(+), 0 deletions(-) diff --git a/xorg.modules b/xorg.modules index 309fa74..eba4d6a 100644 --- a/xorg.modules +++ b/xorg.modules @@ -1883,6 +1883,14 @@ + + + + + + +

[PATCH util/modular 6/7] xorg.modules: Add split xcb util repositories so they get tinderboxed

2013-02-28 Thread Jon TURNEY
Add split xcb util repositories and a xcb metamodule Signed-off-by: Jon TURNEY --- xorg.modules | 32 1 files changed, 32 insertions(+), 0 deletions(-) diff --git a/xorg.modules b/xorg.modules index ada28b1..309fa74 100644 --- a/xorg.modules +++ b/xorg.modules

[PATCH util/modular 5/7] xorg.modules: Add mesa metamodule

2013-02-28 Thread Jon TURNEY
Signed-off-by: Jon TURNEY --- xorg.modules | 32 ++-- 1 files changed, 22 insertions(+), 10 deletions(-) diff --git a/xorg.modules b/xorg.modules index 824c719..ada28b1 100644 --- a/xorg.modules +++ b/xorg.modules @@ -42,16 +42,6 @@ - - - - -

[PATCH util/modular 4/7] xorg.modules: Add mesa-glu so it gets tinderboxed

2013-02-28 Thread Jon TURNEY
Signed-off-by: Jon TURNEY --- xorg.modules | 10 +- 1 files changed, 9 insertions(+), 1 deletions(-) diff --git a/xorg.modules b/xorg.modules index fde18df..824c719 100644 --- a/xorg.modules +++ b/xorg.modules @@ -64,7 +64,7 @@ - + @@ -88,6 +88,7 @@

[PATCH util/modular 3/7] xorg.modules: Add mesa-glut so it gets tinderboxed

2013-02-28 Thread Jon TURNEY
Signed-off-by: Jon TURNEY --- xorg.modules | 11 +++ 1 files changed, 11 insertions(+), 0 deletions(-) diff --git a/xorg.modules b/xorg.modules index 14fd4c8..fde18df 100644 --- a/xorg.modules +++ b/xorg.modules @@ -87,6 +87,17 @@ checkoutdir="mesa/demos"/> +

[PATCH util/modular 2/7] xorg.modules: mesa is now autotooled

2013-02-28 Thread Jon TURNEY
mesa is now sufficently autotooled that: - it doesn't need makedepend - non-srcdir builds work - it doesn't need skip-autogen - the check target exists Signed-off-by: Jon TURNEY libGL doesn't need makedepend --- xorg.modules |4 +--- 1 files changed, 1 insertions(+), 3 deletions(-) diff --

[PATCH util/modular 1/7] xorg.modules: Add libXaw3d so it gets tinderboxed

2013-02-28 Thread Jon TURNEY
Signed-off-by: Jon TURNEY --- xorg.modules | 14 ++ 1 files changed, 14 insertions(+), 0 deletions(-) diff --git a/xorg.modules b/xorg.modules index d9d5cd0..b8fbcaa 100644 --- a/xorg.modules +++ b/xorg.modules @@ -365,6 +365,19 @@ + + + + + +

[PATCH util/modular 0/7] Various updates to xorg.modules

2013-02-28 Thread Jon TURNEY
Jon TURNEY (7): xorg.modules: Add libXaw3d so it gets tinderboxed xorg.modules: mesa is now autotooled xorg.modules: Add mesa-glut so it gets tinderboxed xorg.modules: Add mesa-glu so it gets tinderboxed xorg.modules: Add mesa metamodule xorg.modules: Add split xcb util repositories so

Re: RFC: xserver commit process changes

2013-02-28 Thread Keith Packard
Peter Hutterer writes: > This has worked reasonably well since we started for server 1.8. If > nothing else, it has made git master a lot more reliable. However, Keith > is the bottleneck to get anything into master. The delay to get a pull > request merged has been quite random, depending on