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

Skip to content

Commit f63ce7c

Browse files
committed
Fix VkShaderStageFlagBits enum name
1 parent e584625 commit f63ce7c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

05_Uniform_buffers/00_Descriptor_layout_and_buffer.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ uboLayoutBinding.stageFlags = VK_SHADER_STAGE_VERTEX_BIT;
162162
```
163163

164164
We also need to specify in which shader stages the descriptor is going to be
165-
referenced. The `stageFlags` field can be a combination of `VkShaderStage` flags
165+
referenced. The `stageFlags` field can be a combination of `VkShaderStageFlagBits` values
166166
or the value `VK_SHADER_STAGE_ALL_GRAPHICS`. In our case, we're only referencing
167167
the descriptor from the vertex shader.
168168

0 commit comments

Comments
 (0)