aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/panfrost/bifrost/disassemble.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/panfrost/bifrost/disassemble.c b/src/panfrost/bifrost/disassemble.c
index 53654280d56..c3b7fe6c413 100644
--- a/src/panfrost/bifrost/disassemble.c
+++ b/src/panfrost/bifrost/disassemble.c
@@ -1558,7 +1558,9 @@ static void dump_add(FILE *fp, uint64_t word, struct bifrost_regs regs,
// direct addr
fprintf(fp, "%d", addr);
} else if (addr < 0b11000) {
- if (addr == 22)
+ if (addr == 20)
+ fprintf(fp, "pointcoord");
+ else if (addr == 22)
fprintf(fp, "fragw");
else if (addr == 23)
fprintf(fp, "fragz");