|
|
@ -113,7 +113,9 @@ 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::TextureCubemap ||
|
|
|
|
if (params.target == SurfaceTarget::Texture2D && params.depth > 1) {
|
|
|
|
|
|
|
|
params.depth = 1;
|
|
|
|
|
|
|
|
} else if (params.target == SurfaceTarget::TextureCubemap ||
|
|
|
|
params.target == SurfaceTarget::TextureCubeArray) {
|
|
|
|
params.target == SurfaceTarget::TextureCubeArray) {
|
|
|
|
params.depth *= 6;
|
|
|
|
params.depth *= 6;
|
|
|
|
}
|
|
|
|
}
|
|
|
|