diff options
author | greggameplayer <33609333+greggameplayer@users.noreply.github.com> | 2018-08-31 18:11:19 +0200 |
---|---|---|
committer | bunnei <bunneidev@gmail.com> | 2018-08-31 18:11:19 +0200 |
commit | 06578e89b2598eca6c2da1cb8dcdc576aa3f632a (patch) | |
tree | 2aadd703183d718591d538253072a03d0cfb0ceb /src/video_core/textures | |
parent | Merge pull request #1204 from lioncash/pimpl (diff) | |
download | yuzu-06578e89b2598eca6c2da1cb8dcdc576aa3f632a.tar yuzu-06578e89b2598eca6c2da1cb8dcdc576aa3f632a.tar.gz yuzu-06578e89b2598eca6c2da1cb8dcdc576aa3f632a.tar.bz2 yuzu-06578e89b2598eca6c2da1cb8dcdc576aa3f632a.tar.lz yuzu-06578e89b2598eca6c2da1cb8dcdc576aa3f632a.tar.xz yuzu-06578e89b2598eca6c2da1cb8dcdc576aa3f632a.tar.zst yuzu-06578e89b2598eca6c2da1cb8dcdc576aa3f632a.zip |
Diffstat (limited to 'src/video_core/textures')
-rw-r--r-- | src/video_core/textures/decoders.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/video_core/textures/decoders.cpp b/src/video_core/textures/decoders.cpp index 70746a34e..272294c62 100644 --- a/src/video_core/textures/decoders.cpp +++ b/src/video_core/textures/decoders.cpp @@ -56,6 +56,8 @@ u32 BytesPerPixel(TextureFormat format) { case TextureFormat::DXT45: case TextureFormat::DXN2: case TextureFormat::BC7U: + case TextureFormat::BC6H_UF16: + case TextureFormat::BC6H_SF16: // In this case a 'pixel' actually refers to a 4x4 tile. return 16; case TextureFormat::R32_G32_B32: @@ -106,6 +108,8 @@ std::vector<u8> DecodeTexture(const std::vector<u8>& texture_data, TextureFormat case TextureFormat::DXN1: case TextureFormat::DXN2: case TextureFormat::BC7U: + case TextureFormat::BC6H_UF16: + case TextureFormat::BC6H_SF16: case TextureFormat::ASTC_2D_4X4: case TextureFormat::A8R8G8B8: case TextureFormat::A2B10G10R10: |