Home
last modified time | relevance | path

Searched refs:present_queue (Results 1 – 5 of 5) sorted by relevance

/external/mesa3d/src/vulkan/wsi/
Dwsi_common_x11.c762 struct wsi_queue present_queue; member
1135 wsi_queue_push(&chain->present_queue, image_index); in x11_queue_present()
1155 result = wsi_queue_pull(&chain->present_queue, &image_index, INT64_MAX); in x11_manage_fifo_queues()
1428 wsi_queue_push(&chain->present_queue, UINT32_MAX); in x11_swapchain_destroy()
1433 wsi_queue_destroy(&chain->present_queue); in x11_swapchain_destroy()
1618 ret = wsi_queue_init(&chain->present_queue, chain->base.image_count + 1); in x11_surface_create_swapchain()
1629 wsi_queue_destroy(&chain->present_queue); in x11_surface_create_swapchain()
1640 wsi_queue_destroy(&chain->present_queue); in x11_surface_create_swapchain()
/external/mesa3d/src/vulkan/overlay-layer/
Doverlay.cpp1154 struct queue_data *present_queue, in render_swapchain_display() argument
1198 imb.srcQueueFamilyIndex = present_queue->family_index; in render_swapchain_display()
1326 if (device_data->graphic_queue->family_index != present_queue->family_index) in render_swapchain_display()
1344 imb.dstQueueFamilyIndex = present_queue->family_index; in render_swapchain_display()
1361 if (n_wait_semaphores == 0 && device_data->graphic_queue->queue != present_queue->queue) { in render_swapchain_display()
1371 device_data->vtable.QueueSubmit(present_queue->queue, 1, &submit_info, VK_NULL_HANDLE); in render_swapchain_display()
1824 struct queue_data *present_queue, in before_present() argument
1836 draw = render_swapchain_display(swapchain_data, present_queue, in before_present()
/external/angle/src/tests/test_utils/third_party/
Dvulkan_command_buffer_utils.h163 VkQueue present_queue; member
Dvulkan_command_buffer_utils.cpp791 info.present_queue = info.graphics_queue; in init_device_queue()
795 vkGetDeviceQueue(info.device, info.present_queue_family_index, 0, &info.present_queue); in init_device_queue()
/external/angle/src/tests/perf_tests/
DVulkanCommandBufferPerf.cpp236 res = vkQueuePresentKHR(info.present_queue, &present); in Present()