radeonsi: fix HTILE for NPOT textures with mipmapping on SI/CI

VI uses addrlib so it's unaffected.

Cc: 18.1 18.2 <mesa-stable@lists.freedesktop.org>
Tested-by: Dieter Nützel <Dieter@nuetzel-hh.de>
This commit is contained in:
Marek Olšák 2018-08-28 15:49:31 -04:00
parent 5162735957
commit a1b9a00f82
1 changed files with 2 additions and 2 deletions

View File

@ -931,8 +931,8 @@ static void si_texture_get_htile_size(struct si_screen *sscreen,
return;
}
width = align(tex->buffer.b.b.width0, cl_width * 8);
height = align(tex->buffer.b.b.height0, cl_height * 8);
width = align(tex->surface.u.legacy.level[0].nblk_x, cl_width * 8);
height = align(tex->surface.u.legacy.level[0].nblk_y, cl_height * 8);
slice_elements = (width * height) / (8 * 8);
slice_bytes = slice_elements * 4;