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.
This commit is contained in:
ReinUsesLisp 2020-04-04 00:02:26 -03:00
parent a8b66a6b61
commit 0bb29489f4

View file

@ -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;