C Specification
Bits which can be set in VkSemaphoreWaitInfoKHR::flags,
specifying additional parameters of a semaphore wait operation, are:
typedef enum VkSemaphoreWaitFlagBitsKHR {
VK_SEMAPHORE_WAIT_ANY_BIT_KHR = 0x00000001,
VK_SEMAPHORE_WAIT_FLAG_BITS_MAX_ENUM_KHR = 0x7FFFFFFF
} VkSemaphoreWaitFlagBitsKHR;
Description
-
VK_SEMAPHORE_WAIT_ANY_BIT_KHRspecifies that the semaphore wait condition is that at least one of the semaphores inVkSemaphoreWaitInfoKHR::pSemaphoreshas reached the value specified by the corresponding element ofVkSemaphoreWaitInfoKHR::pValues. IfVK_SEMAPHORE_WAIT_ANY_BIT_KHRis not set, the semaphore wait condition is that all of the semaphores inVkSemaphoreWaitInfoKHR::pSemaphoreshave reached the value specified by the corresponding element ofVkSemaphoreWaitInfoKHR::pValues.
See Also
Document Notes
For more information, see the Vulkan Specification
This page is extracted from the Vulkan Specification. Fixes and changes should be made to the Specification, not directly.
Copyright
Copyright (c) 2014-2019 Khronos Group. This work is licensed under a Creative Commons Attribution 4.0 International License.