mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-09 06:48:06 +02:00
pan/decode: Fix duplicate heap_end property
This was supposed to read heap_start. It's the same value but still, better get this right. Signed-off-by: Alyssa Rosenzweig <alyssa.rosenzweig@collabora.com>
This commit is contained in:
parent
b78e04c17b
commit
f5cc5ef404
1 changed files with 1 additions and 1 deletions
|
|
@ -479,7 +479,7 @@ pandecode_midgard_tiler_descriptor(const struct midgard_tiler_descriptor *t)
|
||||||
|
|
||||||
if (t->heap_start == t->heap_end) {
|
if (t->heap_start == t->heap_end) {
|
||||||
/* Print identically to show symmetry for empty tiler heaps */
|
/* Print identically to show symmetry for empty tiler heaps */
|
||||||
MEMORY_PROP(t, heap_start);
|
MEMORY_PROP(t, heap_end);
|
||||||
} else {
|
} else {
|
||||||
/* Points to the end of a buffer */
|
/* Points to the end of a buffer */
|
||||||
char *a = pointer_as_memory_reference(t->heap_end - 1);
|
char *a = pointer_as_memory_reference(t->heap_end - 1);
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue