Mesa (master): radeonsi/nir: gather some missing fs info

Timothy Arceri tarceri at kemper.freedesktop.org
Fri Feb 9 01:51:38 UTC 2018


Module: Mesa
Branch: master
Commit: d8bca3809db504b919f18f530f4d88f29078a3e5
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=d8bca3809db504b919f18f530f4d88f29078a3e5

Author: Timothy Arceri <tarceri at itsqueeze.com>
Date:   Fri Feb  9 10:53:00 2018 +1100

radeonsi/nir: gather some missing fs info

Fixes some early-z arb_shader_image_load_store piglit tests.

Reviewed-by: Marek Olšák <marek.olsak at amd.com>

---

 src/gallium/drivers/radeonsi/si_shader_nir.c | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/src/gallium/drivers/radeonsi/si_shader_nir.c b/src/gallium/drivers/radeonsi/si_shader_nir.c
index 002561d89e..dd1de6c851 100644
--- a/src/gallium/drivers/radeonsi/si_shader_nir.c
+++ b/src/gallium/drivers/radeonsi/si_shader_nir.c
@@ -276,6 +276,11 @@ void si_nir_scan_shader(const struct nir_shader *nir,
 		info->properties[TGSI_PROPERTY_GS_INVOCATIONS] = nir->info.gs.invocations;
 	}
 
+	if (nir->info.stage == MESA_SHADER_FRAGMENT) {
+		info->properties[TGSI_PROPERTY_FS_EARLY_DEPTH_STENCIL] = nir->info.fs.early_fragment_tests;
+		info->properties[TGSI_PROPERTY_FS_POST_DEPTH_COVERAGE] = nir->info.fs.post_depth_coverage;
+	}
+
 	if (nir->info.stage == MESA_SHADER_COMPUTE) {
 		info->properties[TGSI_PROPERTY_CS_FIXED_BLOCK_WIDTH] = nir->info.cs.local_size[0];
 		info->properties[TGSI_PROPERTY_CS_FIXED_BLOCK_HEIGHT] = nir->info.cs.local_size[1];




More information about the mesa-commit mailing list