diff options
author | Rhys Perry <[email protected]> | 2019-10-15 16:46:02 +0100 |
---|---|---|
committer | Marge Bot <[email protected]> | 2020-01-14 12:11:14 +0000 |
commit | 1ffacc3ce198650f367d3c01f06b9825a0a064b8 (patch) | |
tree | b2e35aa7b8b47d2b09b930c65cdcd7cee6b5781b /src/intel/compiler/brw_nir.c | |
parent | 9fb0c2e0335716a46ce98bcb6979198d5862ae44 (diff) |
nir/lower_gs_intrinsics: add option for per-stream counts
Signed-off-by: Rhys Perry <[email protected]>
Reviewed-by: Jason Ekstrand <[email protected]>
Tested-by: Marge Bot <https://gitlab.freedesktop.org/mesa/mesa/merge_requests/2422>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/merge_requests/2422>
Diffstat (limited to 'src/intel/compiler/brw_nir.c')
-rw-r--r-- | src/intel/compiler/brw_nir.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/intel/compiler/brw_nir.c b/src/intel/compiler/brw_nir.c index 522481a47ef..9db35ea160e 100644 --- a/src/intel/compiler/brw_nir.c +++ b/src/intel/compiler/brw_nir.c @@ -658,7 +658,7 @@ brw_preprocess_nir(const struct brw_compiler *compiler, nir_shader *nir, } if (nir->info.stage == MESA_SHADER_GEOMETRY) - OPT(nir_lower_gs_intrinsics); + OPT(nir_lower_gs_intrinsics, false); /* See also brw_nir_trig_workarounds.py */ if (compiler->precise_trig && |