From a93ab48bc70cf6c507f4339e1a7ca598e931c6ef Mon Sep 17 00:00:00 2001 From: Zach Madsen Date: Fri, 28 Jun 2024 14:23:26 -0700 Subject: [PATCH] Remove an extra word --- .../02_Graphics_pipeline_basics/02_Fixed_functions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/en/03_Drawing_a_triangle/02_Graphics_pipeline_basics/02_Fixed_functions.md b/en/03_Drawing_a_triangle/02_Graphics_pipeline_basics/02_Fixed_functions.md index a80f72ae..5b4bfdec 100644 --- a/en/03_Drawing_a_triangle/02_Graphics_pipeline_basics/02_Fixed_functions.md +++ b/en/03_Drawing_a_triangle/02_Graphics_pipeline_basics/02_Fixed_functions.md @@ -175,7 +175,7 @@ viewportState.scissorCount = 1; viewportState.pScissors = &scissor; ``` -Independent of how you set them, it's is possible to use multiple viewports and scissor rectangles on some graphics cards, so the structure members reference an array of them. Using multiple requires enabling a GPU feature (see logical device creation). +Independent of how you set them, it's possible to use multiple viewports and scissor rectangles on some graphics cards, so the structure members reference an array of them. Using multiple requires enabling a GPU feature (see logical device creation). ## Rasterizer