Lines Matching full:present_info
853 VkResult QueuePresentKHR(VkQueue queue, const VkPresentInfoKHR* present_info) {
854 ALOGV_IF(present_info->sType != VK_STRUCTURE_TYPE_PRESENT_INFO_KHR,
856 present_info->sType);
857 ALOGV_IF(present_info->pNext, "VkPresentInfo::pNext != NULL");
863 for (uint32_t sc = 0; sc < present_info->swapchainCount; sc++) {
865 *SwapchainFromHandle(present_info->pSwapchains[sc]);
866 uint32_t image_idx = present_info->pImageIndices[sc];
874 queue, present_info->waitSemaphoreCount,
875 present_info->pWaitSemaphores, img.image, &fence);
882 present_info->pSwapchains[sc]) {
909 if (present_info->pResults)
910 present_info->pResults[sc] = swapchain_result;