Skip to content

Commit 7908b22

Browse files
committed
Chapter 15 and 16
1 parent d196d10 commit 7908b22

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

53 files changed

+2999
-298
lines changed

bookcontents/.gitignore

Lines changed: 0 additions & 1 deletion
This file was deleted.

bookcontents/.vscode/settings.json

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{
2+
"cSpell.words": [
3+
"assimp",
4+
"bitangents",
5+
"calloc",
6+
"GLSL",
7+
"LWJGL",
8+
"malloc",
9+
"SPIR",
10+
"tinylog",
11+
"vulkanb"
12+
]
13+
}

bookcontents/chapter-14/chapter-14.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -414,7 +414,7 @@ public class LightRender {
414414
TextureSampler sampler) {
415415
DescAllocator descAllocator = vkCtx.getDescAllocator();
416416
Device device = vkCtx.getDevice();
417-
DescSet descSet = descAllocator.addDescSets(device, DESC_ID_ATT, 1, descSetLayout)[0];
417+
DescSet descSet = descAllocator.addDescSet(device, DESC_ID_ATT, descSetLayout);
418418
List<ImageView> imageViews = new ArrayList<>();
419419
attachments.forEach(a -> imageViews.add(a.getImageView()));
420420
descSet.setImages(device, imageViews, sampler, 0);

bookcontents/chapter-15/chapter-15.md

Lines changed: 1044 additions & 1 deletion
Large diffs are not rendered by default.
624 KB
Loading
2.51 MB
Loading
3.91 MB
Loading

bookcontents/chapter-16/chapter-16.md

Lines changed: 1508 additions & 1 deletion
Large diffs are not rendered by default.
Lines changed: 250 additions & 0 deletions
Loading
3.66 MB
Loading

0 commit comments

Comments
 (0)