mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 07:28:11 +02:00
radv: fix incorrect patch_outputs_read for TCS with dynamic state
Fixes: 8c2f9f0665 - radv: switch to the new TCS LDS/offchip size computation
Reviewed-by: Timur Kristóf <timur.kristof@gmail.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/34544>
This commit is contained in:
parent
2948f7ce96
commit
4a51089f30
1 changed files with 1 additions and 1 deletions
|
|
@ -635,7 +635,7 @@ gather_shader_info_tcs(struct radv_device *device, const nir_shader *nir,
|
|||
|
||||
info->tcs.tcs_outputs_read = nir->info.outputs_read;
|
||||
info->tcs.tcs_outputs_written = nir->info.outputs_written;
|
||||
info->tcs.tcs_patch_outputs_read = nir->info.patch_inputs_read;
|
||||
info->tcs.tcs_patch_outputs_read = nir->info.patch_outputs_read;
|
||||
info->tcs.tcs_patch_outputs_written = nir->info.patch_outputs_written;
|
||||
info->tcs.tcs_vertices_out = nir->info.tess.tcs_vertices_out;
|
||||
info->tcs.tes_inputs_read = ~0ULL;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue