Module: Mesa Branch: master Commit: c9498b3c5e9f2e7ca91dda58f1fd2df4a1035b9d URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=c9498b3c5e9f2e7ca91dda58f1fd2df4a1035b9d
Author: Alyssa Rosenzweig <[email protected]> Date: Mon Jul 29 14:07:42 2019 -0700 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]> --- src/panfrost/midgard/disassemble.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } } _______________________________________________ mesa-commit mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/mesa-commit
