Skip to content
Snippets Groups Projects
Commit 745d1613 authored by Wollnashorn's avatar Wollnashorn
Browse files

video_core: Disable AF for non-color image formats

parent 3e8cd91d
No related branches found
No related tags found
No related merge requests found
......@@ -77,6 +77,15 @@ bool ImageViewBase::SupportsAnisotropy() const noexcept {
case PixelFormat::R32_UINT:
case PixelFormat::R32_SINT:
case PixelFormat::G4R4_UNORM:
// Depth formats
case PixelFormat::D32_FLOAT:
case PixelFormat::D16_UNORM:
// Stencil formats
case PixelFormat::S8_UINT:
// DepthStencil formats
case PixelFormat::D24_UNORM_S8_UINT:
case PixelFormat::S8_UINT_D24_UNORM:
case PixelFormat::D32_FLOAT_S8_UINT:
return false;
default:
break;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment