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

[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 ad...@chillazz.de changed: What|Removed |Added CC||ad...@chillazz.de --

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 l...@skynet.be 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

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 because I

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

2011-10-02 Thread Daniel Stone
Hi, On 2 October 2011 08:17, Matthieu Herrb matthieu.he...@laas.fr 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

[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

[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 ian.d.roman...@intel.com Signed-off-by: Ian Romanick ian.d.roman...@intel.com --- 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

[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 ian.d.roman...@intel.com Signed-off-by: Ian Romanick ian.d.roman...@intel.com --- 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

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

2011-10-02 Thread Ian Romanick
From: Ian Romanick ian.d.roman...@intel.com Signed-off-by: Ian Romanick ian.d.roman...@intel.com --- 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

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

2011-10-02 Thread Ian Romanick
From: Ian Romanick ian.d.roman...@intel.com Signed-off-by: Ian Romanick ian.d.roman...@intel.com --- 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

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

2011-10-02 Thread Ian Romanick
From: Ian Romanick ian.d.roman...@intel.com Signed-off-by: Ian Romanick ian.d.roman...@intel.com --- 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

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

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

[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 ian.d.roman...@intel.com Signed-off-by: Ian Romanick ian.d.roman...@intel.com --- 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 ---

[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 ian.d.roman...@intel.com Signed-off-by: Ian Romanick ian.d.roman...@intel.com --- 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 ---

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

2011-10-02 Thread Ian Romanick
From: Ian Romanick ian.d.roman...@intel.com Signed-off-by: Ian Romanick ian.d.roman...@intel.com --- 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 ---

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

2011-10-02 Thread Ian Romanick
From: Ian Romanick ian.d.roman...@intel.com 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

[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 ian.d.roman...@intel.com Signed-off-by: Ian Romanick ian.d.roman...@intel.com --- 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 ---