mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 07:28:11 +02:00
radv: gather the output usage mask for clip/cull distances correctly
It's a special case because both are combined into a single array. Signed-off-by: Samuel Pitoiset <samuel.pitoiset@gmail.com> Reviewed-by: Dave Airlie <airlied@redhat.com>
This commit is contained in:
parent
ffe3a2a298
commit
730c704f86
1 changed files with 8 additions and 0 deletions
|
|
@ -128,6 +128,14 @@ set_output_usage_mask(const nir_shader *nir, const nir_intrinsic_instr *instr,
|
|||
|
||||
get_deref_offset(deref_instr, &const_offset);
|
||||
|
||||
if (idx == VARYING_SLOT_CLIP_DIST0) {
|
||||
/* Special case for clip/cull distances because there are
|
||||
* combined into a single array that contains both.
|
||||
*/
|
||||
output_usage_mask[idx] |= 1 << const_offset;
|
||||
return;
|
||||
}
|
||||
|
||||
for (unsigned i = 0; i < attrib_count; i++) {
|
||||
output_usage_mask[idx + i + const_offset] |=
|
||||
instr->const_index[0] << comp;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue