1
0
mirror of https://github.com/elima/gpu-playground.git synced 2025-06-05 23:16:23 +00:00

vulkan-minimal: Removes incorrect assertion

vkAcquireNextImageKHR can return several other values depending on
swapchain state.
This commit is contained in:
Eduardo Lima Mitev 2016-11-10 10:37:10 +01:00
parent be8660abc4
commit d125302c86

View File

@ -867,8 +867,6 @@ main (int32_t argc, char* argv[])
continue;
}
assert (result == VK_SUCCESS);
/* submit the command buffer to the graphics queue */
VkSemaphore wait_semaphores[] = {image_available_semaphore};
VkSemaphore signal_semaphores[] = {render_finished_semaphore};