Merge pull request #726 from FrickHazard/patch-1

Minor comment change
This commit is contained in:
Sascha Willems 2020-06-24 20:40:21 +02:00 committed by GitHub
commit 968ccc0df4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -632,7 +632,7 @@ public:
VulkanExampleBase::submitFrame();
// Submit compute commands
// Use a fence to ensure that compute command buffer has finished executin before using it again
// Use a fence to ensure that the compute command buffer has finished executing before using it again
vkWaitForFences(device, 1, &compute.fence, VK_TRUE, UINT64_MAX);
vkResetFences(device, 1, &compute.fence);