Home
last modified time | relevance | path

Searched refs:m_last_present_result (Results 1 – 2 of 2) sorted by relevance

/dports/emulators/dolphin-emu/dolphin-3152428/Source/Core/VideoBackends/Vulkan/
H A DCommandBufferManager.cpp377 m_last_present_result = vkQueuePresentKHR(g_vulkan_context->GetPresentQueue(), &present_info); in SubmitCommandBuffer()
378 if (m_last_present_result != VK_SUCCESS) in SubmitCommandBuffer()
381 if (m_last_present_result != VK_ERROR_OUT_OF_DATE_KHR && in SubmitCommandBuffer()
382 m_last_present_result != VK_SUBOPTIMAL_KHR && in SubmitCommandBuffer()
383 m_last_present_result != VK_ERROR_FULL_SCREEN_EXCLUSIVE_MODE_LOST_EXT) in SubmitCommandBuffer()
385 LOG_VULKAN_ERROR(m_last_present_result, "vkQueuePresentKHR failed: "); in SubmitCommandBuffer()
391 if (m_last_present_result != VK_SUBOPTIMAL_KHR) in SubmitCommandBuffer()
H A DCommandBufferManager.h83 VkResult GetLastPresentResult() const { return m_last_present_result; } in GetLastPresentResult()
141 VkResult m_last_present_result = VK_SUCCESS; variable