Skip to content

Commit 2f5a425

Browse files
authored
Fix missing '{' (#299)
1 parent dcfd879 commit 2f5a425

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.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ and blend constants. If you want to use dynamic state and keep these properties
1313
then you'll have to fill in a `VkPipelineDynamicStateCreateInfo` structure like this:
1414

1515
```c++
16-
std::vector<VkDynamicState> dynamicStates =
16+
std::vector<VkDynamicState> dynamicStates = {
1717
VK_DYNAMIC_STATE_VIEWPORT,
1818
VK_DYNAMIC_STATE_SCISSOR
1919
};

0 commit comments

Comments
 (0)