diff options
author | Morph <39850852+Morph1984@users.noreply.github.com> | 2021-12-11 04:44:24 +0100 |
---|---|---|
committer | Morph <39850852+Morph1984@users.noreply.github.com> | 2021-12-11 04:44:24 +0100 |
commit | 14110230c70300b9553074c38828ae2e5f98b009 (patch) | |
tree | 1fcec648b1fe88b4bc493d9f65c80719772b693b /src | |
parent | maxwell_to_vk: Add ASTC_2D_8X5_UNORM (diff) | |
download | yuzu-14110230c70300b9553074c38828ae2e5f98b009.tar yuzu-14110230c70300b9553074c38828ae2e5f98b009.tar.gz yuzu-14110230c70300b9553074c38828ae2e5f98b009.tar.bz2 yuzu-14110230c70300b9553074c38828ae2e5f98b009.tar.lz yuzu-14110230c70300b9553074c38828ae2e5f98b009.tar.xz yuzu-14110230c70300b9553074c38828ae2e5f98b009.tar.zst yuzu-14110230c70300b9553074c38828ae2e5f98b009.zip |
Diffstat (limited to 'src')
-rw-r--r-- | src/video_core/renderer_vulkan/maxwell_to_vk.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_core/renderer_vulkan/maxwell_to_vk.cpp b/src/video_core/renderer_vulkan/maxwell_to_vk.cpp index 68ab662d5..751e4792b 100644 --- a/src/video_core/renderer_vulkan/maxwell_to_vk.cpp +++ b/src/video_core/renderer_vulkan/maxwell_to_vk.cpp @@ -177,7 +177,7 @@ struct FormatTuple { {VK_FORMAT_R32_SINT, Attachable | Storage}, // R32_SINT {VK_FORMAT_ASTC_8x8_UNORM_BLOCK}, // ASTC_2D_8X8_UNORM {VK_FORMAT_ASTC_8x5_UNORM_BLOCK}, // ASTC_2D_8X5_UNORM - {VK_FORMAT_UNDEFINED}, // ASTC_2D_5X4_UNORM + {VK_FORMAT_ASTC_5x4_UNORM_BLOCK}, // ASTC_2D_5X4_UNORM {VK_FORMAT_B8G8R8A8_SRGB, Attachable}, // B8G8R8A8_SRGB {VK_FORMAT_BC1_RGBA_SRGB_BLOCK}, // BC1_RGBA_SRGB {VK_FORMAT_BC2_SRGB_BLOCK}, // BC2_SRGB |