Searched refs:pFences (Results 1 – 4 of 4) sorted by relevance
/frameworks/native/vulkan/nulldrv/ |
D | null_driver_gen.h | 69 VKAPI_ATTR VkResult ResetFences(VkDevice device, uint32_t fenceCount, const VkFence* pFences); 71 VKAPI_ATTR VkResult WaitForFences(VkDevice device, uint32_t fenceCount, const VkFence* pFences, VkB…
|
D | null_driver.cpp | 1252 VkResult ResetFences(VkDevice device, uint32_t fenceCount, const VkFence* pFences) { in ResetFences() argument 1261 VkResult WaitForFences(VkDevice device, uint32_t fenceCount, const VkFence* pFences, VkBool32 waitA… in WaitForFences() argument
|
/frameworks/native/vulkan/libvulkan/ |
D | api_gen.cpp | 431 VKAPI_ATTR VkResult ResetFences(VkDevice device, uint32_t fenceCount, const VkFence* pFences); 433 VKAPI_ATTR VkResult WaitForFences(VkDevice device, uint32_t fenceCount, const VkFence* pFences, VkB… 1074 VKAPI_ATTR VkResult ResetFences(VkDevice device, uint32_t fenceCount, const VkFence* pFences) { in ResetFences() argument 1075 return GetData(device).dispatch.ResetFences(device, fenceCount, pFences); in ResetFences() 1082 VKAPI_ATTR VkResult WaitForFences(VkDevice device, uint32_t fenceCount, const VkFence* pFences, VkB… in WaitForFences() argument 1083 return GetData(device).dispatch.WaitForFences(device, fenceCount, pFences, waitAll, timeout); in WaitForFences() 2051 VKAPI_ATTR VkResult vkResetFences(VkDevice device, uint32_t fenceCount, const VkFence* pFences) { in vkResetFences() argument 2052 return vulkan::api::ResetFences(device, fenceCount, pFences); in vkResetFences() 2061 VKAPI_ATTR VkResult vkWaitForFences(VkDevice device, uint32_t fenceCount, const VkFence* pFences, V… in vkWaitForFences() argument 2062 return vulkan::api::WaitForFences(device, fenceCount, pFences, waitAll, timeout); in vkWaitForFences()
|
D | swapchain.cpp | 2627 present_fences ? present_fences->pFences[sc] : VK_NULL_HANDLE, in QueuePresentKHR()
|