radeonsi: Set tiling mode index in sampler view state.

Hardcode index for linear mode for now.
This commit is contained in:
Michel Dänzer 2012-04-18 10:51:48 +02:00 committed by Michel Dänzer
parent 29d7186e4c
commit f2c81a4bff
1 changed files with 1 additions and 0 deletions

View File

@ -1271,6 +1271,7 @@ static struct pipe_sampler_view *evergreen_create_sampler_view(struct pipe_conte
S_008F1C_DST_SEL_W(si_map_swizzle(swizzle[3])) |
S_008F1C_BASE_LEVEL(state->u.tex.first_level) |
S_008F1C_LAST_LEVEL(state->u.tex.last_level) |
S_008F1C_TILING_INDEX(8) | /* XXX */
S_008F1C_TYPE(si_tex_dim(texture->target)));
view->state[4] = (S_008F20_DEPTH(depth - 1) |
S_008F20_PITCH((pitch / 8) - 1));