Enum
VkDeviceQueueCreateFlagBits
Bitmask specifying behavior of the queue
Bits which can be set in VkDeviceQueueCreateInfo::flags,
specifying usage behavior of a queue, are:
typedef enum VkDeviceQueueCreateFlagBits {
// Provided by extensions
VK_DEVICE_QUEUE_CREATE_PROTECTED_BIT = 0x00000001,
VK_DEVICE_QUEUE_CREATE_RESERVED_1_BIT_QCOM = 0x00000002,
VK_DEVICE_QUEUE_CREATE_INTERNALLY_SYNCHRONIZED_BIT_KHR = 0x00000004,
} VkDeviceQueueCreateFlagBits;
pub struct DeviceQueueCreateFlagBits(u32);
impl DeviceQueueCreateFlagBits {
pub const PROTECTED: Self = 0x00000001;
pub const RESERVED_1_QCOM: Self = 0x00000002;
pub const INTERNALLY_SYNCHRONIZED_KHR: Self = 0x00000004;
}
VK_DEVICE_QUEUE_CREATE_PROTECTED_BITspecifies that the device queue is a protected-capable queue.VK_DEVICE_QUEUE_CREATE_INTERNALLY_SYNCHRONIZED_BIT_KHRspecifies that the device queue is internally synchronized and does not require external synchronization.
Parent
VK_VERSION_1_1Type
Enum