InchChou

Results 2 issues of InchChou

In book 2 chapter 7.1 we introduce class `diffuse_light` and implement method `scatter()`. Book 3 Listing 44 change the signature of `scatter()` of parent class `material`, so all the derived...

Hello everyone, I was reading the [Rendering and presentation](https://vulkan-tutorial.com/Drawing_a_triangle/Drawing/Rendering_and_presentation) and [Frames in flight](https://vulkan-tutorial.com/Drawing_a_triangle/Drawing/Frames_in_flight) chapter, I have some questions about this code. ```c+ vkWaitForFences(device, 1, &inFlightFence, VK_TRUE, UINT64_MAX); vkResetFences(device, 1, &inFlightFence);...