summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJonathan Marek <[email protected]>2019-02-26 12:00:01 -0500
committerRob Clark <[email protected]>2019-02-27 18:46:28 +0000
commit6c0fefb448f0b72971c96a60907c77ce0512d590 (patch)
treef2cc9f3afd023cdbc968b6bd93618727da2e2372
parent4f23767590d1374c4cf2b5ddeedd9dd375c296f1 (diff)
freedreno: a2xx: fix mipmapping for NPOT textures
Fixes: 3a273a4a Signed-off-by: Jonathan Marek <[email protected]>
-rw-r--r--src/gallium/drivers/freedreno/a2xx/fd2_resource.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/gallium/drivers/freedreno/a2xx/fd2_resource.c b/src/gallium/drivers/freedreno/a2xx/fd2_resource.c
index 1bd1f103ccd..2c813804689 100644
--- a/src/gallium/drivers/freedreno/a2xx/fd2_resource.c
+++ b/src/gallium/drivers/freedreno/a2xx/fd2_resource.c
@@ -55,6 +55,12 @@ fd2_setup_slices(struct fd_resource *rsc)
break;
}
+ /* mipmaps have power of two sizes in memory */
+ if (level) {
+ width = util_next_power_of_two(width);
+ height = util_next_power_of_two(height);
+ }
+
slice->pitch = width;
slice->offset = size;