From: Kenneth Graunke Date: Fri, 16 Jan 2015 09:40:33 +0000 (-0800) Subject: i965/nir: Enable SIMD16 support in the NIR FS backend. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=a5ca86a9833d6fd57ee609d8d1e630dc66ebd371;p=mesa.git i965/nir: Enable SIMD16 support in the NIR FS backend. With the previous commits in place, it just works. Signed-off-by: Kenneth Graunke Reviewed-by: Jason Ekstrand Reviewed-by: Matt Turner --- diff --git a/src/mesa/drivers/dri/i965/brw_fs.cpp b/src/mesa/drivers/dri/i965/brw_fs.cpp index 6490788118b..786e4e02d15 100644 --- a/src/mesa/drivers/dri/i965/brw_fs.cpp +++ b/src/mesa/drivers/dri/i965/brw_fs.cpp @@ -3753,8 +3753,7 @@ fs_visitor::run_fs() * functions called "main"). */ if (shader) { - if (getenv("INTEL_USE_NIR") != NULL && !brw->use_rep_send) { - no16("Cannot do 16-wide in NIR yet"); + if (getenv("INTEL_USE_NIR") != NULL) { emit_nir_code(); } else { foreach_in_list(ir_instruction, ir, shader->base.ir) {