Enum
VkEventCreateFlagBits
Event creation flag bits
typedef enum VkEventCreateFlagBits {
// Provided by extensions
VK_EVENT_CREATE_DEVICE_ONLY_BIT = 0x00000001,
VK_EVENT_CREATE_DEVICE_ONLY_BIT_KHR = VK_EVENT_CREATE_DEVICE_ONLY_BIT,
} VkEventCreateFlagBits;
pub struct EventCreateFlagBits(u32);
impl EventCreateFlagBits {
pub const DEVICE_ONLY: Self = 0x00000001;
pub const DEVICE_ONLY_KHR: Self = Self::DEVICE_ONLY;
}
VK_EVENT_CREATE_DEVICE_ONLY_BITspecifies that host event commands will not be used with this event.
Parent
VK_VERSION_1_0Type
Enum