summaryrefslogtreecommitdiffstats
path: root/src/video_core/texture_cache
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2020-04-07 22:51:41 +0200
committerGitHub <noreply@github.com>2020-04-07 22:51:41 +0200
commitf316911248e8046a3044fd0fdcd434663a5e588e (patch)
tree404ed950ca2ed9f90bd33e39a47824ade719f26b /src/video_core/texture_cache
parentMerge pull request #3489 from namkazt/patch-2 (diff)
parentRevert "Merge pull request #3499 from ReinUsesLisp/depth-2d-array" (diff)
downloadyuzu-f316911248e8046a3044fd0fdcd434663a5e588e.tar
yuzu-f316911248e8046a3044fd0fdcd434663a5e588e.tar.gz
yuzu-f316911248e8046a3044fd0fdcd434663a5e588e.tar.bz2
yuzu-f316911248e8046a3044fd0fdcd434663a5e588e.tar.lz
yuzu-f316911248e8046a3044fd0fdcd434663a5e588e.tar.xz
yuzu-f316911248e8046a3044fd0fdcd434663a5e588e.tar.zst
yuzu-f316911248e8046a3044fd0fdcd434663a5e588e.zip
Diffstat (limited to 'src/video_core/texture_cache')
-rw-r--r--src/video_core/texture_cache/surface_params.cpp6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/video_core/texture_cache/surface_params.cpp b/src/video_core/texture_cache/surface_params.cpp
index 47b2aafbd..6f3ef45be 100644
--- a/src/video_core/texture_cache/surface_params.cpp
+++ b/src/video_core/texture_cache/surface_params.cpp
@@ -113,10 +113,8 @@ SurfaceParams SurfaceParams::CreateForTexture(const FormatLookupTable& lookup_ta
params.height = tic.Height();
params.depth = tic.Depth();
params.pitch = params.is_tiled ? 0 : tic.Pitch();
- if (params.target == SurfaceTarget::Texture2D && params.depth > 1) {
- params.depth = 1;
- } else if (params.target == SurfaceTarget::TextureCubemap ||
- params.target == SurfaceTarget::TextureCubeArray) {
+ if (params.target == SurfaceTarget::TextureCubemap ||
+ params.target == SurfaceTarget::TextureCubeArray) {
params.depth *= 6;
}
params.num_levels = tic.max_mip_level + 1;