summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/video_core/renderer_vulkan/maxwell_to_vk.cpp4
1 files changed, 4 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 59e963263..0e2e5e6c7 100644
--- a/src/video_core/renderer_vulkan/maxwell_to_vk.cpp
+++ b/src/video_core/renderer_vulkan/maxwell_to_vk.cpp
@@ -367,6 +367,10 @@ vk::Format VertexFormat(Maxwell::VertexAttribute::Type type, Maxwell::VertexAttr
367 return vk::Format::eR8G8B8A8Uint; 367 return vk::Format::eR8G8B8A8Uint;
368 case Maxwell::VertexAttribute::Size::Size_32: 368 case Maxwell::VertexAttribute::Size::Size_32:
369 return vk::Format::eR32Uint; 369 return vk::Format::eR32Uint;
370 case Maxwell::VertexAttribute::Size::Size_32_32:
371 return vk::Format::eR32G32Uint;
372 case Maxwell::VertexAttribute::Size::Size_32_32_32:
373 return vk::Format::eR32G32B32Uint;
370 case Maxwell::VertexAttribute::Size::Size_32_32_32_32: 374 case Maxwell::VertexAttribute::Size::Size_32_32_32_32:
371 return vk::Format::eR32G32B32A32Uint; 375 return vk::Format::eR32G32B32A32Uint;
372 default: 376 default: