summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMorph <39850852+Morph1984@users.noreply.github.com>2022-10-21 07:54:44 +0200
committerMorph <39850852+Morph1984@users.noreply.github.com>2022-10-21 07:54:57 +0200
commitf16db300c6117da0286a5504cd3605e6aceaf40f (patch)
treef25091afaa3ca95e9652a60eaa6c60fd683beba9
parentMerge pull request #9088 from Fdawgs/chore/images (diff)
downloadyuzu-f16db300c6117da0286a5504cd3605e6aceaf40f.tar
yuzu-f16db300c6117da0286a5504cd3605e6aceaf40f.tar.gz
yuzu-f16db300c6117da0286a5504cd3605e6aceaf40f.tar.bz2
yuzu-f16db300c6117da0286a5504cd3605e6aceaf40f.tar.lz
yuzu-f16db300c6117da0286a5504cd3605e6aceaf40f.tar.xz
yuzu-f16db300c6117da0286a5504cd3605e6aceaf40f.tar.zst
yuzu-f16db300c6117da0286a5504cd3605e6aceaf40f.zip
-rw-r--r--src/video_core/texture_cache/format_lookup_table.cpp2
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 ad935d386..08aa8ca33 100644
--- a/src/video_core/texture_cache/format_lookup_table.cpp
+++ b/src/video_core/texture_cache/format_lookup_table.cpp
@@ -150,6 +150,8 @@ PixelFormat PixelFormatFromTextureInfo(TextureFormat format, ComponentType red,
return PixelFormat::D24_UNORM_S8_UINT;
case Hash(TextureFormat::D32S8, FLOAT, UINT, UNORM, UNORM, LINEAR):
return PixelFormat::D32_FLOAT_S8_UINT;
+ case Hash(TextureFormat::R32_B24G8, FLOAT, UINT, UNORM, UNORM, LINEAR):
+ return PixelFormat::D32_FLOAT_S8_UINT;
case Hash(TextureFormat::BC1_RGBA, UNORM, LINEAR):
return PixelFormat::BC1_RGBA_UNORM;
case Hash(TextureFormat::BC1_RGBA, UNORM, SRGB):