diff options
author | Fernando Sahmkow <fsahmkow27@gmail.com> | 2020-03-14 14:48:39 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-14 14:48:39 +0100 |
commit | 41905ee467b24172ba93e3fcd665bb4e4806a45a (patch) | |
tree | d7987c028fddaa50a56ac6321de3f865d272e089 /src | |
parent | Merge pull request #3490 from ReinUsesLisp/transform-feedbacks (diff) | |
parent | texture_cache/surface_params: Force depth=1 on 2D textures (diff) | |
download | yuzu-41905ee467b24172ba93e3fcd665bb4e4806a45a.tar yuzu-41905ee467b24172ba93e3fcd665bb4e4806a45a.tar.gz yuzu-41905ee467b24172ba93e3fcd665bb4e4806a45a.tar.bz2 yuzu-41905ee467b24172ba93e3fcd665bb4e4806a45a.tar.lz yuzu-41905ee467b24172ba93e3fcd665bb4e4806a45a.tar.xz yuzu-41905ee467b24172ba93e3fcd665bb4e4806a45a.tar.zst yuzu-41905ee467b24172ba93e3fcd665bb4e4806a45a.zip |
Diffstat (limited to 'src')
-rw-r--r-- | src/video_core/texture_cache/surface_params.cpp | 6 |
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; |