From 5d80c672c84569fcda7bf1e244770864a3242e1e Mon Sep 17 00:00:00 2001 From: boludoz Date: Thu, 28 Sep 2023 22:58:07 -0300 Subject: [PATCH] Fixed clang --- src/video_core/texture_cache/image_info.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/video_core/texture_cache/image_info.cpp b/src/video_core/texture_cache/image_info.cpp index 51c1576aca..79c66e2d93 100644 --- a/src/video_core/texture_cache/image_info.cpp +++ b/src/video_core/texture_cache/image_info.cpp @@ -197,7 +197,8 @@ ImageInfo::ImageInfo(const Maxwell3D::Regs::Zeta& zt, const Maxwell3D::Regs::Zet type = ImageType::e2D; if (zt_size.dim_control == Maxwell3D::Regs::ZetaSize::DimensionControl::DefineArraySize) { resources.layers = zt_size.depth; - // TODO: Problematic downscaling here, check if it is possible add more "filters" for avoid bugs. + // TODO: Problematic downscaling here, check if it is possible add more "filters" for + // avoid bugs. downscaleable = size.height > DownscaleHeightThresholdTwo; } else if (zt_size.dim_control == Maxwell3D::Regs::ZetaSize::DimensionControl::ArraySizeIsOne) {