diff options
author | Rhys Perry <[email protected]> | 2020-03-31 13:57:42 +0100 |
---|---|---|
committer | Marge Bot <[email protected]> | 2020-04-23 10:57:38 +0000 |
commit | 32d871b48fbf38cb309eaaa13c8b425695141b60 (patch) | |
tree | 36589ab910e895835f9e57aefa49c37967d7d65a /src/compiler/nir/nir.h | |
parent | 6d792989924ce79363f181462904fa46692a99b5 (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/compiler/nir/nir.h')
-rw-r--r-- | src/compiler/nir/nir.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/compiler/nir/nir.h b/src/compiler/nir/nir.h index 04088fc99fa..fd6086af70b 100644 --- a/src/compiler/nir/nir.h +++ b/src/compiler/nir/nir.h @@ -3011,6 +3011,12 @@ typedef struct nir_shader_compiler_options { */ bool intel_vec4; + /** Whether 8-bit ALU is supported. */ + bool support_8bit_alu; + + /** Whether 16-bit ALU is supported. */ + bool support_16bit_alu; + unsigned max_unroll_iterations; nir_lower_int64_options lower_int64_options; |