Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Don't end command buffers before resetting them (google#969)
This isn't necessary. The Vulkan spec has only one restriction on the state of a command buffer when vkResetCommandBuffer is called: "commandBuffer must not be in the pending state" So as long as it's not currently waiting to be executed on the GPU, we can reset it. By contrast, vkEndCommandBuffer is tightly restricted and can only be called when a command buffer is in the recording state which it's not guaranteed to be when the guard is destroyed. This fixes a crash that happens in certain Amber-based Vulkan CTS tests after a VK_ERROR_DEVICE_LOST because Amber is calling vkEndCommandBuffer on command buffers that were never begun.
- Loading branch information