mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-03 05:00:09 +01:00
broadcom/compiler: relax restriction on VPM inst in last thread end slot
According to the documentation, only vpmwt is disallowed in the last delay slot of the thread end. Reviewed-by: Alejandro Piñeiro <apinheiro@igalia.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/13975>
This commit is contained in:
parent
57969c6dad
commit
996f147fef
1 changed files with 1 additions and 1 deletions
|
|
@ -1509,7 +1509,7 @@ qpu_inst_valid_in_thrend_slot(struct v3d_compile *c,
|
|||
if (slot > 0 && qinst->uniform != ~0)
|
||||
return false;
|
||||
|
||||
if (v3d_qpu_uses_vpm(inst))
|
||||
if (v3d_qpu_waits_vpm(inst))
|
||||
return false;
|
||||
|
||||
if (inst->sig.ldvary)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue