diff options
author | Caio Marcelo de Oliveira Filho <[email protected]> | 2020-01-10 16:25:02 -0800 |
---|---|---|
committer | Marge Bot <[email protected]> | 2020-02-24 19:12:11 +0000 |
commit | 956e4b2d371736e073542cf8556f0c972c197989 (patch) | |
tree | d20de2e73fd5333540b04518bd6eb127082f0e5b /src/intel/compiler | |
parent | 6be766336a0ebb556f44765e3d6f6af0e67070a1 (diff) |
nir, intel: Move use_scoped_memory_barrier to nir_options
This option will be used later by GLSL, so move to a common struct.
Because nir_options is filled in the compiler instead of the Vulkan
driver, fix that up. GLSL will ignore that for now.
Reviewed-by: Jason Ekstrand <[email protected]>
Tested-by: Marge Bot <https://gitlab.freedesktop.org/mesa/mesa/merge_requests/3913>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/merge_requests/3913>
Diffstat (limited to 'src/intel/compiler')
-rw-r--r-- | src/intel/compiler/brw_compiler.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/intel/compiler/brw_compiler.c b/src/intel/compiler/brw_compiler.c index 3d0bec30dcf..20f32b552c0 100644 --- a/src/intel/compiler/brw_compiler.c +++ b/src/intel/compiler/brw_compiler.c @@ -47,7 +47,8 @@ .vectorize_io = true, \ .use_interpolated_input_intrinsics = true, \ .vertex_id_zero_based = true, \ - .lower_base_vertex = true + .lower_base_vertex = true, \ + .use_scoped_memory_barrier = true #define COMMON_SCALAR_OPTIONS \ .lower_to_scalar = true, \ |