diff options
author | Timothy Arceri <[email protected]> | 2018-12-15 15:27:01 +1100 |
---|---|---|
committer | Timothy Arceri <[email protected]> | 2019-01-02 10:01:31 +1100 |
commit | 2ef0f944f55ed5ba993b033d7ce54f531688b858 (patch) | |
tree | 71b81c53fa6854425255e02db4a2f16a1bf31d35 /src/gallium | |
parent | 2832bc972bfb512b314a3180a1258be984807760 (diff) |
radeonsi: make use of ac_are_tessfactors_def_in_all_invocs()
Tested-by: Dieter Nützel <[email protected]>
Reviewed-by: Marek Olšák <[email protected]>
Diffstat (limited to 'src/gallium')
-rw-r--r-- | src/gallium/drivers/radeonsi/si_shader_nir.c | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/src/gallium/drivers/radeonsi/si_shader_nir.c b/src/gallium/drivers/radeonsi/si_shader_nir.c index bb7c3d71dc0..37fa81f3f40 100644 --- a/src/gallium/drivers/radeonsi/si_shader_nir.c +++ b/src/gallium/drivers/radeonsi/si_shader_nir.c @@ -285,14 +285,8 @@ void si_nir_scan_tess_ctrl(const struct nir_shader *nir, if (nir->info.stage != MESA_SHADER_TESS_CTRL) return; - /* Initial value = true. Here the pass will accumulate results from - * multiple segments surrounded by barriers. If tess factors aren't - * written at all, it's a shader bug and we don't care if this will be - * true. - */ - out->tessfactors_are_def_in_all_invocs = true; - - /* TODO: Implement scanning of tess factors, see tgsi backend. */ + out->tessfactors_are_def_in_all_invocs = + ac_are_tessfactors_def_in_all_invocs(nir); } void si_nir_scan_shader(const struct nir_shader *nir, |