diff options
author | ReinUsesLisp <reinuseslisp@airmail.cc> | 2020-03-06 09:06:51 +0100 |
---|---|---|
committer | ReinUsesLisp <reinuseslisp@airmail.cc> | 2020-03-06 22:47:27 +0100 |
commit | aa6fe3f1aa7faf2cd9a458e3df56e1b029790e0c (patch) | |
tree | 42a26a663017ab578534094f452317d5657e7afd | |
parent | Merge pull request #3479 from jroweboy/dont-log-on-no-input (diff) | |
download | yuzu-aa6fe3f1aa7faf2cd9a458e3df56e1b029790e0c.tar yuzu-aa6fe3f1aa7faf2cd9a458e3df56e1b029790e0c.tar.gz yuzu-aa6fe3f1aa7faf2cd9a458e3df56e1b029790e0c.tar.bz2 yuzu-aa6fe3f1aa7faf2cd9a458e3df56e1b029790e0c.tar.lz yuzu-aa6fe3f1aa7faf2cd9a458e3df56e1b029790e0c.tar.xz yuzu-aa6fe3f1aa7faf2cd9a458e3df56e1b029790e0c.tar.zst yuzu-aa6fe3f1aa7faf2cd9a458e3df56e1b029790e0c.zip |
-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 aad0c895b..948d67d89 100644 --- a/src/video_core/renderer_vulkan/maxwell_to_vk.cpp +++ b/src/video_core/renderer_vulkan/maxwell_to_vk.cpp @@ -120,7 +120,7 @@ struct FormatTuple { {vk::Format::eA8B8G8R8UintPack32, Attachable | Storage}, // ABGR8UI {vk::Format::eB5G6R5UnormPack16, {}}, // B5G6R5U {vk::Format::eA2B10G10R10UnormPack32, Attachable | Storage}, // A2B10G10R10U - {vk::Format::eA1R5G5B5UnormPack16, Attachable | Storage}, // A1B5G5R5U (flipped with swizzle) + {vk::Format::eA1R5G5B5UnormPack16, Attachable}, // A1B5G5R5U (flipped with swizzle) {vk::Format::eR8Unorm, Attachable | Storage}, // R8U {vk::Format::eR8Uint, Attachable | Storage}, // R8UI {vk::Format::eR16G16B16A16Sfloat, Attachable | Storage}, // RGBA16F |