aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlyssa Rosenzweig <[email protected]>2020-05-22 14:53:27 -0400
committerMarge Bot <[email protected]>2020-05-26 22:58:21 +0000
commit6a19d49b2e8386c963bd921c7f1f3261d66af26c (patch)
treefe61b6355fda351aec8e1180ed9e6ad0da4b117b
parentc2c8b1ac5791348977fed3d6056ae50af1721649 (diff)
pan/decode: Dump missing field on Bifrost
Signed-off-by: Alyssa Rosenzweig <[email protected]> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/5219>
-rw-r--r--src/panfrost/pandecode/decode.c2
1 files changed, 2 insertions, 0 deletions
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--;