mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-02-24 20:51:35 +00:00
[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:
parent
969678d53c
commit
1ab68ca5fd
1 changed files with 1 additions and 1 deletions
|
@ -825,7 +825,7 @@ properties = {
|
|||
);
|
||||
attributes = (
|
||||
{ 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 = {
|
||||
|
|
Loading…
Reference in a new issue