summaryrefslogtreecommitdiffstats
path: root/src/video_core/texture_cache/surface_params.cpp
diff options
context:
space:
mode:
authorFernando Sahmkow <fsahmkow27@gmail.com>2019-07-14 14:41:06 +0200
committerFernandoS27 <fsahmkow27@gmail.com>2019-07-14 18:00:32 +0200
commit0f54b541f4877eda87ad968708fa38ce604c3a80 (patch)
treef8ef9261aa047c70f0dd5205edb9fecb5f0b8f96 /src/video_core/texture_cache/surface_params.cpp
parentTexture_Cache: Force Framebuffer reset if an active render target is unregistered. (diff)
downloadyuzu-0f54b541f4877eda87ad968708fa38ce604c3a80.tar
yuzu-0f54b541f4877eda87ad968708fa38ce604c3a80.tar.gz
yuzu-0f54b541f4877eda87ad968708fa38ce604c3a80.tar.bz2
yuzu-0f54b541f4877eda87ad968708fa38ce604c3a80.tar.lz
yuzu-0f54b541f4877eda87ad968708fa38ce604c3a80.tar.xz
yuzu-0f54b541f4877eda87ad968708fa38ce604c3a80.tar.zst
yuzu-0f54b541f4877eda87ad968708fa38ce604c3a80.zip
Diffstat (limited to '')
-rw-r--r--src/video_core/texture_cache/surface_params.cpp9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/video_core/texture_cache/surface_params.cpp b/src/video_core/texture_cache/surface_params.cpp
index df9260859..33c94daa8 100644
--- a/src/video_core/texture_cache/surface_params.cpp
+++ b/src/video_core/texture_cache/surface_params.cpp
@@ -294,13 +294,14 @@ std::size_t SurfaceParams::GetInnerMipmapMemorySize(u32 level, bool as_host_size
const u32 height{GetMipmapSize(uncompressed, GetMipHeight(level), GetDefaultBlockHeight())};
const u32 depth{is_layered ? 1U : GetMipDepth(level)};
if (is_tiled) {
- return Tegra::Texture::CalculateSize(!as_host_size, GetBytesPerPixel(), width, height, depth,
- GetMipBlockHeight(level), GetMipBlockDepth(level));
+ return Tegra::Texture::CalculateSize(!as_host_size, GetBytesPerPixel(), width, height,
+ depth, GetMipBlockHeight(level),
+ GetMipBlockDepth(level));
} else {
if (as_host_size || IsBuffer()) {
- return GetBytesPerPixel()*width*height*depth;
+ return GetBytesPerPixel() * width * height * depth;
} else {
- return pitch*height*depth;
+ return pitch * height * depth;
}
}
}