Browse Source

Revert "Merge pull request #3499 from ReinUsesLisp/depth-2d-array"

This reverts commit 56fc1688f6, reversing
changes made to ad5120c595.

It causes regressions in several games.
nce_cpp
ReinUsesLisp 6 years ago
parent
commit
0bb29489f4
  1. 4
      src/video_core/texture_cache/surface_params.cpp

4
src/video_core/texture_cache/surface_params.cpp

@ -113,9 +113,7 @@ SurfaceParams SurfaceParams::CreateForTexture(const FormatLookupTable& lookup_ta
params.height = tic.Height(); params.height = tic.Height();
params.depth = tic.Depth(); params.depth = tic.Depth();
params.pitch = params.is_tiled ? 0 : tic.Pitch(); 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 ||
if (params.target == SurfaceTarget::TextureCubemap ||
params.target == SurfaceTarget::TextureCubeArray) { params.target == SurfaceTarget::TextureCubeArray) {
params.depth *= 6; params.depth *= 6;
} }

Loading…
Cancel
Save