Re: [Mesa-dev] [PATCH v2 12/82] glsl: shader buffer variables cannot have initializers

2015-06-09 Thread Samuel Iglesias Gonsálvez
On 09/06/15 20:29, Jordan Justen wrote: > On 2015-06-03 00:01:02, Iago Toral Quiroga wrote: >> From: Samuel Iglesias Gonsalvez >> >> Section 4.3.7 "Buffer Variables" of the GLSL 4.30 spec: >> >> "Buffer variables cannot have initializers." >> >> Signed-off-by: Samuel Iglesias Gonsalvez >> -

Re: [Mesa-dev] [PATCH v2 12/82] glsl: shader buffer variables cannot have initializers

2015-06-09 Thread Jordan Justen
On 2015-06-03 00:01:02, Iago Toral Quiroga wrote: > From: Samuel Iglesias Gonsalvez > > Section 4.3.7 "Buffer Variables" of the GLSL 4.30 spec: > > "Buffer variables cannot have initializers." > > Signed-off-by: Samuel Iglesias Gonsalvez > --- > src/glsl/ast_to_hir.cpp | 9 + > 1

[Mesa-dev] [PATCH v2 12/82] glsl: shader buffer variables cannot have initializers

2015-06-03 Thread Iago Toral Quiroga
From: Samuel Iglesias Gonsalvez Section 4.3.7 "Buffer Variables" of the GLSL 4.30 spec: "Buffer variables cannot have initializers." Signed-off-by: Samuel Iglesias Gonsalvez --- src/glsl/ast_to_hir.cpp | 9 + 1 file changed, 9 insertions(+) diff --git a/src/glsl/ast_to_hir.cpp b/