Browse Source
Merge pull request #7466 from vonchenplus/add_miss_pixel_format_mapping
Add missing pixel format mapping
pull/15/merge
bunnei
4 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
2 additions and
0 deletions
-
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): |
|
|
|
|