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

Skip to content

Commit 6c3ee2c

Browse files
committed
Updated references to multisampling in other chapters.
1 parent f85e351 commit 6c3ee2c

2 files changed

Lines changed: 2 additions & 3 deletions

File tree

03_Drawing_a_triangle/02_Graphics_pipeline_basics/02_Fixed_functions.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -218,8 +218,7 @@ multisampling.alphaToCoverageEnable = VK_FALSE; // Optional
218218
multisampling.alphaToOneEnable = VK_FALSE; // Optional
219219
```
220220

221-
In this tutorial we'll not be using multisampling, but feel free to experiment
222-
with it. See the specification for the meaning of each parameter.
221+
We'll revisit multisampling in later chapter, for now let's keep it disabled.
223222

224223
## Depth and stencil testing
225224

03_Drawing_a_triangle/02_Graphics_pipeline_basics/03_Render_passes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ void createRenderPass() {
4242
```
4343

4444
The `format` of the color attachment should match the format of the swap chain
45-
images, and we're not doing anything with multisampling, so we'll stick to 1
45+
images, and we're not doing anything with multisampling yet, so we'll stick to 1
4646
sample.
4747

4848
```c++

0 commit comments

Comments
 (0)