Searched refs:fenceCount (Results 1 – 5 of 5) sorted by relevance
/frameworks/native/vulkan/libvulkan/ |
D | api_gen.cpp | 317 VKAPI_ATTR VkResult ResetFences(VkDevice device, uint32_t fenceCount, const VkFence* pFences); 319 VKAPI_ATTR VkResult WaitForFences(VkDevice device, uint32_t fenceCount, const VkFence* pFences, VkB… 758 VKAPI_ATTR VkResult ResetFences(VkDevice device, uint32_t fenceCount, const VkFence* pFences) { in ResetFences() argument 759 return GetData(device).dispatch.ResetFences(device, fenceCount, pFences); in ResetFences() 766 VKAPI_ATTR VkResult WaitForFences(VkDevice device, uint32_t fenceCount, const VkFence* pFences, VkB… in WaitForFences() argument 767 return GetData(device).dispatch.WaitForFences(device, fenceCount, pFences, waitAll, timeout); in WaitForFences() 1398 VKAPI_ATTR VkResult vkResetFences(VkDevice device, uint32_t fenceCount, const VkFence* pFences) { in vkResetFences() argument 1399 return vulkan::api::ResetFences(device, fenceCount, pFences); in vkResetFences() 1408 VKAPI_ATTR VkResult vkWaitForFences(VkDevice device, uint32_t fenceCount, const VkFence* pFences, V… in vkWaitForFences() argument 1409 return vulkan::api::WaitForFences(device, fenceCount, pFences, waitAll, timeout); in vkWaitForFences()
|
/frameworks/native/vulkan/nulldrv/ |
D | null_driver_gen.h | 68 VKAPI_ATTR VkResult ResetFences(VkDevice device, uint32_t fenceCount, const VkFence* pFences); 70 VKAPI_ATTR VkResult WaitForFences(VkDevice device, uint32_t fenceCount, const VkFence* pFences, VkB…
|
D | null_driver.cpp | 1140 VkResult ResetFences(VkDevice device, uint32_t fenceCount, const VkFence* pFences) { in ResetFences() argument 1149 VkResult WaitForFences(VkDevice device, uint32_t fenceCount, const VkFence* pFences, VkBool32 waitA… in WaitForFences() argument
|
/frameworks/native/vulkan/include/vulkan/ |
D | vulkan.h | 2270 typedef VkResult (VKAPI_PTR *PFN_vkResetFences)(VkDevice device, uint32_t fenceCount, const VkFence… 2272 typedef VkResult (VKAPI_PTR *PFN_vkWaitForFences)(VkDevice device, uint32_t fenceCount, const VkFen… 2568 uint32_t fenceCount, 2577 uint32_t fenceCount,
|
/frameworks/native/vulkan/api/ |
D | vulkan.api | 3307 u32 fenceCount, 3311 fences := pFences[0:fenceCount] 3312 for i in (0 .. fenceCount) { 3336 u32 fenceCount, 3342 fences := pFences[0:fenceCount] 3343 for i in (0 .. fenceCount) {
|