mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-06-19 14:58:32 +02:00
v3d: Fix uniform pretty printing assertion failure with branches.
Fixes: 248a7fb392 ("v3d: Do uniform pretty-printing in the QPU dump.")
This commit is contained in:
parent
133a5b8383
commit
9ec6a3d621
1 changed files with 3 additions and 0 deletions
|
|
@ -366,6 +366,9 @@ reads_uniform(const struct v3d_device_info *devinfo, uint64_t instruction)
|
|||
return true;
|
||||
}
|
||||
|
||||
if (qpu.type == V3D_QPU_INSTR_TYPE_BRANCH)
|
||||
return true;
|
||||
|
||||
if (qpu.type == V3D_QPU_INSTR_TYPE_ALU) {
|
||||
if (qpu.alu.add.magic_write &&
|
||||
v3d_qpu_magic_waddr_loads_unif(qpu.alu.add.waddr)) {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue