From 2985056340b04c81df6afcf841dd541c94204817 Mon Sep 17 00:00:00 2001 From: Subv Date: Wed, 18 Apr 2018 18:11:14 -0500 Subject: GPU: Implemented the B5G6R5 format. --- src/video_core/textures/decoders.cpp | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/video_core/textures/decoders.cpp') diff --git a/src/video_core/textures/decoders.cpp b/src/video_core/textures/decoders.cpp index 9c2a10d2e..f4c7e40df 100644 --- a/src/video_core/textures/decoders.cpp +++ b/src/video_core/textures/decoders.cpp @@ -50,6 +50,8 @@ u32 BytesPerPixel(TextureFormat format) { return 8; case TextureFormat::A8R8G8B8: return 4; + case TextureFormat::B5G6R5: + return 2; default: UNIMPLEMENTED_MSG("Format not implemented"); break; @@ -70,6 +72,7 @@ std::vector UnswizzleTexture(VAddr address, TextureFormat format, u32 width, unswizzled_data.data(), true, block_height); break; case TextureFormat::A8R8G8B8: + case TextureFormat::B5G6R5: CopySwizzledData(width, height, bytes_per_pixel, bytes_per_pixel, data, unswizzled_data.data(), true, block_height); break; @@ -89,6 +92,7 @@ std::vector DecodeTexture(const std::vector& texture_data, TextureFormat switch (format) { case TextureFormat::DXT1: case TextureFormat::A8R8G8B8: + case TextureFormat::B5G6R5: // TODO(Subv): For the time being just forward the same data without any decoding. rgba_data = texture_data; break; -- cgit v1.2.3