summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar makigumo2020-03-13 11:37:24 +0100
committerGravatar GitHub2020-03-13 11:37:24 +0100
commit753bc2026f55dd1b2e77686bb90753dbb74c7873 (patch)
tree9b551d4d2e5fdfb7131c4631feb5070156f5b2ea
parentmaxwell_to_vk: add vertex format eA2B10G10R10UnormPack32 (diff)
downloadyuzu-753bc2026f55dd1b2e77686bb90753dbb74c7873.tar.gz
yuzu-753bc2026f55dd1b2e77686bb90753dbb74c7873.tar.xz
yuzu-753bc2026f55dd1b2e77686bb90753dbb74c7873.zip
fix formatting
-rw-r--r--src/video_core/renderer_vulkan/maxwell_to_vk.cpp2
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 a89139589..0bab5d1c0 100644
--- a/src/video_core/renderer_vulkan/maxwell_to_vk.cpp
+++ b/src/video_core/renderer_vulkan/maxwell_to_vk.cpp
@@ -333,7 +333,7 @@ vk::Format VertexFormat(Maxwell::VertexAttribute::Type type, Maxwell::VertexAttr
333 return vk::Format::eR16G16B16A16Unorm; 333 return vk::Format::eR16G16B16A16Unorm;
334 case Maxwell::VertexAttribute::Size::Size_10_10_10_2: 334 case Maxwell::VertexAttribute::Size::Size_10_10_10_2:
335 return vk::Format::eA2B10G10R10UnormPack32; 335 return vk::Format::eA2B10G10R10UnormPack32;
336 default: 336 default:
337 break; 337 break;
338 } 338 }
339 break; 339 break;