diff options
author | Dave Airlie <[email protected]> | 2018-02-20 12:28:12 +1000 |
---|---|---|
committer | Dave Airlie <[email protected]> | 2018-03-16 05:23:08 +0000 |
commit | 384aced65e7768f7bba1a6159c6730efdd514d6c (patch) | |
tree | 2edc233113716f50600123d75f6d5c732ec462b2 /src/amd/vulkan/radv_shader.h | |
parent | f50d520acfb1a79c935e3f8838310a6db39d2427 (diff) |
radv: drop scanning the tess shader in the nir code.
This drops the now unneeded scanning and results in favour
of the ones in the info.
Reviewed-by: Samuel Pitoiset <[email protected]>
Signed-off-by: Dave Airlie <[email protected]>
Diffstat (limited to 'src/amd/vulkan/radv_shader.h')
-rw-r--r-- | src/amd/vulkan/radv_shader.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/amd/vulkan/radv_shader.h b/src/amd/vulkan/radv_shader.h index 4b83095c972..6066f00c404 100644 --- a/src/amd/vulkan/radv_shader.h +++ b/src/amd/vulkan/radv_shader.h @@ -211,7 +211,6 @@ struct radv_shader_variant_info { unsigned vgpr_comp_cnt; bool as_es; bool as_ls; - uint64_t outputs_written; } vs; struct { unsigned num_interp; @@ -234,10 +233,6 @@ struct radv_shader_variant_info { } gs; struct { unsigned tcs_vertices_out; - /* Which outputs are actually written */ - uint64_t outputs_written; - /* Which patch outputs are actually written */ - uint32_t patch_outputs_written; uint32_t num_patches; } tcs; struct { |