Skip to content

Commit 03c98a3

Browse files
authored
just added a missing word (#317)
1 parent d555474 commit 03c98a3

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
@@ -164,7 +164,7 @@ The actual viewport(s) and scissor rectangle(s) will then later be set up at dra
164164
With dynamic state it's even possible to specify different viewports and or scissor rectangles within a single command buffer.
165165

166166
Without dynamic state, the viewport and scissor rectangle need to be set in the pipeline using the `VkPipelineViewportStateCreateInfo` struct. This makes the viewport and scissor rectangle for this pipeline immutable.
167-
Any changes required to these values would require a new pipeline to created with the new values.
167+
Any changes required to these values would require a new pipeline to be created with the new values.
168168

169169
```c++
170170
VkPipelineViewportStateCreateInfo viewportState{};

0 commit comments

Comments
 (0)