diff options
| -rw-r--r-- | src/video_core/renderer_vulkan/maxwell_to_vk.cpp | 4 | 
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              return vk::Format::eR8G8B8A8Uint;          case Maxwell::VertexAttribute::Size::Size_32:              return vk::Format::eR32Uint; +        case Maxwell::VertexAttribute::Size::Size_32_32: +            return vk::Format::eR32G32Uint; +        case Maxwell::VertexAttribute::Size::Size_32_32_32: +            return vk::Format::eR32G32B32Uint;          case Maxwell::VertexAttribute::Size::Size_32_32_32_32:              return vk::Format::eR32G32B32A32Uint;          default: | 
