mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-29 14:30:10 +01:00
vc4: Keep sample mask writes from being reordered after TLB writes
Fixes a regression I noticed after introducing scheduling on the QIR. Cc: "11.1" <mesa-stable@lists.freedesktop.org>
This commit is contained in:
parent
5dc22cadb5
commit
960f48809f
1 changed files with 2 additions and 1 deletions
|
|
@ -259,7 +259,8 @@ process_waddr_deps(struct schedule_state *state, struct schedule_node *n,
|
|||
}
|
||||
} else if (is_tmu_write(waddr)) {
|
||||
add_write_dep(state, &state->last_tmu_write, n);
|
||||
} else if (qpu_waddr_is_tlb(waddr)) {
|
||||
} else if (qpu_waddr_is_tlb(waddr) ||
|
||||
waddr == QPU_W_MS_FLAGS) {
|
||||
add_write_dep(state, &state->last_tlb, n);
|
||||
} else {
|
||||
switch (waddr) {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue