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 <alyssa.rosenzweig@collabora.com>
This commit is contained in:
Alyssa Rosenzweig
2019-07-29 14:07:42 -07:00
parent 0714481894
commit c9498b3c5e
+1 -1
View File
@@ -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;
}
}