[vulkan] Correct line vertex input spec

I suspect I may have done the incorrect offset for color to get a
gradient for some testing, but forgot to put it back. Or, of course, I
just completely and utterly brain-farted when writing the attribute.
This commit is contained in:
Bill Currie 2024-01-05 22:44:09 +09:00
parent 969678d53c
commit 1ab68ca5fd

View file

@ -825,7 +825,7 @@ properties = {
); );
attributes = ( attributes = (
{ location = 0; binding = 0; format = r32g32_sfloat; offset = 0; }, { location = 0; binding = 0; format = r32g32_sfloat; offset = 0; },
{ location = 1; binding = 0; format = r8g8b8a8_unorm; offset = 4; }, { location = 1; binding = 0; format = r8g8b8a8_unorm; offset = 8; },
); );
}; };
inputAssembly = { inputAssembly = {