mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-26 02:00:12 +01:00
radv: stop copying if VS or TES uses the InvocationID built-in
It's only allowed in TCS or GS which means the src shader stage value is always FALSE. Signed-off-by: Samuel Pitoiset <samuel.pitoiset@gmail.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/24691>
This commit is contained in:
parent
d547c996ae
commit
b78ea2a38f
1 changed files with 0 additions and 1 deletions
|
|
@ -1640,7 +1640,6 @@ radv_nir_shader_info_merge(const struct radv_shader_stage *src, struct radv_shad
|
|||
dst_info->loads_dynamic_offsets |= src_info->loads_dynamic_offsets;
|
||||
dst_info->desc_set_used_mask |= src_info->desc_set_used_mask;
|
||||
dst_info->uses_view_index |= src_info->uses_view_index;
|
||||
dst_info->uses_invocation_id |= src_info->uses_invocation_id;
|
||||
dst_info->uses_prim_id |= src_info->uses_prim_id;
|
||||
dst_info->inline_push_constant_mask |= src_info->inline_push_constant_mask;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue