Enum
VkSemaphoreWaitFlagBits
Bitmask specifying additional parameters of a semaphore wait operation
Bits which can be set in VkSemaphoreWaitInfo::flags, specifying
additional parameters of a semaphore wait operation, are:
typedef enum VkSemaphoreWaitFlagBits {
VK_SEMAPHORE_WAIT_ANY_BIT = 0x00000001,
// Provided by extensions
VK_SEMAPHORE_WAIT_ANY_BIT_KHR = VK_SEMAPHORE_WAIT_ANY_BIT,
} VkSemaphoreWaitFlagBits;
pub struct SemaphoreWaitFlagBits(u32);
impl SemaphoreWaitFlagBits {
pub const ANY: Self = 0x00000001;
pub const ANY_KHR: Self = Self::ANY;
}
#define VkSemaphoreWaitFlagBitsKHR VkSemaphoreWaitFlagBits
const SemaphoreWaitFlagBitsKHR: _ = vk::SemaphoreWaitFlagBits;
VK_SEMAPHORE_WAIT_ANY_BITspecifies that the semaphore wait condition is that at least one of the semaphores inVkSemaphoreWaitInfo::pSemaphoreshas reached the value specified by the corresponding element ofVkSemaphoreWaitInfo::pValues. IfVK_SEMAPHORE_WAIT_ANY_BITis not set, the semaphore wait condition is that all of the semaphores inVkSemaphoreWaitInfo::pSemaphoreshave reached the value specified by the corresponding element ofVkSemaphoreWaitInfo::pValues.
Parent
VK_VERSION_1_2Type
Enum