Re: [Mesa-dev] [PATCH] glsl: Disallow unsized array of atomic_uint

2017-09-12 Thread Iago Toral
On Tue, 2017-09-12 at 00:03 -0700, Kenneth Graunke wrote: > On Monday, September 11, 2017 11:15:05 PM PDT Iago Toral Quiroga > wrote: > > This was a bugfix to the spec addressed in OpenGL 4.5 and there is > > a CTS test to check this. > > > > Fixes: > > KHR-GL45.shader_atomic_counters.negative-uns

Re: [Mesa-dev] [PATCH] glsl: Disallow unsized array of atomic_uint

2017-09-12 Thread Kenneth Graunke
On Monday, September 11, 2017 11:15:05 PM PDT Iago Toral Quiroga wrote: > This was a bugfix to the spec addressed in OpenGL 4.5 and there is > a CTS test to check this. > > Fixes: > KHR-GL45.shader_atomic_counters.negative-unsized-array > --- > src/compiler/glsl/ast_to_hir.cpp | 11 +++ >

[Mesa-dev] [PATCH] glsl: Disallow unsized array of atomic_uint

2017-09-11 Thread Iago Toral Quiroga
This was a bugfix to the spec addressed in OpenGL 4.5 and there is a CTS test to check this. Fixes: KHR-GL45.shader_atomic_counters.negative-unsized-array --- src/compiler/glsl/ast_to_hir.cpp | 11 +++ 1 file changed, 11 insertions(+) diff --git a/src/compiler/glsl/ast_to_hir.cpp b/src/c