diff options
author | bunnei <bunneidev@gmail.com> | 2021-11-29 15:19:15 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-29 15:19:15 -0800 |
commit | 051e63c9a1dac59d89a79ac253f5d595cd695fc3 (patch) | |
tree | 6c414f34cd82c9b352bb7865c079726817637630 /src | |
parent | 614702488fc5ceb965d51b64091e249ffb892e6a (diff) | |
parent | 524a9baa7ea33125d5e6ba48f277c81fb7a612e3 (diff) |
Merge pull request #7466 from vonchenplus/add_miss_pixel_format_mapping
Add missing pixel format mapping
Diffstat (limited to 'src')
-rw-r--r-- | src/video_core/texture_cache/format_lookup_table.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/video_core/texture_cache/format_lookup_table.cpp b/src/video_core/texture_cache/format_lookup_table.cpp index ddfb726fe6..afa807d5d3 100644 --- a/src/video_core/texture_cache/format_lookup_table.cpp +++ b/src/video_core/texture_cache/format_lookup_table.cpp @@ -139,6 +139,8 @@ PixelFormat PixelFormatFromTextureInfo(TextureFormat format, ComponentType red, return PixelFormat::D16_UNORM; case Hash(TextureFormat::S8D24, UINT, UNORM, UNORM, UNORM, LINEAR): return PixelFormat::S8_UINT_D24_UNORM; + case Hash(TextureFormat::S8D24, UINT, UNORM, UINT, UINT, LINEAR): + return PixelFormat::S8_UINT_D24_UNORM; case Hash(TextureFormat::R8G24, UINT, UNORM, UNORM, UNORM, LINEAR): return PixelFormat::S8_UINT_D24_UNORM; case Hash(TextureFormat::D32S8, FLOAT, UINT, UNORM, UNORM, LINEAR): |