Re: [Mesa-dev] The current status of the gallium vmwgfx driver

2011-10-02 Thread dj_palindrome
Jakob: That you for your very invaluable advice, which worked flawlessly for me until xorg-vmwgfx recently [29-30 September 2011] vanished from git: *"xorg/vmwgfx: Kill this target. It's not used anymore: *This fixes a build error introduced with commit "winsys/svga: Update to vmwgfx kernel

[Mesa-dev] 7.11 cherry-picks

2011-10-02 Thread Marek Olšák
Hi everyone, In case you wondered what's happening in the 7.11 branch... I noticed that cherry-picking bug fixes stopped soon after 7.11 was released. I went ahead and cherry-picked those commits which were marked as candidates for stable and those which weren't but fixed piglit failures and other

[Mesa-dev] [PATCH 11/12] mesa: Advertise NV_fbo_color_attachments on OpenGL ES 2.0

2011-10-02 Thread Ian Romanick
From: Ian Romanick Signed-off-by: Ian Romanick --- src/mesa/main/extensions.c |1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/src/mesa/main/extensions.c b/src/mesa/main/extensions.c index 151f8df..fc543f9 100644 --- a/src/mesa/main/extensions.c +++ b/src/mesa/main/exten

[Mesa-dev] [PATCH 12/12] mesa: Remove ARB_draw_buffers extension enable flag

2011-10-02 Thread Ian Romanick
From: Ian Romanick All drivers in Mesa have supported this extension for eons. This extension is an optional features in desktop OpenGL (via GL_ARB_draw_buffers) and OpenGL ES 2.x (via GL_NV_draw_buffers). The extension is not usable in OpenGL ES 1.x. There is no glDrawBuffers* entry point in

[Mesa-dev] [PATCH 10/12] mesa: Advertise NV_draw_buffers in OpenGL ES 2.0

2011-10-02 Thread Ian Romanick
From: Ian Romanick Signed-off-by: Ian Romanick --- src/mesa/main/extensions.c |1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/src/mesa/main/extensions.c b/src/mesa/main/extensions.c index af1a3ff..151f8df 100644 --- a/src/mesa/main/extensions.c +++ b/src/mesa/main/exten

[Mesa-dev] [PATCH 09/12] mesa/es: Allow querying GL_DRAW_BUFFERi in OpenGL ES 2.0

2011-10-02 Thread Ian Romanick
From: Ian Romanick Signed-off-by: Ian Romanick --- src/mesa/main/get.c | 34 +- 1 files changed, 17 insertions(+), 17 deletions(-) diff --git a/src/mesa/main/get.c b/src/mesa/main/get.c index 7eb6de0..a869133 100644 --- a/src/mesa/main/get.c +++ b/src/mesa/mai

[Mesa-dev] [PATCH 07/12] mesa/es: Allow other color attachments in OpenGL ES 2.0

2011-10-02 Thread Ian Romanick
From: Ian Romanick Signed-off-by: Ian Romanick --- src/mesa/main/fbobject.c |6 +- 1 files changed, 5 insertions(+), 1 deletions(-) diff --git a/src/mesa/main/fbobject.c b/src/mesa/main/fbobject.c index 6e54c09..1d39806 100644 --- a/src/mesa/main/fbobject.c +++ b/src/mesa/main/fbobject

[Mesa-dev] [PATCH 08/12] mesa/es: Allow querying GL_MAX_COLOR_ATTACHMENTS in OpenGL ES 2.0

2011-10-02 Thread Ian Romanick
From: Ian Romanick Signed-off-by: Ian Romanick --- src/mesa/main/get.c |8 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/mesa/main/get.c b/src/mesa/main/get.c index 0342ff6..7eb6de0 100644 --- a/src/mesa/main/get.c +++ b/src/mesa/main/get.c @@ -689,6 +689,10 @@

[Mesa-dev] [PATCH 04/12] glapi: Move ARB_draw_buffers extension to a separate file

2011-10-02 Thread Ian Romanick
From: Ian Romanick This also moves ATI_draw_buffers. This is to facilitate enabling NV_draw_buffers in OpenGL ES 2.0. Signed-off-by: Ian Romanick --- src/mapi/glapi/gen/ARB_draw_buffers.xml | 124 +++ src/mapi/glapi/gen/gl_API.xml | 119 +---

[Mesa-dev] [PATCH 06/12] mesa/es: Make glDrawBuffersNV available in OpenGL ES 2.0

2011-10-02 Thread Ian Romanick
From: Ian Romanick Signed-off-by: Ian Romanick --- src/mesa/main/APIspec.xml | 13 + 1 files changed, 13 insertions(+), 0 deletions(-) diff --git a/src/mesa/main/APIspec.xml b/src/mesa/main/APIspec.xml index 33029ea..5d5fc03 100644 --- a/src/mesa/main/APIspec.xml +++ b/src/mesa/m

[Mesa-dev] [PATCH 05/12] glapi: Add entry point for NV_draw_buffers

2011-10-02 Thread Ian Romanick
From: Ian Romanick Signed-off-by: Ian Romanick --- src/mapi/glapi/gen/ARB_draw_buffers.xml | 63 +++ src/mapi/glapi/gen/gles_api.py |2 + 2 files changed, 65 insertions(+), 0 deletions(-) diff --git a/src/mapi/glapi/gen/ARB_draw_buffers.xml b/src/map

[Mesa-dev] [PATCH 03/12] mesa/es: Remove redundant renderbuffer target validation

2011-10-02 Thread Ian Romanick
From: Ian Romanick Signed-off-by: Ian Romanick --- src/mesa/main/APIspec.xml | 25 - 1 files changed, 0 insertions(+), 25 deletions(-) diff --git a/src/mesa/main/APIspec.xml b/src/mesa/main/APIspec.xml index cb94a5c..33029ea 100644 --- a/src/mesa/main/APIspec.xml +++

[Mesa-dev] [PATCH 02/12] mesa/es: Validate FBO target enum in Mesa code rather than the ES wrapper

2011-10-02 Thread Ian Romanick
From: Ian Romanick Signed-off-by: Ian Romanick --- src/mesa/main/APIspec.xml | 30 -- src/mesa/main/fbobject.c |6 -- 2 files changed, 4 insertions(+), 32 deletions(-) diff --git a/src/mesa/main/APIspec.xml b/src/mesa/main/APIspec.xml index 2b277a0..cb94a

[Mesa-dev] [PATCH 01/12] mesa/es: Validate FBO attachment enum in Mesa code rather than the ES wrapper

2011-10-02 Thread Ian Romanick
From: Ian Romanick Signed-off-by: Ian Romanick --- src/mesa/main/APIspec.xml | 27 --- src/mesa/main/fbobject.c |7 ++- 2 files changed, 6 insertions(+), 28 deletions(-) diff --git a/src/mesa/main/APIspec.xml b/src/mesa/main/APIspec.xml index 0f82d0a..2b277a0

[Mesa-dev] [PATCH 00/12] Enable MRT rendering in OpenGL ES 2.0

2011-10-02 Thread Ian Romanick
OpenGL ES 2.0 does not natively support any mechanism for MRT. However, GL_NV_fbo_color_attachments and GL_NV_draw_buffers combine to bring existing desktop OpenGL functionality to ES 2.0. This patch series does the trivial work to enable these extensions. The "missing" patch in the series regene

Re: [Mesa-dev] Last chance: FOSDEM2012 speakers due today.

2011-10-02 Thread Daniel Stone
Hi, On 2 October 2011 08:17, Matthieu Herrb wrote: > On Sat, Oct 01, 2011 at 03:14:12PM +0200, Luc Verhaegen wrote: >> If you know that you are coming to FOSDEM, but for some reason think >> that someone else should step up instead, then think again, and reply >> ASAP. > > Luc, > > I hope that so

Re: [Mesa-dev] Last chance: FOSDEM2012 speakers due today.

2011-10-02 Thread Matthieu Herrb
On Sat, Oct 01, 2011 at 03:14:12PM +0200, Luc Verhaegen wrote: > So far we have: > * Martin Peres - Nouveau > * Alon Levy - Xspice > * Chris Wilson - Cairo > * Kai Uwe Behrmann - Colormanagement with compositors. > * Daniel Vetter - DRM futures. > > Only a single speaker is still lacking, and beca

Re: [Mesa-dev] Last chance: FOSDEM2012 speakers due today.

2011-10-02 Thread Arthur Huillet
On Sat, 1 Oct 2011 18:51:39 +0200 Luc Verhaegen wrote: > > A "Mesa/Gallium state of the art and perspectives" would be awesome! > > ... but who will step up to do it? The only way I can help: I hereby pledge to pay beer to any person who steps up to talk about Gallium3D or Wayland at FOSDEM 201

[Mesa-dev] [Bug 30353] building multilib mesa fails or bogus

2011-10-02 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=30353 Michael Meyer changed: What|Removed |Added CC||ad...@chillazz.de -- Configure bugmail:

Re: [Mesa-dev] i965 integer division/modulus v3

2011-10-02 Thread Ian Romanick
On 09/28/2011 05:37 PM, Kenneth Graunke wrote: v.3. "This time for sure!" I've cleaned up the series quite a bit, squashing some patches and splitting others out to try and make it easier to review and avoid breakage. As such, I've dropped most of the R-b's since this series doesn't necessarily