aboutsummaryrefslogtreecommitdiffstats
path: root/src/intel
diff options
context:
space:
mode:
authorRhys Perry <[email protected]>2020-03-31 13:57:42 +0100
committerMarge Bot <[email protected]>2020-04-23 10:57:38 +0000
commit32d871b48fbf38cb309eaaa13c8b425695141b60 (patch)
tree36589ab910e895835f9e57aefa49c37967d7d65a /src/intel
parent6d792989924ce79363f181462904fa46692a99b5 (diff)
nir/algebraic: don't undo lowering of 8/16-bit comparisons to 32-bit
Signed-off-by: Rhys Perry <[email protected]> Reviewed-by: Erik Faye-Lund <[email protected]> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4387>
Diffstat (limited to 'src/intel')
-rw-r--r--src/intel/compiler/brw_compiler.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/intel/compiler/brw_compiler.c b/src/intel/compiler/brw_compiler.c
index 20f32b552c0..cede7b44879 100644
--- a/src/intel/compiler/brw_compiler.c
+++ b/src/intel/compiler/brw_compiler.c
@@ -48,7 +48,9 @@
.use_interpolated_input_intrinsics = true, \
.vertex_id_zero_based = true, \
.lower_base_vertex = true, \
- .use_scoped_memory_barrier = true
+ .use_scoped_memory_barrier = true, \
+ .support_8bit_alu = true, \
+ .support_16bit_alu = true
#define COMMON_SCALAR_OPTIONS \
.lower_to_scalar = true, \