diff options
Diffstat (limited to 'src/compiler/nir/nir.h')
-rw-r--r-- | src/compiler/nir/nir.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/compiler/nir/nir.h b/src/compiler/nir/nir.h index fd6086af70b..4f445b1b894 100644 --- a/src/compiler/nir/nir.h +++ b/src/compiler/nir/nir.h @@ -2996,6 +2996,14 @@ typedef struct nir_shader_compiler_options { */ bool has_imul24; + /** Backend supports umul24, if not set umul24 will automatically be lowered + * to imul with masked inputs */ + bool has_umul24; + + /** Backend supports umad24, if not set umad24 will automatically be lowered + * to imul with masked inputs and iadd */ + bool has_umad24; + /* Whether to generate only scoped_memory_barrier intrinsics instead of the * set of memory barrier intrinsics based on GLSL. */ |