Mesa (master): radeonsi: Mipmaps require memory footprint to be padded to powers of two.

Michel Dänzer daenzer at kemper.freedesktop.org
Thu Sep 6 13:56:38 UTC 2012


Module: Mesa
Branch: master
Commit: cf697e875c58c963f50dc620d11762293e976653
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=cf697e875c58c963f50dc620d11762293e976653

Author: Michel Dänzer <michel.daenzer at amd.com>
Date:   Tue Sep  4 18:58:38 2012 +0200

radeonsi: Mipmaps require memory footprint to be padded to powers of two.

Signed-off-by: Michel Dänzer <michel.daenzer at amd.com>
Reviewed-by: Christian König <christian.koenig at amd.com>

---

 src/gallium/drivers/radeonsi/si_state.c |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/src/gallium/drivers/radeonsi/si_state.c b/src/gallium/drivers/radeonsi/si_state.c
index dac64aa..762887d 100644
--- a/src/gallium/drivers/radeonsi/si_state.c
+++ b/src/gallium/drivers/radeonsi/si_state.c
@@ -2107,6 +2107,7 @@ static struct pipe_sampler_view *si_create_sampler_view(struct pipe_context *ctx
 			  S_008F1C_BASE_LEVEL(state->u.tex.first_level) |
 			  S_008F1C_LAST_LEVEL(state->u.tex.last_level) |
 			  S_008F1C_TILING_INDEX(tiling_index) |
+			  S_008F1C_POW2_PAD(texture->last_level > 0) |
 			  S_008F1C_TYPE(si_tex_dim(texture->target)));
 	view->state[4] = (S_008F20_DEPTH(depth - 1) | S_008F20_PITCH(pitch - 1));
 	view->state[5] = (S_008F24_BASE_ARRAY(state->u.tex.first_layer) |




More information about the mesa-commit mailing list