Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 549abe8

Browse files
committed
Fix cullFace typo in descriptor set chapter
1 parent 0a050fd commit 549abe8

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

05_Uniform_buffers/01_Descriptor_pool_and_sets.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,7 @@ visible. The problem is that because of the Y-flip we did in the projection
208208
matrix, the vertices are now being drawn in clockwise order instead of
209209
counter-clockwise order. This causes backface culling to kick in and prevents
210210
any geometry from being drawn. Go to the `createGraphicsPipeline` function and
211-
modify the `cullFace` in `VkPipelineRasterizationStateCreateInfo` to correct
211+
modify the `frontFace` in `VkPipelineRasterizationStateCreateInfo` to correct
212212
this:
213213

214214
```c++

0 commit comments

Comments
 (0)