Vulkan: trouble understanding cycling of framebuffers
问题 In Vulkan, A semaphore( A ) and a fence( X ) can be passed to vkAcquireNextImageKHR . That semaphore( A ) is subsequently passed to vkQueueSubmit , to wait until the image is released by the Presentation Engine (PE). A fence( Y ) can also be passed to vkQueueSubmit . Client code can check when the submission has completed by checking fence( Y ). When fence( Y ) signals, this means the PE can display the image. My question: How do I know when the PE has finished using the image after a call to