Revert "Merge pull request #3499 from ReinUsesLisp/depth-2d-array"
This reverts commit41905ee467
, reversing changes made to35145bd529
. It causes regressions in several games.
This commit is contained in:
parent
e6f02d5725
commit
80c4fee4ec
|
@ -113,9 +113,7 @@ 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 ||
|
||||
if (params.target == SurfaceTarget::TextureCubemap ||
|
||||
params.target == SurfaceTarget::TextureCubeArray) {
|
||||
params.depth *= 6;
|
||||
}
|
||||
|
|
Reference in New Issue