diff options
author | bunnei <bunneidev@gmail.com> | 2018-07-26 07:30:25 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-26 07:30:25 +0200 |
commit | 31642ae2ee83d9426238c1a57d71c5de1ddd4d55 (patch) | |
tree | adce82ed1dd45bacecb4510c1733581cbac3ad94 /src/video_core/textures/decoders.cpp | |
parent | Merge pull request #828 from lioncash/ldr (diff) | |
parent | Implement R16_G16 (diff) | |
download | yuzu-31642ae2ee83d9426238c1a57d71c5de1ddd4d55.tar yuzu-31642ae2ee83d9426238c1a57d71c5de1ddd4d55.tar.gz yuzu-31642ae2ee83d9426238c1a57d71c5de1ddd4d55.tar.bz2 yuzu-31642ae2ee83d9426238c1a57d71c5de1ddd4d55.tar.lz yuzu-31642ae2ee83d9426238c1a57d71c5de1ddd4d55.tar.xz yuzu-31642ae2ee83d9426238c1a57d71c5de1ddd4d55.tar.zst yuzu-31642ae2ee83d9426238c1a57d71c5de1ddd4d55.zip |
Diffstat (limited to 'src/video_core/textures/decoders.cpp')
-rw-r--r-- | src/video_core/textures/decoders.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/video_core/textures/decoders.cpp b/src/video_core/textures/decoders.cpp index 50c5a56f6..d794f8402 100644 --- a/src/video_core/textures/decoders.cpp +++ b/src/video_core/textures/decoders.cpp @@ -62,6 +62,7 @@ u32 BytesPerPixel(TextureFormat format) { case TextureFormat::A2B10G10R10: case TextureFormat::BF10GF11RF11: case TextureFormat::R32: + case TextureFormat::R16_G16: return 4; case TextureFormat::A1B5G5R5: case TextureFormat::B5G6R5: @@ -127,6 +128,7 @@ std::vector<u8> UnswizzleTexture(VAddr address, TextureFormat format, u32 width, case TextureFormat::R32_G32: case TextureFormat::R32: case TextureFormat::R16: + case TextureFormat::R16_G16: case TextureFormat::BF10GF11RF11: case TextureFormat::ASTC_2D_4X4: CopySwizzledData(width, height, bytes_per_pixel, bytes_per_pixel, data, @@ -187,6 +189,7 @@ std::vector<u8> DecodeTexture(const std::vector<u8>& texture_data, TextureFormat case TextureFormat::R32_G32: case TextureFormat::R32: case TextureFormat::R16: + case TextureFormat::R16_G16: // TODO(Subv): For the time being just forward the same data without any decoding. rgba_data = texture_data; break; |