summaryrefslogtreecommitdiffstats
path: root/src/video_core
diff options
context:
space:
mode:
authorReinUsesLisp <reinuseslisp@airmail.cc>2020-03-12 21:35:46 +0100
committerReinUsesLisp <reinuseslisp@airmail.cc>2020-03-12 22:11:42 +0100
commitdaae6a323be9d490c66dd27674fff521cceabe61 (patch)
tree938d221636d5a7afc2a2305bb62fe76ae749b68d /src/video_core
parentMerge pull request #3494 from ReinUsesLisp/fix-cs-pipeline (diff)
downloadyuzu-daae6a323be9d490c66dd27674fff521cceabe61.tar
yuzu-daae6a323be9d490c66dd27674fff521cceabe61.tar.gz
yuzu-daae6a323be9d490c66dd27674fff521cceabe61.tar.bz2
yuzu-daae6a323be9d490c66dd27674fff521cceabe61.tar.lz
yuzu-daae6a323be9d490c66dd27674fff521cceabe61.tar.xz
yuzu-daae6a323be9d490c66dd27674fff521cceabe61.tar.zst
yuzu-daae6a323be9d490c66dd27674fff521cceabe61.zip
Diffstat (limited to 'src/video_core')
-rw-r--r--src/video_core/texture_cache/surface_params.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/video_core/texture_cache/surface_params.cpp b/src/video_core/texture_cache/surface_params.cpp
index f00839313..9931c5ef7 100644
--- a/src/video_core/texture_cache/surface_params.cpp
+++ b/src/video_core/texture_cache/surface_params.cpp
@@ -113,8 +113,10 @@ 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::TextureCubemap ||
- params.target == SurfaceTarget::TextureCubeArray) {
+ if (params.target == SurfaceTarget::Texture2D && params.depth > 1) {
+ params.depth = 1;
+ } else if (params.target == SurfaceTarget::TextureCubemap ||
+ params.target == SurfaceTarget::TextureCubeArray) {
params.depth *= 6;
}
params.num_levels = tic.max_mip_level + 1;