Overv / VulkanTutorial

Tutorial for the Vulkan graphics and compute API
https://vulkan-tutorial.com
Creative Commons Attribution Share Alike 4.0 International
3.15k stars 516 forks source link

Confusing naming in Frames in flight #245

Open DannyParker0001 opened 3 years ago

DannyParker0001 commented 3 years ago

In the Submitting the command buffer section There is submitInfo.pWaitSemaphores = waitSemaphores; then submitInfo.pSignalSemaphores = signalSemaphores; which makes sense, wait = wait, signal = signal. presentInfo.pWaitSemaphores = signalSemaphores; wait = signal and that was terrible to debug.