diff options
author | liamwhite <liamwhite@users.noreply.github.com> | 2023-09-18 15:31:05 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-18 15:31:05 +0200 |
commit | 974380fe10cc4f10beaa87f96d0b050b06a6e9a8 (patch) | |
tree | ac8e51295a9fbf7aea3c2a8f52cbdbb4314a704a /src/video_core/texture_cache | |
parent | Merge pull request #11520 from Kelebek1/estimated_time (diff) | |
parent | Needed to make this an extra case so it didnt also start asserting in BOTW. (diff) | |
download | yuzu-974380fe10cc4f10beaa87f96d0b050b06a6e9a8.tar yuzu-974380fe10cc4f10beaa87f96d0b050b06a6e9a8.tar.gz yuzu-974380fe10cc4f10beaa87f96d0b050b06a6e9a8.tar.bz2 yuzu-974380fe10cc4f10beaa87f96d0b050b06a6e9a8.tar.lz yuzu-974380fe10cc4f10beaa87f96d0b050b06a6e9a8.tar.xz yuzu-974380fe10cc4f10beaa87f96d0b050b06a6e9a8.tar.zst yuzu-974380fe10cc4f10beaa87f96d0b050b06a6e9a8.zip |
Diffstat (limited to 'src/video_core/texture_cache')
-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 11ced6c38..56307d030 100644 --- a/src/video_core/texture_cache/format_lookup_table.cpp +++ b/src/video_core/texture_cache/format_lookup_table.cpp @@ -140,6 +140,8 @@ PixelFormat PixelFormatFromTextureInfo(TextureFormat format, ComponentType red, return PixelFormat::D32_FLOAT; case Hash(TextureFormat::Z16, UNORM): return PixelFormat::D16_UNORM; + case Hash(TextureFormat::Z16, UNORM, UINT, UINT, UINT, LINEAR): + return PixelFormat::D16_UNORM; case Hash(TextureFormat::Z24S8, UINT, UNORM, UNORM, UNORM, LINEAR): return PixelFormat::S8_UINT_D24_UNORM; case Hash(TextureFormat::Z24S8, UINT, UNORM, UINT, UINT, LINEAR): |