amd/common: Always initialize gfx9 mipmap offset/pitch.
authorBas Nieuwenhuizen <bas@basnieuwenhuizen.nl>
Tue, 31 Dec 2019 20:28:23 +0000 (21:28 +0100)
committerMarge Bot <eric+marge@anholt.net>
Thu, 2 Jan 2020 11:25:51 +0000 (11:25 +0000)
The WSI expects pitch to be meaningful even for tiled
textures.

(It is used for the pitch in modesetting and X11)

Fixes: 824bd0830e8 "radv: return the correct pitch for linear mipmaps on GFX10"
Closes: https://gitlab.freedesktop.org/mesa/mesa/issues/2301
Closes: https://gitlab.freedesktop.org/mesa/mesa/issues/2304
Reviewed-by: Samuel Pitoiset <samuel.pitoiset@gmail.com>
Tested-by: Marge Bot <https://gitlab.freedesktop.org/mesa/mesa/merge_requests/3245>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/merge_requests/3245>

src/amd/common/ac_surface.c
src/amd/common/ac_surface.h

index 92aab57920a35feda4c678389f177c3f63a74aeb..5e524ceb7b6b0a98389989bd496a7616d9c05e2b 100644 (file)
@@ -1061,11 +1061,9 @@ static int gfx9_compute_miptree(ADDR_HANDLE addrlib,
        surf->surf_size = out.surfSize;
        surf->surf_alignment = out.baseAlign;
 
-       if (in->swizzleMode == ADDR_SW_LINEAR) {
-               for (unsigned i = 0; i < in->numMipLevels; i++) {
-                       surf->u.gfx9.offset[i] = mip_info[i].offset;
-                       surf->u.gfx9.pitch[i] = mip_info[i].pitch;
-               }
+       for (unsigned i = 0; i < in->numMipLevels; i++) {
+               surf->u.gfx9.offset[i] = mip_info[i].offset;
+               surf->u.gfx9.pitch[i] = mip_info[i].pitch;
        }
 
        if (in->flags.depth) {
index 1e90c08b2e53337c62d873dc08dcd869f02ba781..dec7b206a6a7dd16db8a2f084117ffe6ca3d0f17 100644 (file)
@@ -152,9 +152,9 @@ struct gfx9_surf_layout {
     uint64_t                    surf_offset; /* 0 unless imported with an offset */
     /* The size of the 2D plane containing all mipmap levels. */
     uint64_t                    surf_slice_size;
-    /* Mipmap level offset within the slice in bytes. Only valid for LINEAR. */
+    /* Mipmap level offset within the slice in bytes. */
     uint32_t                    offset[RADEON_SURF_MAX_LEVELS];
-    /* Mipmap level pitch in elements. Only valid for LINEAR. */
+    /* Mipmap level pitch in elements. */
     uint32_t                    pitch[RADEON_SURF_MAX_LEVELS];
 
     uint64_t                    stencil_offset; /* separate stencil */