Re: [Mesa-dev] [PATCH] glsl/standalone: add missing do_mat_op_to_vec() pass

2017-01-19 Thread Rob Clark
On Thu, Jan 19, 2017 at 1:48 PM, Kenneth Graunke wrote: > On Thursday, January 19, 2017 1:16:18 PM PST Rob Clark wrote: >> glsl_to_nir expects matrix ops to be lowered away to vector by the time >> it runs, but standalone wasn't bothering to call this pass. >> >>

Re: [Mesa-dev] [PATCH] glsl/standalone: add missing do_mat_op_to_vec() pass

2017-01-19 Thread Kenneth Graunke
On Thursday, January 19, 2017 1:16:18 PM PST Rob Clark wrote: > glsl_to_nir expects matrix ops to be lowered away to vector by the time > it runs, but standalone wasn't bothering to call this pass. > > Signed-off-by: Rob Clark > --- > src/compiler/glsl/standalone.cpp | 1 +

[Mesa-dev] [PATCH] glsl/standalone: add missing do_mat_op_to_vec() pass

2017-01-19 Thread Rob Clark
glsl_to_nir expects matrix ops to be lowered away to vector by the time it runs, but standalone wasn't bothering to call this pass. Signed-off-by: Rob Clark --- src/compiler/glsl/standalone.cpp | 1 + 1 file changed, 1 insertion(+) diff --git