mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-24 02:20:11 +01:00
radeonsi: fix a regression since the resource_copy_region cleanup
Broken since:
46b2b3b - radeonsi: don't change pipe_resource in resource_copy_region
Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=91444
Reviewed-and-Tested-by: Michel Dänzer <michel.daenzer@amd.com>
This commit is contained in:
parent
3ca2132058
commit
190a40580f
1 changed files with 1 additions and 1 deletions
|
|
@ -2511,7 +2511,7 @@ si_create_sampler_view_custom(struct pipe_context *ctx,
|
|||
S_008F1C_LAST_LEVEL(texture->nr_samples > 1 ?
|
||||
util_logbase2(texture->nr_samples) :
|
||||
last_level) |
|
||||
S_008F1C_TILING_INDEX(si_tile_mode_index(tmp, 0, false)) |
|
||||
S_008F1C_TILING_INDEX(si_tile_mode_index(tmp, base_level, false)) |
|
||||
S_008F1C_POW2_PAD(texture->last_level > 0) |
|
||||
S_008F1C_TYPE(si_tex_dim(texture->target, texture->nr_samples)));
|
||||
view->state[4] = (S_008F20_DEPTH(depth - 1) | S_008F20_PITCH(pitch - 1));
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue