From: Pierre-Eric Pelloux-Prayer Date: Fri, 6 Dec 2019 20:35:38 +0000 (+0100) Subject: radeonsi: use gfx9.surf_offset to compute texture offset X-Git-Tag: upstream/20.1.8~5301 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=ff0f10866699a22216fd1a4af6cdb89c2fea10e1;p=platform%2Fupstream%2Fmesa.git radeonsi: use gfx9.surf_offset to compute texture offset Closes: https://gitlab.freedesktop.org/mesa/mesa/issues/2177 Reviewed-by: Marek Olšák --- diff --git a/src/gallium/drivers/radeonsi/si_texture.c b/src/gallium/drivers/radeonsi/si_texture.c index eb17f6c..de3cbb2 100644 --- a/src/gallium/drivers/radeonsi/si_texture.c +++ b/src/gallium/drivers/radeonsi/si_texture.c @@ -199,7 +199,8 @@ static unsigned si_texture_get_offset(struct si_screen *sscreen, /* Each texture is an array of slices. Each slice is an array * of mipmap levels. */ - return box->z * tex->surface.u.gfx9.surf_slice_size + + return tex->surface.u.gfx9.surf_offset + + box->z * tex->surface.u.gfx9.surf_slice_size + tex->surface.u.gfx9.offset[level] + (box->y / tex->surface.blk_h * tex->surface.u.gfx9.surf_pitch +