radeon: Update unaligned offset for 2D->1D tiling transition on SI
authorMichel Dänzer <michel.daenzer@amd.com>
Tue, 26 Nov 2013 09:16:03 +0000 (18:16 +0900)
committerMichel Dänzer <michel@daenzer.net>
Tue, 26 Nov 2013 09:16:03 +0000 (18:16 +0900)
Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=71983

Tested-by: Arek Ruśniak <arek.rusi@gmail.com>
radeon/radeon_surface.c

index b528a48..dcbbfdc 100644 (file)
@@ -1667,7 +1667,7 @@ static int si_surface_init_2d(struct radeon_surface_manager *surf_man,
             return si_surface_init_1d(surf_man, surf, level, bpe, tile_mode, offset, i);
         }
         /* level0 and first mipmap need to have alignment */
-        aligned_offset = surf->bo_size;
+        aligned_offset = offset = surf->bo_size;
         if ((i == 0)) {
             aligned_offset = ALIGN(aligned_offset, surf->bo_alignment);
         }