diff options
| author | 2022-08-19 16:04:40 -0700 | |
|---|---|---|
| committer | 2022-08-19 16:04:40 -0700 | |
| commit | e9b7263cfdd13c88f4ed7db25a912749243c7f0e (patch) | |
| tree | 768905e5bafbb9cb6ee9d2cca721b9e5811fb3f6 /src | |
| parent | Merge pull request #8772 from liushuyu/remove-common-intrin (diff) | |
| parent | video_core: implement R16G16B16X16 texture format (diff) | |
| download | yuzu-e9b7263cfdd13c88f4ed7db25a912749243c7f0e.tar.gz yuzu-e9b7263cfdd13c88f4ed7db25a912749243c7f0e.tar.xz yuzu-e9b7263cfdd13c88f4ed7db25a912749243c7f0e.zip | |
Merge pull request #8791 from liamwhite/r16g16b16x16
video_core: implement R16G16B16X16 texture format
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 7d1431b6d..bdb71dc53 100644 --- a/src/video_core/renderer_vulkan/maxwell_to_vk.cpp +++ b/src/video_core/renderer_vulkan/maxwell_to_vk.cpp | |||
| @@ -172,7 +172,7 @@ struct FormatTuple { | |||
| 172 | {VK_FORMAT_R8G8_SINT, Attachable | Storage}, // R8G8_SINT | 172 | {VK_FORMAT_R8G8_SINT, Attachable | Storage}, // R8G8_SINT |
| 173 | {VK_FORMAT_R8G8_UINT, Attachable | Storage}, // R8G8_UINT | 173 | {VK_FORMAT_R8G8_UINT, Attachable | Storage}, // R8G8_UINT |
| 174 | {VK_FORMAT_R32G32_UINT, Attachable | Storage}, // R32G32_UINT | 174 | {VK_FORMAT_R32G32_UINT, Attachable | Storage}, // R32G32_UINT |
| 175 | {VK_FORMAT_UNDEFINED}, // R16G16B16X16_FLOAT | 175 | {VK_FORMAT_R16G16B16A16_SFLOAT, Attachable | Storage}, // R16G16B16X16_FLOAT |
| 176 | {VK_FORMAT_R32_UINT, Attachable | Storage}, // R32_UINT | 176 | {VK_FORMAT_R32_UINT, Attachable | Storage}, // R32_UINT |
| 177 | {VK_FORMAT_R32_SINT, Attachable | Storage}, // R32_SINT | 177 | {VK_FORMAT_R32_SINT, Attachable | Storage}, // R32_SINT |
| 178 | {VK_FORMAT_ASTC_8x8_UNORM_BLOCK}, // ASTC_2D_8X8_UNORM | 178 | {VK_FORMAT_ASTC_8x8_UNORM_BLOCK}, // ASTC_2D_8X8_UNORM |