MCPcopy Create free account
hub / github.com/KhronosGroup/OpenCL-CTS / wait

Method wait

test_conformance/common/vulkan_wrapper/vulkan_wrapper.cpp:834–837  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

832VulkanFence::~VulkanFence() { vkDestroyFence(device, fence, nullptr); }
833
834void VulkanFence::reset() { vkResetFences(device, 1, &fence); }
835
836void VulkanFence::wait()
837{
838 vkWaitForFences(device, 1, &fence, VK_TRUE, UINT64_MAX);
839}
840

Calls

no outgoing calls