diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/video_core/renderer_vulkan/maxwell_to_vk.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/video_core/renderer_vulkan/maxwell_to_vk.cpp b/src/video_core/renderer_vulkan/maxwell_to_vk.cpp index 18aca63b9..5403c3ab7 100644 --- a/src/video_core/renderer_vulkan/maxwell_to_vk.cpp +++ b/src/video_core/renderer_vulkan/maxwell_to_vk.cpp | |||
| @@ -363,6 +363,8 @@ vk::Format VertexFormat(Maxwell::VertexAttribute::Type type, Maxwell::VertexAttr | |||
| 363 | return vk::Format::eR8G8B8A8Uint; | 363 | return vk::Format::eR8G8B8A8Uint; |
| 364 | case Maxwell::VertexAttribute::Size::Size_32: | 364 | case Maxwell::VertexAttribute::Size::Size_32: |
| 365 | return vk::Format::eR32Uint; | 365 | return vk::Format::eR32Uint; |
| 366 | case Maxwell::VertexAttribute::Size::Size_32_32_32_32: | ||
| 367 | return vk::Format::eR32G32B32A32Uint; | ||
| 366 | default: | 368 | default: |
| 367 | break; | 369 | break; |
| 368 | } | 370 | } |