fix vertex input attribute description

This commit is contained in:
jacekpoz 2024-08-13 01:13:39 +02:00
parent 44204b5677
commit 70ef0e030f
Signed by: poz
SSH key fingerprint: SHA256:JyLeVWE4bF3tDnFeUpUaJsPsNlJyBldDGV/dIKSLyN8

View file

@ -110,7 +110,7 @@ PTK_ARRAY(VkVertexInputAttributeDescription) m_vertex_attribute_descriptions = P
(VkVertexInputAttributeDescription){
.location = 3,
.binding = 0,
.format = VK_FORMAT_R32G32_SINT,
.format = VK_FORMAT_R32G32_SFLOAT,
.offset = offsetof(Vertex, uv),
},
});