diff options
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_fs.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_fs.cpp b/src/mesa/drivers/dri/i965/brw_fs.cpp index 9057a85e229..cb699d379fa 100644 --- a/src/mesa/drivers/dri/i965/brw_fs.cpp +++ b/src/mesa/drivers/dri/i965/brw_fs.cpp @@ -3743,7 +3743,8 @@ fs_visitor::run_fs() * functions called "main"). */ if (shader) { - if (getenv("INTEL_USE_NIR") != NULL) { + if (getenv("INTEL_USE_NIR") != NULL && !brw->use_rep_send) { + no16("Cannot do 16-wide in NIR yet"); emit_nir_code(); } else { foreach_in_list(ir_instruction, ir, shader->base.ir) { |