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 12:11:19 -0400 |
| commit | 06578e89b2598eca6c2da1cb8dcdc576aa3f632a (patch) | |
| tree | 2aadd703183d718591d538253072a03d0cfb0ceb /src/video_core/textures/decoders.cpp | |
| parent | f08d24e9c0a8dd7920ca5db5a5765b867eb1d714 (diff) | |
Implement BC6H_UF16 & BC6H_SF16 (#1092)
* Implement BC6H_UF16 & BC6H_SF16
Require by ARMS
* correct coding style
* correct coding style part 2
Diffstat (limited to 'src/video_core/textures/decoders.cpp')
| -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: |
