Mesa (master): pan/decode: Fix min/max_tile_coord mixup

GitLab Mirror gitlab-mirror at kemper.freedesktop.org
Tue May 19 16:38:58 UTC 2020


Module: Mesa
Branch: master
Commit: 52d6b4d6c0fa480ead93786851349dbd0a54d394
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=52d6b4d6c0fa480ead93786851349dbd0a54d394

Author: Alyssa Rosenzweig <alyssa.rosenzweig at collabora.com>
Date:   Mon May 11 18:54:05 2020 -0400

pan/decode: Fix min/max_tile_coord mixup

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

---

 src/panfrost/pandecode/decode.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/panfrost/pandecode/decode.c b/src/panfrost/pandecode/decode.c
index 471e7f01ee0..dc826687174 100644
--- a/src/panfrost/pandecode/decode.c
+++ b/src/panfrost/pandecode/decode.c
@@ -3074,7 +3074,7 @@ pandecode_fragment_job(const struct pandecode_mapped_memory *mem,
         if ((s->min_tile_coord | s->max_tile_coord) & ~(MALI_X_COORD_MASK | MALI_Y_COORD_MASK)) {
                 pandecode_msg("XXX: unexpected tile coordinate bits\n");
                 pandecode_prop("min_tile_coord = 0x%X\n", s->min_tile_coord);
-                pandecode_prop("max_tile_coord = 0x%X\n", s->min_tile_coord);
+                pandecode_prop("max_tile_coord = 0x%X\n", s->max_tile_coord);
         }
 
         /* Extract tile coordinates */



More information about the mesa-commit mailing list