Searched defs:waitAll (Results 1 - 9 of 9) sorted by relevance

/external/mesa3d/src/amd/vulkan/
H A Dradv_device.c1365 VkBool32 waitAll,
1371 if (!waitAll && fenceCount > 1) {
1372 fprintf(stderr, "radv: WaitForFences without waitAll not implemented yet\n");
1361 radv_WaitForFences( VkDevice _device, uint32_t fenceCount, const VkFence* pFences, VkBool32 waitAll, uint64_t timeout) argument
/external/mesa3d/src/intel/vulkan/
H A Danv_device.c1685 VkBool32 waitAll,
1717 /* This fence is not pending. If waitAll isn't set, we can return
1720 if (!waitAll)
1737 if (!waitAll)
1681 anv_WaitForFences( VkDevice _device, uint32_t fenceCount, const VkFence* pFences, VkBool32 waitAll, uint64_t _timeout) argument
/external/vulkan-validation-layers/loader/
H A Dtrampoline.c1185 VkBool32 waitAll, uint64_t timeout) {
1190 return disp->WaitForFences(device, fenceCount, pFences, waitAll, timeout);
1184 vkWaitForFences(VkDevice device, uint32_t fenceCount, const VkFence *pFences, VkBool32 waitAll, uint64_t timeout) argument
/external/vulkan-validation-layers/tests/layers/
H A Dwrap_objects.cpp359 VKAPI_ATTR VkResult VKAPI_CALL vkWaitForFences(VkDevice device, uint32_t fenceCount, const VkFence* pFences, VkBool32 waitAll, uint64_t timeout) argument
361 VkResult result = device_dispatch_table(device)->WaitForFences(device, fenceCount, pFences, waitAll, timeout);
/external/deqp/external/vulkancts/modules/vulkan/renderpass/
H A DvktRenderPassTests.cpp417 void waitForFences (const DeviceInterface& vk, VkDevice device, deUint32 fenceCount, const VkFence* pFences, VkBool32 waitAll, deUint64 timeout) argument
419 VK_CHECK(vk.waitForFences(device, fenceCount, pFences, waitAll, timeout));
/external/vulkan-validation-layers/layers/
H A Dobject_tracker.cpp868 VKAPI_ATTR VkResult VKAPI_CALL WaitForFences(VkDevice device, uint32_t fenceCount, const VkFence *pFences, VkBool32 waitAll, argument
884 VkResult result = get_dispatch_table(ot_device_table_map, device)->WaitForFences(device, fenceCount, pFences, waitAll, timeout);
H A Dparameter_validation.cpp2162 VKAPI_ATTR VkResult VKAPI_CALL WaitForFences(VkDevice device, uint32_t fenceCount, const VkFence *pFences, VkBool32 waitAll, argument
2169 skip_call |= parameter_validation_vkWaitForFences(my_data->report_data, fenceCount, pFences, waitAll, timeout);
2172 result = get_dispatch_table(pc_device_table_map, device)->WaitForFences(device, fenceCount, pFences, waitAll, timeout);
H A Dcore_validation.cpp5302 WaitForFences(VkDevice device, uint32_t fenceCount, const VkFence *pFences, VkBool32 waitAll, uint64_t timeout) { argument
5314 VkResult result = dev_data->dispatch_table.WaitForFences(device, fenceCount, pFences, waitAll, timeout);
5319 if (waitAll || fenceCount == 1) {
/external/vulkan-validation-layers/include/vulkan/
H A Dvulkan.hpp16292 Result waitForFences( uint32_t fenceCount, const Fence* pFences, Bool32 waitAll, uint64_t timeout ) const argument
16294 return static_cast<Result>( vkWaitForFences( m_device, fenceCount, reinterpret_cast<const VkFence*>( pFences ), waitAll, timeout ) );
16298 Result waitForFences( ArrayProxy<const Fence> fences, Bool32 waitAll, uint64_t timeout ) const argument
16300 Result result = static_cast<Result>( vkWaitForFences( m_device, fences.size() , reinterpret_cast<const VkFence*>( fences.data() ), waitAll, timeout ) );

Completed in 816 milliseconds