diff options
| author | 2018-05-27 12:14:08 -0400 | |
|---|---|---|
| committer | 2018-05-27 12:14:08 -0400 | |
| commit | 7f155ba713c75f22e78068980d595ffc04b044fe (patch) | |
| tree | 196ce0da28e2de37eb69df9b9fdbf3389a4bd3ac /src/video_core/textures/decoders.cpp | |
| parent | Merge pull request #475 from ogniK5377/nvos-getconfig (diff) | |
| parent | GPU: Implemented the A1B5G5R5 texture format (0x14) (diff) | |
| download | yuzu-7f155ba713c75f22e78068980d595ffc04b044fe.tar.gz yuzu-7f155ba713c75f22e78068980d595ffc04b044fe.tar.xz yuzu-7f155ba713c75f22e78068980d595ffc04b044fe.zip | |
Merge pull request #476 from Subv/a1bgr5
GPU: Implemented the A1B5G5R5 texture format (0x14)
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 8b39b2bdf..ceb760e0f 100644 --- a/src/video_core/textures/decoders.cpp +++ b/src/video_core/textures/decoders.cpp | |||
| @@ -55,6 +55,7 @@ u32 BytesPerPixel(TextureFormat format) { | |||
| 55 | case TextureFormat::A8R8G8B8: | 55 | case TextureFormat::A8R8G8B8: |
| 56 | case TextureFormat::A2B10G10R10: | 56 | case TextureFormat::A2B10G10R10: |
| 57 | return 4; | 57 | return 4; |
| 58 | case TextureFormat::A1B5G5R5: | ||
| 58 | case TextureFormat::B5G6R5: | 59 | case TextureFormat::B5G6R5: |
| 59 | return 2; | 60 | return 2; |
| 60 | default: | 61 | default: |
| @@ -80,6 +81,7 @@ std::vector<u8> UnswizzleTexture(VAddr address, TextureFormat format, u32 width, | |||
| 80 | break; | 81 | break; |
| 81 | case TextureFormat::A8R8G8B8: | 82 | case TextureFormat::A8R8G8B8: |
| 82 | case TextureFormat::A2B10G10R10: | 83 | case TextureFormat::A2B10G10R10: |
| 84 | case TextureFormat::A1B5G5R5: | ||
| 83 | case TextureFormat::B5G6R5: | 85 | case TextureFormat::B5G6R5: |
| 84 | CopySwizzledData(width, height, bytes_per_pixel, bytes_per_pixel, data, | 86 | CopySwizzledData(width, height, bytes_per_pixel, bytes_per_pixel, data, |
| 85 | unswizzled_data.data(), true, block_height); | 87 | unswizzled_data.data(), true, block_height); |
| @@ -103,6 +105,7 @@ std::vector<u8> DecodeTexture(const std::vector<u8>& texture_data, TextureFormat | |||
| 103 | case TextureFormat::DXT45: | 105 | case TextureFormat::DXT45: |
| 104 | case TextureFormat::A8R8G8B8: | 106 | case TextureFormat::A8R8G8B8: |
| 105 | case TextureFormat::A2B10G10R10: | 107 | case TextureFormat::A2B10G10R10: |
| 108 | case TextureFormat::A1B5G5R5: | ||
| 106 | case TextureFormat::B5G6R5: | 109 | case TextureFormat::B5G6R5: |
| 107 | // TODO(Subv): For the time being just forward the same data without any decoding. | 110 | // TODO(Subv): For the time being just forward the same data without any decoding. |
| 108 | rgba_data = texture_data; | 111 | rgba_data = texture_data; |