Re: [Mesa-dev] [PATCH] mesa: fix ARRAY_SIZE query for GetProgramResourceiv

2015-09-29 Thread Tapani Pälli
On 09/29/2015 01:42 PM, Emil Velikov wrote: Hi guys, On 29 September 2015 at 10:30, Martin Peres wrote: On 28/09/15 13:51, Tapani Pälli wrote: Patch also refactors name length queries which were using array size in computation, this has to be done in same time to avoid regression in arb_pr

Re: [Mesa-dev] [PATCH] mesa: fix ARRAY_SIZE query for GetProgramResourceiv

2015-09-29 Thread Emil Velikov
Hi guys, On 29 September 2015 at 10:30, Martin Peres wrote: > On 28/09/15 13:51, Tapani Pälli wrote: >> >> Patch also refactors name length queries which were using array size >> in computation, this has to be done in same time to avoid regression in >> arb_program_interface_query-resource-query

Re: [Mesa-dev] [PATCH] mesa: fix ARRAY_SIZE query for GetProgramResourceiv

2015-09-29 Thread Martin Peres
On 28/09/15 13:51, Tapani Pälli wrote: Patch also refactors name length queries which were using array size in computation, this has to be done in same time to avoid regression in arb_program_interface_query-resource-query Piglit test. Fixes rest of the failures with ES31-CTS.program_inter

[Mesa-dev] [PATCH] mesa: fix ARRAY_SIZE query for GetProgramResourceiv

2015-09-28 Thread Tapani Pälli
Patch also refactors name length queries which were using array size in computation, this has to be done in same time to avoid regression in arb_program_interface_query-resource-query Piglit test. Fixes rest of the failures with ES31-CTS.program_interface_query.no-locations v2: make additional