vkQueueWaitIdle
vkQueueWaitIdle is a function in the Vulkan API that is used to synchronize the host and a Vulkan queue. When this function is called, it blocks the host until all previously submitted commands to the specified queue have completed execution. This is useful for ensuring that all operations on a queue have finished before proceeding with further actions, such as destroying resources or submitting new commands.
The function takes a single parameter, which is the handle to the Vulkan queue to wait on.
vkQueueWaitIdle is a blocking call, meaning that it will halt the execution of the host thread until
In summary, vkQueueWaitIdle is a synchronization function in Vulkan that blocks the host until all previously