diff options
author | ReinUsesLisp <reinuseslisp@airmail.cc> | 2020-01-16 05:19:49 +0100 |
---|---|---|
committer | ReinUsesLisp <reinuseslisp@airmail.cc> | 2020-01-16 21:29:13 +0100 |
commit | 0caab54b5d77378eefe3bcf644b0cb6e3f1050de (patch) | |
tree | f12fbee72a62d9ae521a135a0974e41450310057 /src | |
parent | Merge pull request #3308 from lioncash/private (diff) | |
download | yuzu-0caab54b5d77378eefe3bcf644b0cb6e3f1050de.tar yuzu-0caab54b5d77378eefe3bcf644b0cb6e3f1050de.tar.gz yuzu-0caab54b5d77378eefe3bcf644b0cb6e3f1050de.tar.bz2 yuzu-0caab54b5d77378eefe3bcf644b0cb6e3f1050de.tar.lz yuzu-0caab54b5d77378eefe3bcf644b0cb6e3f1050de.tar.xz yuzu-0caab54b5d77378eefe3bcf644b0cb6e3f1050de.tar.zst yuzu-0caab54b5d77378eefe3bcf644b0cb6e3f1050de.zip |
Diffstat (limited to 'src')
-rw-r--r-- | src/video_core/texture_cache/format_lookup_table.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_core/texture_cache/format_lookup_table.cpp b/src/video_core/texture_cache/format_lookup_table.cpp index 271e67533..81fb9f633 100644 --- a/src/video_core/texture_cache/format_lookup_table.cpp +++ b/src/video_core/texture_cache/format_lookup_table.cpp @@ -95,7 +95,7 @@ constexpr std::array<Table, 74> DefinitionTable = {{ {TextureFormat::ZF32, C, FLOAT, FLOAT, FLOAT, FLOAT, PixelFormat::Z32F}, {TextureFormat::Z16, C, UNORM, UNORM, UNORM, UNORM, PixelFormat::Z16}, {TextureFormat::S8Z24, C, UINT, UNORM, UNORM, UNORM, PixelFormat::S8Z24}, - {TextureFormat::ZF32_X24S8, C, UNORM, UNORM, UNORM, UNORM, PixelFormat::Z32FS8}, + {TextureFormat::ZF32_X24S8, C, FLOAT, UINT, UNORM, UNORM, PixelFormat::Z32FS8}, {TextureFormat::DXT1, C, UNORM, UNORM, UNORM, UNORM, PixelFormat::DXT1}, {TextureFormat::DXT1, S, UNORM, UNORM, UNORM, UNORM, PixelFormat::DXT1_SRGB}, |