Skip to content
Snippets Groups Projects
Commit ce6a9169 authored by Eric Engestrom's avatar Eric Engestrom :no_entry: Committed by Emil Velikov
Browse files

vulkan/wsi: fix s/,/;/ typo


Fixes: 59e58c34 "vulkan/wsi: Only wait on semaphores on the first swapchain"
Signed-off-by: default avatarEric Engestrom <eric.engestrom@intel.com>
Reviewed-by: default avatarJason Ekstrand <jason@jlekstrand.net>
(cherry picked from commit e0f1f74e)
parent bcc83326
No related branches found
No related tags found
No related merge requests found
......@@ -954,8 +954,8 @@ wsi_common_queue_present(const struct wsi_device *wsi,
/* We only need/want to wait on semaphores once. After that, we're
* guaranteed ordering since it all happens on the same queue.
*/
submit_info.waitSemaphoreCount = pPresentInfo->waitSemaphoreCount,
submit_info.pWaitSemaphores = pPresentInfo->pWaitSemaphores,
submit_info.waitSemaphoreCount = pPresentInfo->waitSemaphoreCount;
submit_info.pWaitSemaphores = pPresentInfo->pWaitSemaphores;
/* Set up the pWaitDstStageMasks */
stage_flags = vk_alloc(&swapchain->alloc,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment