Re: [Mesa-dev] [PATCH] i965/fs: Use the correct source for local memory load offsets

2015-12-11 Thread Jordan Justen
Reviewed-by: Jordan Justen On 2015-12-11 12:16:01, Jason Ekstrand wrote: > The offset for loads is in src[0]. This was a copy+paste error in the > nir_intrinsic_load/store refactoring. This commit fixes a segfault in > ES31-CTS.compute_shader.work-group-size. I have no idea how piglit failed >

Re: [Mesa-dev] [PATCH] i965/fs: Use the correct source for local memory load offsets

2015-12-11 Thread Kristian Høgsberg
Jason Ekstrand writes: > The offset for loads is in src[0]. This was a copy+paste error in the > nir_intrinsic_load/store refactoring. This commit fixes a segfault in > ES31-CTS.compute_shader.work-group-size. I have no idea how piglit failed > to catch this... > > Bugzilla: https://bugs.freed

[Mesa-dev] [PATCH] i965/fs: Use the correct source for local memory load offsets

2015-12-11 Thread Jason Ekstrand
The offset for loads is in src[0]. This was a copy+paste error in the nir_intrinsic_load/store refactoring. This commit fixes a segfault in ES31-CTS.compute_shader.work-group-size. I have no idea how piglit failed to catch this... Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=93348 ---