aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorAlyssa Rosenzweig <[email protected]>2019-07-29 14:07:42 -0700
committerAlyssa Rosenzweig <[email protected]>2019-07-30 10:01:19 -0700
commitc9498b3c5e9f2e7ca91dda58f1fd2df4a1035b9d (patch)
tree10b41ce37b508c340caed75fb3375a9743ca1ec8 /src
parent07144818941900f03865a067ac78d01929106d68 (diff)
pan/midgard: Disassemble unknown texture ops as hex
I'm not sure why I ever thought decimal was a good idea. Signed-off-by: Alyssa Rosenzweig <[email protected]>
Diffstat (limited to 'src')
-rw-r--r--src/panfrost/midgard/disassemble.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/panfrost/midgard/disassemble.c b/src/panfrost/midgard/disassemble.c
index eb6b98a94bd..8387e38587c 100644
--- a/src/panfrost/midgard/disassemble.c
+++ b/src/panfrost/midgard/disassemble.c
@@ -1078,7 +1078,7 @@ print_texture_op(unsigned op, bool gather)
DEFINE_CASE(TEXTURE_OP_DFDY, "dFdy");
default:
- printf("tex_%d", op);
+ printf("tex_%X", op);
break;
}
}