diff options
| author | 2020-04-04 00:02:26 -0300 | |
|---|---|---|
| committer | 2020-04-04 00:02:26 -0300 | |
| commit | 80c4fee4ec463e84483c28daccbc041ef0460d5d (patch) | |
| tree | d13f1626216bfb7f95536e52b43e95a2d1877113 | |
| parent | Merge pull request #3579 from Kewlan/reorder-shoulder (diff) | |
| download | yuzu-80c4fee4ec463e84483c28daccbc041ef0460d5d.tar.gz yuzu-80c4fee4ec463e84483c28daccbc041ef0460d5d.tar.xz yuzu-80c4fee4ec463e84483c28daccbc041ef0460d5d.zip | |
Revert "Merge pull request #3499 from ReinUsesLisp/depth-2d-array"
This reverts commit 41905ee467b24172ba93e3fcd665bb4e4806a45a, reversing
changes made to 35145bd529c3517e2c366efc764a762092d96edf.
It causes regressions in several games.
| -rw-r--r-- | src/video_core/texture_cache/surface_params.cpp | 6 |
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 9931c5ef7..f00839313 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 | |||
| 113 | params.height = tic.Height(); | 113 | params.height = tic.Height(); |
| 114 | params.depth = tic.Depth(); | 114 | params.depth = tic.Depth(); |
| 115 | params.pitch = params.is_tiled ? 0 : tic.Pitch(); | 115 | params.pitch = params.is_tiled ? 0 : tic.Pitch(); |
| 116 | if (params.target == SurfaceTarget::Texture2D && params.depth > 1) { | 116 | if (params.target == SurfaceTarget::TextureCubemap || |
| 117 | params.depth = 1; | 117 | params.target == SurfaceTarget::TextureCubeArray) { |
| 118 | } else if (params.target == SurfaceTarget::TextureCubemap || | ||
| 119 | params.target == SurfaceTarget::TextureCubeArray) { | ||
| 120 | params.depth *= 6; | 118 | params.depth *= 6; |
| 121 | } | 119 | } |
| 122 | params.num_levels = tic.max_mip_level + 1; | 120 | params.num_levels = tic.max_mip_level + 1; |