From f478e3093f77aa4eb66493926382374272d3f60c Mon Sep 17 00:00:00 2001 From: GPUCode <47210458+GPUCode@users.noreply.github.com> Date: Sun, 21 Aug 2022 22:27:33 +0300 Subject: [PATCH] rasterizer_cache: Drop warning in IntervalHasInvalidPixelFormat to debug --- src/video_core/rasterizer_cache/rasterizer_cache.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/video_core/rasterizer_cache/rasterizer_cache.cpp b/src/video_core/rasterizer_cache/rasterizer_cache.cpp index f9eb4be63..8050e82e9 100644 --- a/src/video_core/rasterizer_cache/rasterizer_cache.cpp +++ b/src/video_core/rasterizer_cache/rasterizer_cache.cpp @@ -844,7 +844,7 @@ bool RasterizerCacheOpenGL::IntervalHasInvalidPixelFormat(SurfaceParams& params, for (const auto& set : RangeFromInterval(surface_cache, interval)) for (const auto& surface : set.second) if (surface->pixel_format == PixelFormat::Invalid && surface->type != SurfaceType::Fill) { - LOG_WARNING(Render_OpenGL, "Surface {:#x} found with invalid pixel format", surface->addr); + LOG_DEBUG(Render_OpenGL, "Surface {:#x} found with invalid pixel format", surface->addr); return true; } return false;