MCPcopy Create free account
hub / github.com/KhronosGroup/Vulkan-Samples / wait

Method wait

framework/fence_pool.cpp:69–77  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

67}
68
69VkResult FencePool::wait(uint64_t timeout) const
70{
71 if (active_fence_count < 1 || fences.empty())
72 {
73 return VK_SUCCESS;
74 }
75
76 return vkWaitForFences(device.get_handle(), active_fence_count, fences.data(), true, timeout);
77}
78
79VkResult FencePool::reset()
80{

Callers 15

load_sceneMethod · 0.80
load_modelMethod · 0.80
GuiMethod · 0.80
resetMethod · 0.80
resizeMethod · 0.80
on_update_ui_overlayMethod · 0.80
load_sceneMethod · 0.80
initialize_resourcesMethod · 0.80
renderMethod · 0.80
run_gpu_cullMethod · 0.80
cpu_cullMethod · 0.80

Calls 2

emptyMethod · 0.80
get_handleMethod · 0.45

Tested by

no test coverage detected