Re: [Mesa-dev] [PATCH 6/7] glsl: Allow non-constant expression initializers of const-qualified vars.

2013-07-07 Thread Kenneth Graunke
On 05/24/2013 06:28 PM, Matt Turner wrote: Required by ARB_shading_language_420pack. --- src/glsl/ast_to_hir.cpp | 30 +++--- 1 file changed, 19 insertions(+), 11 deletions(-) diff --git a/src/glsl/ast_to_hir.cpp b/src/glsl/ast_to_hir.cpp index 6e689b4..6b56e87 100644

Re: [Mesa-dev] [PATCH 6/7] glsl: Allow non-constant expression initializers of const-qualified vars.

2013-07-05 Thread Matt Turner
On Sat, Jun 29, 2013 at 7:42 PM, Matt Turner wrote: > Ping. > > Check out the piglit tests: >const-var-non-constant-expr.shader_test >global-const-var-non-const-expr.frag > > Those confirm that this change is correct. I'm completely satisfied with the change. I'll push it on Monday. _

Re: [Mesa-dev] [PATCH 6/7] glsl: Allow non-constant expression initializers of const-qualified vars.

2013-06-29 Thread Matt Turner
On Fri, May 24, 2013 at 6:28 PM, Matt Turner wrote: > Required by ARB_shading_language_420pack. > --- > src/glsl/ast_to_hir.cpp | 30 +++--- > 1 file changed, 19 insertions(+), 11 deletions(-) > > diff --git a/src/glsl/ast_to_hir.cpp b/src/glsl/ast_to_hir.cpp > index 6e689

[Mesa-dev] [PATCH 6/7] glsl: Allow non-constant expression initializers of const-qualified vars.

2013-05-24 Thread Matt Turner
Required by ARB_shading_language_420pack. --- src/glsl/ast_to_hir.cpp | 30 +++--- 1 file changed, 19 insertions(+), 11 deletions(-) diff --git a/src/glsl/ast_to_hir.cpp b/src/glsl/ast_to_hir.cpp index 6e689b4..6b56e87 100644 --- a/src/glsl/ast_to_hir.cpp +++ b/src/glsl/as