Re: [Mesa-dev] [PATCH 2/5] mesa: Implement ARB_clip_control.

2014-10-24 Thread Matt Turner
On Wed, Oct 22, 2014 at 10:22 AM, Ilia Mirkin wrote: >> diff --git a/src/mesa/main/get_hash_params.py >> b/src/mesa/main/get_hash_params.py >> index da35684..ed1f390 100644 >> --- a/src/mesa/main/get_hash_params.py >> +++ b/src/mesa/main/get_hash_params.py >> @@ -414,6 +414,8 @@ descriptor=[ >>

Re: [Mesa-dev] [PATCH 2/5] mesa: Implement ARB_clip_control.

2014-10-24 Thread Ilia Mirkin
On Wed, Oct 22, 2014 at 1:13 PM, wrote: > From: Mathias Fröhlich > > Implement the mesa parts of ARB_clip_control. > So far no driver enables this. > > Signed-off-by: Mathias Froehlich > --- > src/mapi/glapi/gen/ARB_clip_control.xml | 25 +++ > src/mapi/glapi/gen/gl_API.xml |

Re: [Mesa-dev] [PATCH 2/5] mesa: Implement ARB_clip_control.

2014-10-24 Thread Mathias Fröhlich
Hi, On Friday, October 24, 2014 09:00:02 Brian Paul wrote: > Sorry to be pedantic, but I think some better names and comments would > be helpful. How about this: > > /** GL_ARB_clip_control */ > GLenum ClipOrigin; /**< GL_LOWER_LEFT or GL_UPPER_LEFT */ > GLenum ClipDepthMode;

Re: [Mesa-dev] [PATCH 2/5] mesa: Implement ARB_clip_control.

2014-10-24 Thread Brian Paul
On 10/24/2014 01:26 AM, mathias.froehl...@gmx.net wrote: From: Mathias Fröhlich Implement the mesa parts of ARB_clip_control. So far no driver enables this. v3: Restrict getting clip control state to the availability of ARB_clip_control. Move to transformation state. Handle clip control state

[Mesa-dev] [PATCH 2/5] mesa: Implement ARB_clip_control.

2014-10-24 Thread Mathias . Froehlich
From: Mathias Fröhlich Implement the mesa parts of ARB_clip_control. So far no driver enables this. v3: Restrict getting clip control state to the availability of ARB_clip_control. Move to transformation state. Handle clip control state with the GL_TRANSFORM_BIT. Move _FrontBit update into state

Re: [Mesa-dev] [PATCH 2/5] mesa: Implement ARB_clip_control.

2014-10-22 Thread Brian Paul
On 10/22/2014 11:13 AM, mathias.froehl...@gmx.net wrote: From: Mathias Fröhlich Implement the mesa parts of ARB_clip_control. So far no driver enables this. Signed-off-by: Mathias Froehlich --- src/mapi/glapi/gen/ARB_clip_control.xml | 25 +++ src/mapi/glapi/gen/gl_API.xml

[Mesa-dev] [PATCH 2/5] mesa: Implement ARB_clip_control.

2014-10-22 Thread Mathias . Froehlich
From: Mathias Fröhlich Implement the mesa parts of ARB_clip_control. So far no driver enables this. Signed-off-by: Mathias Froehlich --- src/mapi/glapi/gen/ARB_clip_control.xml | 25 +++ src/mapi/glapi/gen/gl_API.xml | 4 +- src/mesa/main/dlist.c | 26 +