VulkanTutorial
VulkanTutorial copied to clipboard
Confusing naming in Frames in flight
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.