From 6a19d49b2e8386c963bd921c7f1f3261d66af26c Mon Sep 17 00:00:00 2001 From: Alyssa Rosenzweig Date: Fri, 22 May 2020 14:53:27 -0400 Subject: [PATCH] pan/decode: Dump missing field on Bifrost Signed-off-by: Alyssa Rosenzweig Part-of: --- src/panfrost/pandecode/decode.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/panfrost/pandecode/decode.c b/src/panfrost/pandecode/decode.c index d5e07a0940c..7dc19d0a739 100644 --- a/src/panfrost/pandecode/decode.c +++ b/src/panfrost/pandecode/decode.c @@ -2675,6 +2675,8 @@ pandecode_vertex_tiler_postfix_pre( mali_ptr shader = pandecode_midgard_blend(&blend, s->unknown2_3 & MALI_HAS_BLEND_SHADER); if (shader & ~0xF) pandecode_blend_shader_disassemble(shader, job_no, job_type, false, gpu_id); + } else { + pandecode_msg("mdg_blend = %" PRIx64 "\n", s->blend.shader); } pandecode_indent--; -- 2.30.2