OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:present_info
(Results
1 - 3
of
3
) sorted by null
/frameworks/native/vulkan/libvulkan/
swapchain.h
36
VKAPI_ATTR VkResult QueuePresentKHR(VkQueue queue, const VkPresentInfoKHR*
present_info
);
swapchain.cpp
[
all
...]
/external/vulkan-validation-layers/demos/smoke/
Shell.cpp
554
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 129 milliseconds