You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
https://docs.vulkan.org/guide/latest/swapchain_semaphore_reuse.html
A unique semaphore should be used per swapchain image, because the
presentation engine may still reference and use it before the image
index it was used with is returned out of `acquire_next_image()` again.
Alternatives include waiting for the `Fence` from
presentation in `VkSwapchainPresentFenceInfoKHR`, added by the
`VK_EXT_swapchain_maintenance1`/`VK_KHR_swapchain_maintenance1`
extension but this is less performant than just using a unique semaphore
per swapchain image.
0 commit comments