aboutsummaryrefslogtreecommitdiffstats
path: root/src/panfrost
diff options
context:
space:
mode:
authorAlyssa Rosenzweig <[email protected]>2020-05-11 18:54:05 -0400
committerMarge Bot <[email protected]>2020-05-19 16:24:49 +0000
commit52d6b4d6c0fa480ead93786851349dbd0a54d394 (patch)
treefb92f6d8b7aa4b478e72cdb93a4a8a4351562aa0 /src/panfrost
parentdeb78eec1b7c2fa019c5f8ab8284dab2818b68f7 (diff)
pan/decode: Fix min/max_tile_coord mixup
Signed-off-by: Alyssa Rosenzweig <[email protected]> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/5099>
Diffstat (limited to 'src/panfrost')
-rw-r--r--src/panfrost/pandecode/decode.c2
1 files changed, 1 insertions, 1 deletions
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 */