video_core: Disable AF for non-color image formats

This commit is contained in:
Wollnashorn 2023-06-15 20:59:33 +02:00
parent 3e8cd91d54
commit 745d16132b
1 changed files with 9 additions and 0 deletions

View File

@ -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;