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

Skip to content

Commit 7855bc2

Browse files
committed
Fix formatting
1 parent 2bc5611 commit 7855bc2

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

09_Generating_Mipmaps.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -249,12 +249,12 @@ To see the results of this chapter, we need to choose values for our `textureSam
249249

250250
```c++
251251
void createTextureSampler() {
252-
...
253-
samplerInfo.mipmapMode = VK_SAMPLER_MIPMAP_MODE_LINEAR;
254-
samplerInfo.minLod = 0; // Optional
255-
samplerInfo.maxLod = static_cast<float>(mipLevels);
256-
samplerInfo.mipLodBias = 0; // Optional
257-
...
252+
...
253+
samplerInfo.mipmapMode = VK_SAMPLER_MIPMAP_MODE_LINEAR;
254+
samplerInfo.minLod = 0; // Optional
255+
samplerInfo.maxLod = static_cast<float>(mipLevels);
256+
samplerInfo.mipLodBias = 0; // Optional
257+
...
258258
}
259259
```
260260

0 commit comments

Comments
 (0)