[Mesa-dev] [Bug 47205] documentation invalid, unclosed A tag

2012-03-11 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=47205 Kenneth Graunke changed: What|Removed |Added Status|NEW |RESOLVED Resolution|

Re: [Mesa-dev] [PATCH] i915: fallback when point sprite is enabled while handling varying inputs

2012-03-11 Thread Yuanhan Liu
On Fri, Mar 09, 2012 at 10:35:33AM -0800, Eric Anholt wrote: > On Thu, 8 Mar 2012 19:21:23 +0800, Yuanhan Liu > wrote: > > From ddd1a9d8f0d82c2f5fcb78a471608a005a6a077c Mon Sep 17 00:00:00 2001 > > From: Yuanhan Liu > > Date: Thu, 8 Mar 2012 18:48:54 +0800 > > Subject: [PATCH] i915: set SPRITE_P

[Mesa-dev] [PATCH 9/9] mesa: renumber remaining DD_ constants

2012-03-11 Thread Brian Paul
--- src/mesa/main/mtypes.h | 20 ++-- 1 files changed, 10 insertions(+), 10 deletions(-) diff --git a/src/mesa/main/mtypes.h b/src/mesa/main/mtypes.h index 0575af6..f76096a 100644 --- a/src/mesa/main/mtypes.h +++ b/src/mesa/main/mtypes.h @@ -3071,16 +3071,16 @@ struct gl_matrix_

[Mesa-dev] [PATCH 8/9] mesa: remove unused DD_TRI_CULL_FRONT_BACK

2012-03-11 Thread Brian Paul
--- src/mesa/main/debug.c |5 ++--- src/mesa/main/mtypes.h |1 - src/mesa/main/state.c | 10 ++ 3 files changed, 4 insertions(+), 12 deletions(-) diff --git a/src/mesa/main/debug.c b/src/mesa/main/debug.c index facba91..f7b1f71 100644 --- a/src/mesa/main/debug.c +++ b/src/mesa

[Mesa-dev] [PATCH 7/9] mesa: remove unused DD_FLATSHADE

2012-03-11 Thread Brian Paul
--- src/mesa/main/debug.c |3 +-- src/mesa/main/light.c |4 src/mesa/main/mtypes.h |1 - src/mesa/main/state.c |2 -- 4 files changed, 1 insertions(+), 9 deletions(-) diff --git a/src/mesa/main/debug.c b/src/mesa/main/debug.c index cfa2f93..facba91 100644 --- a/src/mesa/ma

[Mesa-dev] [PATCH 6/9] mesa: remove unused DD_TRI_TWOSTENCIL

2012-03-11 Thread Brian Paul
--- src/mesa/main/debug.c |3 +-- src/mesa/main/enable.c |2 -- src/mesa/main/mtypes.h |1 - src/mesa/main/state.c |6 -- 4 files changed, 1 insertions(+), 11 deletions(-) diff --git a/src/mesa/main/debug.c b/src/mesa/main/debug.c index 71d7f1a..cfa2f93 100644 --- a/src/mesa

[Mesa-dev] [PATCH 5/9] mesa: remove _DD_NEW_x flags

2012-03-11 Thread Brian Paul
They're no longer used anywhere. --- src/mesa/main/mtypes.h | 21 - 1 files changed, 0 insertions(+), 21 deletions(-) diff --git a/src/mesa/main/mtypes.h b/src/mesa/main/mtypes.h index 9b53da4..b04a829 100644 --- a/src/mesa/main/mtypes.h +++ b/src/mesa/main/mtypes.h @@ -3088

[Mesa-dev] [PATCH 4/9] tnl: stop using _DD_NEW_x flags

2012-03-11 Thread Brian Paul
--- src/mesa/tnl/t_vertex.c |3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/src/mesa/tnl/t_vertex.c b/src/mesa/tnl/t_vertex.c index 6582949..580f95d 100644 --- a/src/mesa/tnl/t_vertex.c +++ b/src/mesa/tnl/t_vertex.c @@ -269,7 +269,8 @@ void *_tnl_get_vertex( struct gl_co

[Mesa-dev] [PATCH 3/9] swrast: s/_DD_NEW_SEPARATE_SPECULAR/_MESA_NEW_SEPARATE_SPECULAR/

2012-03-11 Thread Brian Paul
Another step toward removing the _DD_NEW_x flags --- src/mesa/swrast/s_context.c |6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/mesa/swrast/s_context.c b/src/mesa/swrast/s_context.c index 63350b2..beb9158 100644 --- a/src/mesa/swrast/s_context.c +++ b/src/mesa/sw

[Mesa-dev] [PATCH 2/9] mesa: define _MESA_NEW_SEPARATE_SPECULAR

2012-03-11 Thread Brian Paul
This will replace the soon-to-be-removed _DD_NEW_SEPARATE_SPECULAR flag. Note: there's a similar composite _MESA_NEW_NEED_EYE_COORDS flag set already. --- src/mesa/main/mtypes.h |6 ++ src/mesa/main/state.c |4 ++-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/src/me

[Mesa-dev] [PATCH 1/9] i915: remove occurances of _DD_NEW_x flags

2012-03-11 Thread Brian Paul
Just use the corresponding _NEW_x flags intead. The _DD_NEW_x flags will be removed in a following patch. --- src/mesa/drivers/dri/i915/intel_tris.h | 12 +--- 1 files changed, 5 insertions(+), 7 deletions(-) diff --git a/src/mesa/drivers/dri/i915/intel_tris.h b/src/mesa/drivers/dri/i

[Mesa-dev] [PATCH 7/7] mesa: remove ctx->Driver.ClearColor() hook

2012-03-11 Thread Brian Paul
The driver Clear() function should just grab the clear color out of the context. --- src/mesa/drivers/common/driverfuncs.c |1 - src/mesa/main/clear.c | 30 -- src/mesa/main/dd.h|3 --- 3 files changed, 0 insertions(+), 34 d

[Mesa-dev] [PATCH 6/7] mesa/gdi: remove clear_color() function

2012-03-11 Thread Brian Paul
Setup the clearing color in the clear() function. --- src/mesa/drivers/windows/gdi/wmesa.c | 47 +++--- 1 files changed, 15 insertions(+), 32 deletions(-) diff --git a/src/mesa/drivers/windows/gdi/wmesa.c b/src/mesa/drivers/windows/gdi/wmesa.c index ba11998..93da05f

[Mesa-dev] [PATCH 5/7] xlib: remove clear_color() function

2012-03-11 Thread Brian Paul
Just setup the clearing color in clear_buffers(). --- src/mesa/drivers/x11/xm_dd.c | 36 +++- 1 files changed, 11 insertions(+), 25 deletions(-) diff --git a/src/mesa/drivers/x11/xm_dd.c b/src/mesa/drivers/x11/xm_dd.c index d0bf2f0..7748298 100644 --- a/src/mesa/

[Mesa-dev] [PATCH 4/7] radeon/r200: remove ClearColor driver functions

2012-03-11 Thread Brian Paul
The state.color.clear value was never used anywhere. --- src/mesa/drivers/dri/r200/r200_state.c | 18 -- src/mesa/drivers/dri/r200/r200_state_init.c|2 -- .../drivers/dri/radeon/radeon_common_context.h |1 - src/mesa/drivers/dri/radeon/radeon_state

[Mesa-dev] [PATCH 3/7] mesa: remove ctx->Driver.ClearDepth(), ClearStencil() driver hooks

2012-03-11 Thread Brian Paul
Not used by any drivers. Drivers can easily access the values from the Mesa context at glClear() time. --- src/mesa/drivers/common/driverfuncs.c |2 -- src/mesa/main/clear.c | 16 src/mesa/main/dd.h|4 src/mesa/main/depth.c

[Mesa-dev] [PATCH 2/7] radeon/r200: remove ClearDepth() and ClearStencil() driver hooks

2012-03-11 Thread Brian Paul
The computed stencil.clear and depth.clear values aren't used anywhere. Those fields have been removed too. --- src/mesa/drivers/dri/r200/r200_state.c | 28 src/mesa/drivers/dri/r200/r200_state_init.c| 12 .../drivers/dri/radeon/radeon_common_c

[Mesa-dev] [PATCH 1/7] radeon/r200: remove hyperz/fast clear testing code

2012-03-11 Thread Brian Paul
The flags which were computed were never actually used. --- src/mesa/drivers/dri/r200/r200_ioctl.c | 10 -- src/mesa/drivers/dri/radeon/radeon_ioctl.c | 10 -- 2 files changed, 0 insertions(+), 20 deletions(-) diff --git a/src/mesa/drivers/dri/r200/r200_ioctl.c b/src/mesa

[Mesa-dev] [Bug 46596] Set close on exec flag FD_CLOEXEC

2012-03-11 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=46596 David Fries changed: What|Removed |Added Status|NEW |RESOLVED Resolution|

Re: [Mesa-dev] [ANNOUNCE] apitrace 3.0

2012-03-11 Thread José Fonseca
On Sun, Mar 11, 2012 at 6:59 PM, Dave Airlie wrote: > (resend to include list, I only sent it to Jose by accident). > > On Fri, Mar 9, 2012 at 8:22 PM, José Fonseca wrote: >> There are several new features in apitrace that deserve an announcement: > > I had an idea for a "feature" the other day b

Re: [Mesa-dev] [ANNOUNCE] apitrace 3.0

2012-03-11 Thread Dave Airlie
(resend to include list, I only sent it to Jose by accident). On Fri, Mar 9, 2012 at 8:22 PM, José Fonseca wrote: > There are several new features in apitrace that deserve an announcement: I had an idea for a "feature" the other day but no idea how sane or useful it would actually be. I thought

Re: [Mesa-dev] [PATCH 1/4] include: Fix glDebugMessageCallbackARB's prototype.

2012-03-11 Thread Dave Airlie
On Sun, Mar 11, 2012 at 10:47 AM, wrote: > From: José Fonseca > > Seems to be a bug in Khronos headers, as > > http://www.opengl.org/registry/specs/ARB/debug_output.txt states userParam > is not a const pointer. I had a few people giving out on irc about the build breaking so I've pushed these

[Mesa-dev] [Bug 47205] New: documentation invalid, unclosed A tag

2012-03-11 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=47205 Bug #: 47205 Summary: documentation invalid, unclosed A tag Classification: Unclassified Product: Mesa Version: 7.11 Platform: x86-64 (AMD64) URL: file:///usr/share/doc/pac

Re: [Mesa-dev] [PATCH 00/13] ARB_debug_output

2012-03-11 Thread Mike Lothian
Fantastic - here's hoping they get applied soon On 11 March 2012 11:19, Jose Fonseca wrote: > I saw the same w/ MinGW. I think my latest patch series should fix it. > > Jose > > - Original Message - >> On 15 February 2012 13:28, Marek Olšák wrote: >> > Hi everyone, >> > >> > this series

Re: [Mesa-dev] [PATCH 00/13] ARB_debug_output

2012-03-11 Thread Jose Fonseca
I saw the same w/ MinGW. I think my latest patch series should fix it. Jose - Original Message - > On 15 February 2012 13:28, Marek Olšák wrote: > > Hi everyone, > > > > this series adds the ARB_debug_output extension. It implements the > > minimum feature set required by the spec, which

Re: [Mesa-dev] [PATCH 00/13] ARB_debug_output

2012-03-11 Thread Mike Lothian
On 15 February 2012 13:28, Marek Olšák wrote: > Hi everyone, > > this series adds the ARB_debug_output extension. It implements the minimum > feature set required by the spec, which is GL API error logging. > > I've added a new piglit test for this: arb_debug_output-api_error. I'd like > to push

[Mesa-dev] [PATCH 4/4] mapi/glapi: Fix glDebugMessageCallbackARB arg type to GLDEBUGPROCARB

2012-03-11 Thread jose . r . fonseca
From: José Fonseca Necessary to prevent type mismatches on MinGW. --- src/mapi/glapi/gen/ARB_debug_output.xml |2 +- src/mapi/glapi/gen/gl_API.xml |2 ++ src/mapi/glapi/glapi_mapi_tmp.h |6 +++--- src/mapi/glapi/glapitable.h |2 +- src/mapi/glapi/gla

[Mesa-dev] [PATCH 3/4] glapi/gen: Add support for pointer types.

2012-03-11 Thread jose . r . fonseca
From: José Fonseca --- src/mapi/glapi/gen/gl_API.dtd |1 + src/mapi/glapi/gen/gl_XML.py |1 + src/mapi/glapi/gen/typeexpr.py |6 +++--- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/src/mapi/glapi/gen/gl_API.dtd b/src/mapi/glapi/gen/gl_API.dtd index 30c646c..149a4

[Mesa-dev] [PATCH 2/4] mesa: Prevent collision of ERROR define on Windows.

2012-03-11 Thread jose . r . fonseca
From: José Fonseca This issue might recur on other OSes. If so then it might be better to remove the C-preprocessor magic, and use fully qualified defines instead. --- src/mesa/main/errors.c |3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/src/mesa/main/errors.c b/src/m

[Mesa-dev] [PATCH 1/4] include: Fix glDebugMessageCallbackARB's prototype.

2012-03-11 Thread jose . r . fonseca
From: José Fonseca Seems to be a bug in Khronos headers, as http://www.opengl.org/registry/specs/ARB/debug_output.txt states userParam is not a const pointer. --- include/GL/glext.h |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/include/GL/glext.h b/include/GL/glext