1
0
mirror of https://git.suyu.dev/suyu/suyu synced 2025-08-27 22:46:30 -05:00

renderer_(gl/vk): Implement ASTC_10x6_UNORM

- Used by Monster Hunter Rise Update 10.0.2
This commit is contained in:
Morph
2022-06-30 22:04:23 -04:00
parent 770611fdf3
commit aec129c1ab
7 changed files with 16 additions and 1 deletions

View File

@@ -247,6 +247,7 @@ bool IsPixelFormatASTC(PixelFormat format) {
case PixelFormat::ASTC_2D_10X8_SRGB:
case PixelFormat::ASTC_2D_6X6_UNORM:
case PixelFormat::ASTC_2D_6X6_SRGB:
case PixelFormat::ASTC_2D_10X6_UNORM:
case PixelFormat::ASTC_2D_10X10_UNORM:
case PixelFormat::ASTC_2D_10X10_SRGB:
case PixelFormat::ASTC_2D_12X12_UNORM: