Re: [Mesa-dev] [PATCH 03/10] mesa: add new enum MAX_UNIFORM_LOCATIONS

2014-05-20 Thread Ian Romanick
On 05/19/2014 10:20 PM, Tapani wrote: > On 05/19/2014 08:26 PM, Ian Romanick wrote: >> On 04/09/2014 02:56 AM, Tapani Pälli wrote: >>> Patch adds new implementation dependent value required by the >>> GL_ARB_explicit_uniform_location extension. Default value for user >>> assignable locations is cal

Re: [Mesa-dev] [PATCH 03/10] mesa: add new enum MAX_UNIFORM_LOCATIONS

2014-05-19 Thread Tapani
On 05/19/2014 08:26 PM, Ian Romanick wrote: On 04/09/2014 02:56 AM, Tapani Pälli wrote: Patch adds new implementation dependent value required by the GL_ARB_explicit_uniform_location extension. Default value for user assignable locations is calculated as sum of MaxUniformComponents for each stag

Re: [Mesa-dev] [PATCH 03/10] mesa: add new enum MAX_UNIFORM_LOCATIONS

2014-05-19 Thread Ian Romanick
On 04/09/2014 02:56 AM, Tapani Pälli wrote: > Patch adds new implementation dependent value required by the > GL_ARB_explicit_uniform_location extension. Default value for user > assignable locations is calculated as sum of MaxUniformComponents > for each stage. > > Signed-off-by: Tapani Pälli >

Re: [Mesa-dev] [PATCH 03/10] mesa: add new enum MAX_UNIFORM_LOCATIONS

2014-04-10 Thread Tapani Pälli
On 04/09/2014 02:17 PM, Petri Latvala wrote: > On 04/09/2014 12:56 PM, Tapani Pälli wrote: >> diff --git a/src/mesa/main/get_hash_params.py >> b/src/mesa/main/get_hash_params.py >> index 06d0bba..5709d42 100644 >> --- a/src/mesa/main/get_hash_params.py >> +++ b/src/mesa/main/get_hash_params.py >>

Re: [Mesa-dev] [PATCH 03/10] mesa: add new enum MAX_UNIFORM_LOCATIONS

2014-04-09 Thread Petri Latvala
On 04/09/2014 12:56 PM, Tapani Pälli wrote: diff --git a/src/mesa/main/get_hash_params.py b/src/mesa/main/get_hash_params.py index 06d0bba..5709d42 100644 --- a/src/mesa/main/get_hash_params.py +++ b/src/mesa/main/get_hash_params.py @@ -474,6 +474,7 @@ descriptor=[ [ "MAX_LIST_NESTING", "CONS

[Mesa-dev] [PATCH 03/10] mesa: add new enum MAX_UNIFORM_LOCATIONS

2014-04-09 Thread Tapani Pälli
Patch adds new implementation dependent value required by the GL_ARB_explicit_uniform_location extension. Default value for user assignable locations is calculated as sum of MaxUniformComponents for each stage. Signed-off-by: Tapani Pälli --- src/mesa/main/context.c | 10 +-