Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 26e13e4 commit ef88945Copy full SHA for ef88945
1 file changed
04_Vertex_buffers/00_Vertex_input_description.md
@@ -202,7 +202,7 @@ auto bindingDescription = Vertex::getBindingDescription();
202
auto attributeDescriptions = Vertex::getAttributeDescriptions();
203
204
vertexInputInfo.vertexBindingDescriptionCount = 1;
205
-vertexInputInfo.vertexAttributeDescriptionCount = attributeDescriptions.size();;
+vertexInputInfo.vertexAttributeDescriptionCount = attributeDescriptions.size();
206
vertexInputInfo.pVertexBindingDescriptions = &bindingDescription;
207
vertexInputInfo.pVertexAttributeDescriptions = attributeDescriptions.data();
208
```
0 commit comments