Home
last modified time | relevance | path

Searched refs:fenceCount (Results 1 – 3 of 3) sorted by relevance

/frameworks/native/vulkan/nulldrv/
Dnull_driver_gen.h69 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…
Dnull_driver.cpp1221 VkResult ResetFences(VkDevice device, uint32_t fenceCount, const VkFence* pFences) { in ResetFences() argument
1230 VkResult WaitForFences(VkDevice device, uint32_t fenceCount, const VkFence* pFences, VkBool32 waitA… in WaitForFences() argument
/frameworks/native/vulkan/libvulkan/
Dapi_gen.cpp381 VKAPI_ATTR VkResult ResetFences(VkDevice device, uint32_t fenceCount, const VkFence* pFences);
383 VKAPI_ATTR VkResult WaitForFences(VkDevice device, uint32_t fenceCount, const VkFence* pFences, VkB…
916 VKAPI_ATTR VkResult ResetFences(VkDevice device, uint32_t fenceCount, const VkFence* pFences) { in ResetFences() argument
917 return GetData(device).dispatch.ResetFences(device, fenceCount, pFences); in ResetFences()
924 VKAPI_ATTR VkResult WaitForFences(VkDevice device, uint32_t fenceCount, const VkFence* pFences, VkB… in WaitForFences() argument
925 return GetData(device).dispatch.WaitForFences(device, fenceCount, pFences, waitAll, timeout); in WaitForFences()
1693 VKAPI_ATTR VkResult vkResetFences(VkDevice device, uint32_t fenceCount, const VkFence* pFences) { in vkResetFences() argument
1694 return vulkan::api::ResetFences(device, fenceCount, pFences); in vkResetFences()
1703 VKAPI_ATTR VkResult vkWaitForFences(VkDevice device, uint32_t fenceCount, const VkFence* pFences, V… in vkWaitForFences() argument
1704 return vulkan::api::WaitForFences(device, fenceCount, pFences, waitAll, timeout); in vkWaitForFences()