summaryrefslogtreecommitdiff
path: root/src/video_core/textures/decoders.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/video_core/textures/decoders.cpp')
-rw-r--r--src/video_core/textures/decoders.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/video_core/textures/decoders.cpp b/src/video_core/textures/decoders.cpp
index 272294c62..58b65de1a 100644
--- a/src/video_core/textures/decoders.cpp
+++ b/src/video_core/textures/decoders.cpp
@@ -63,6 +63,7 @@ u32 BytesPerPixel(TextureFormat format) {
63 case TextureFormat::R32_G32_B32: 63 case TextureFormat::R32_G32_B32:
64 return 12; 64 return 12;
65 case TextureFormat::ASTC_2D_4X4: 65 case TextureFormat::ASTC_2D_4X4:
66 case TextureFormat::ASTC_2D_8X8:
66 case TextureFormat::A8R8G8B8: 67 case TextureFormat::A8R8G8B8:
67 case TextureFormat::A2B10G10R10: 68 case TextureFormat::A2B10G10R10:
68 case TextureFormat::BF10GF11RF11: 69 case TextureFormat::BF10GF11RF11:
@@ -111,6 +112,7 @@ std::vector<u8> DecodeTexture(const std::vector<u8>& texture_data, TextureFormat
111 case TextureFormat::BC6H_UF16: 112 case TextureFormat::BC6H_UF16:
112 case TextureFormat::BC6H_SF16: 113 case TextureFormat::BC6H_SF16:
113 case TextureFormat::ASTC_2D_4X4: 114 case TextureFormat::ASTC_2D_4X4:
115 case TextureFormat::ASTC_2D_8X8:
114 case TextureFormat::A8R8G8B8: 116 case TextureFormat::A8R8G8B8:
115 case TextureFormat::A2B10G10R10: 117 case TextureFormat::A2B10G10R10:
116 case TextureFormat::A1B5G5R5: 118 case TextureFormat::A1B5G5R5: