radeonsi/nir: gather some missing fs info
authorTimothy Arceri <tarceri@itsqueeze.com>
Thu, 8 Feb 2018 23:53:00 +0000 (10:53 +1100)
committerTimothy Arceri <tarceri@itsqueeze.com>
Fri, 9 Feb 2018 01:51:27 +0000 (12:51 +1100)
Fixes some early-z arb_shader_image_load_store piglit tests.

Reviewed-by: Marek Olšák <marek.olsak@amd.com>
src/gallium/drivers/radeonsi/si_shader_nir.c

index 002561d89ebf340855b7d11c89456584e621cbf0..dd1de6c851ba4837f9f78437259acb633985cba1 100644 (file)
@@ -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];