Mesa (main): pan/decode: Remove hierarchy mask check

GitLab Mirror gitlab-mirror at kemper.freedesktop.org
Sat Jan 15 17:03:21 UTC 2022


Module: Mesa
Branch: main
Commit: 4af20895c528acf6fa0bc950ef79710f2318f0cb
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=4af20895c528acf6fa0bc950ef79710f2318f0cb

Author: Alyssa Rosenzweig <alyssa at collabora.com>
Date:   Tue Dec 21 12:34:57 2021 -0500

pan/decode: Remove hierarchy mask check

This has never been meaningful.

Signed-off-by: Alyssa Rosenzweig <alyssa at collabora.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/14543>

---

 src/panfrost/lib/genxml/decode.c | 9 ---------
 1 file changed, 9 deletions(-)

diff --git a/src/panfrost/lib/genxml/decode.c b/src/panfrost/lib/genxml/decode.c
index f5e8a555080..372c91f2d15 100644
--- a/src/panfrost/lib/genxml/decode.c
+++ b/src/panfrost/lib/genxml/decode.c
@@ -983,15 +983,6 @@ pandecode_bifrost_tiler(mali_ptr gpu_va, int job_no)
                 pandecode_bifrost_tiler_heap(t.heap, job_no);
 
         DUMP_UNPACKED(TILER_CONTEXT, t, "Bifrost Tiler:\n");
-        pandecode_indent++;
-        if (t.hierarchy_mask != 0xa &&
-            t.hierarchy_mask != 0x14 &&
-            t.hierarchy_mask != 0x28 &&
-            t.hierarchy_mask != 0x50 &&
-            t.hierarchy_mask != 0xa0)
-                pandecode_msg("XXX: Unexpected hierarchy_mask (not 0xa, 0x14, 0x28, 0x50 or 0xa0)!");
-
-        pandecode_indent--;
 }
 
 #if PAN_ARCH <= 7



More information about the mesa-commit mailing list