Searched refs:present_info (Results 1 - 1 of 1) sorted by relevance

/external/vulkan-validation-layers/demos/smoke/
H A DShell.cpp554 VkPresentInfoKHR present_info = {}; local
555 present_info.sType = VK_STRUCTURE_TYPE_PRESENT_INFO_KHR;
556 present_info.waitSemaphoreCount = 1;
557 present_info.pWaitSemaphores = (settings_.no_render) ?
559 present_info.swapchainCount = 1;
560 present_info.pSwapchains = &ctx_.swapchain;
561 present_info.pImageIndices = &buf.image_index;
563 vk::assert_success(vk::QueuePresentKHR(ctx_.present_queue, &present_info));

Completed in 55 milliseconds