Skip to content

Commit 50e3fb6

Browse files
Merge pull request #48 from wet-dog/patch-1
Fix Markdown typo in 02_Fixed_functions.adoc
2 parents 3583130 + 4134ea0 commit 50e3fb6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

en/03_Drawing_a_triangle/02_Graphics_pipeline_basics/02_Fixed_functions.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ The former is specified in the `topology` member and can have values like:
6161
* `VK_PRIMITIVE_TOPOLOGY_LINE_LIST`: line from every 2 vertices without reuse
6262
* `VK_PRIMITIVE_TOPOLOGY_LINE_STRIP`: the end vertex of every line is used as start vertex for the next line
6363
* `VK_PRIMITIVE_TOPOLOGY_TRIANGLE_LIST`: triangle from every 3 vertices without reuse
64-
* `VK_PRIMITIVE_TOPOLOGY_TRIANGLE_STRIP `: the second and third vertex of every triangle are used as first two vertices of the next triangle
64+
* `VK_PRIMITIVE_TOPOLOGY_TRIANGLE_STRIP`: the second and third vertex of every triangle are used as first two vertices of the next triangle
6565

6666
Normally, the vertices are loaded from the vertex buffer by index in sequential order, but with an _element buffer_ you can specify the indices to use yourself.
6767
This allows you to perform optimizations like reusing vertices.

0 commit comments

Comments
 (0)