diff options
author | Kenneth Graunke <[email protected]> | 2015-01-16 01:40:33 -0800 |
---|---|---|
committer | Kenneth Graunke <[email protected]> | 2015-01-19 13:13:50 -0800 |
commit | a5ca86a9833d6fd57ee609d8d1e630dc66ebd371 (patch) | |
tree | 6d564ce0a20cf6ceb493f0cb9dfe4ccfacbb6223 /src | |
parent | 45123ee8186cff6bb819b9c9e44d6d5a1bb41923 (diff) |
i965/nir: Enable SIMD16 support in the NIR FS backend.
With the previous commits in place, it just works.
Signed-off-by: Kenneth Graunke <[email protected]>
Reviewed-by: Jason Ekstrand <[email protected]>
Reviewed-by: Matt Turner <[email protected]>
Diffstat (limited to 'src')
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_fs.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
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) { |