rasterizer_cache: Drop warning in IntervalHasInvalidPixelFormat to debug
This commit is contained in:
parent
cc5a88a864
commit
f478e3093f
1 changed files with 1 additions and 1 deletions
|
@ -844,7 +844,7 @@ bool RasterizerCacheOpenGL::IntervalHasInvalidPixelFormat(SurfaceParams& params,
|
||||||
for (const auto& set : RangeFromInterval(surface_cache, interval))
|
for (const auto& set : RangeFromInterval(surface_cache, interval))
|
||||||
for (const auto& surface : set.second)
|
for (const auto& surface : set.second)
|
||||||
if (surface->pixel_format == PixelFormat::Invalid && surface->type != SurfaceType::Fill) {
|
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 true;
|
||||||
}
|
}
|
||||||
return false;
|
return false;
|
||||||
|
|
Loading…
Reference in a new issue