mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-09 10:30:13 +01:00
pan/bi: Rename next-wait to simply 'wait'
next-wait is from a quirk of packing that the dependency indices are "off by one"; we don't emulate this quirk in the IR since it's easy enough to patch over in the disassembler. Let's not confuse anybody with it. Signed-off-by: Alyssa Rosenzweig <alyssa.rosenzweig@collabora.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4097>
This commit is contained in:
parent
b329f8c750
commit
0b0be49005
1 changed files with 1 additions and 1 deletions
|
|
@ -361,7 +361,7 @@ bi_print_clause(bi_clause *clause, FILE *fp)
|
|||
fprintf(fp, "\tid(%u)", clause->scoreboard_id);
|
||||
|
||||
if (clause->dependencies) {
|
||||
fprintf(fp, ", next-wait(");
|
||||
fprintf(fp, ", wait(");
|
||||
|
||||
for (unsigned i = 0; i < 8; ++i) {
|
||||
if (clause->dependencies & (1 << i))
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue