[Mesa-dev] [PATCH 4/4] i965/nir: Enable SIMD16 support in the NIR FS backend.

2015-01-16 Thread Kenneth Graunke
With the previous commits in place, it just works. Signed-off-by: Kenneth Graunke kenn...@whitecape.org --- src/mesa/drivers/dri/i965/brw_fs.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/mesa/drivers/dri/i965/brw_fs.cpp b/src/mesa/drivers/dri/i965/brw_fs.cpp

Re: [Mesa-dev] [PATCH 4/4] i965/nir: Enable SIMD16 support in the NIR FS backend.

2015-01-16 Thread Jason Ekstrand
Two stupid questions: 1) Did you gun piglit with INTEL_USE_NIR and did everything check out OK? 2) Did you grep fs_nir.cpp for virtual_grf_alloc and reg_offset to make sure you didn't miss anything? If the answer to both of the above is yes, this series is Reviewed-by: Jason Ekstrand

Re: [Mesa-dev] [PATCH 4/4] i965/nir: Enable SIMD16 support in the NIR FS backend.

2015-01-16 Thread Kenneth Graunke
On Friday, January 16, 2015 02:43:12 PM Jason Ekstrand wrote: Two stupid questions: 1) Did you gun piglit with INTEL_USE_NIR and did everything check out OK? Yes, I did before/after Piglit runs on Haswell GT3e with and without INTEL_USE_NIR (to make sure both paths keep working). 2) Did you