diff options
| author | 2020-03-07 19:51:33 -0500 | |
|---|---|---|
| committer | 2020-03-07 19:51:33 -0500 | |
| commit | 662feb8c1c5760167413e707af812b59fb43ca8b (patch) | |
| tree | 099a2e27baf0f3312971592ee060c6257848fdd2 | |
| parent | Merge pull request #3463 from ReinUsesLisp/vk-toctou (diff) | |
| parent | maxwell_to_vk: Remove Storage capability for A1B5G5R5U (diff) | |
| download | yuzu-662feb8c1c5760167413e707af812b59fb43ca8b.tar.gz yuzu-662feb8c1c5760167413e707af812b59fb43ca8b.tar.xz yuzu-662feb8c1c5760167413e707af812b59fb43ca8b.zip | |
Merge pull request #3481 from ReinUsesLisp/abgr5-storage
maxwell_to_vk: Remove Storage capability for A1B5G5R5U
| -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 { | |||
| 120 | {vk::Format::eA8B8G8R8UintPack32, Attachable | Storage}, // ABGR8UI | 120 | {vk::Format::eA8B8G8R8UintPack32, Attachable | Storage}, // ABGR8UI |
| 121 | {vk::Format::eB5G6R5UnormPack16, {}}, // B5G6R5U | 121 | {vk::Format::eB5G6R5UnormPack16, {}}, // B5G6R5U |
| 122 | {vk::Format::eA2B10G10R10UnormPack32, Attachable | Storage}, // A2B10G10R10U | 122 | {vk::Format::eA2B10G10R10UnormPack32, Attachable | Storage}, // A2B10G10R10U |
| 123 | {vk::Format::eA1R5G5B5UnormPack16, Attachable | Storage}, // A1B5G5R5U (flipped with swizzle) | 123 | {vk::Format::eA1R5G5B5UnormPack16, Attachable}, // A1B5G5R5U (flipped with swizzle) |
| 124 | {vk::Format::eR8Unorm, Attachable | Storage}, // R8U | 124 | {vk::Format::eR8Unorm, Attachable | Storage}, // R8U |
| 125 | {vk::Format::eR8Uint, Attachable | Storage}, // R8UI | 125 | {vk::Format::eR8Uint, Attachable | Storage}, // R8UI |
| 126 | {vk::Format::eR16G16B16A16Sfloat, Attachable | Storage}, // RGBA16F | 126 | {vk::Format::eR16G16B16A16Sfloat, Attachable | Storage}, // RGBA16F |