Enum
VkInstanceCreateFlagBits
Bitmask specifying behavior of the instance
typedef enum VkInstanceCreateFlagBits {
// Provided by extensions
VK_INSTANCE_CREATE_ENUMERATE_PORTABILITY_BIT_KHR = 0x00000001,
VK_INSTANCE_CREATE_RESERVED_616_BIT_EXT = 0x00000002,
} VkInstanceCreateFlagBits;
pub struct InstanceCreateFlagBits(u32);
impl InstanceCreateFlagBits {
pub const ENUMERATE_PORTABILITY_KHR: Self = 0x00000001;
pub const RESERVED_616_EXT: Self = 0x00000002;
}
VK_INSTANCE_CREATE_ENUMERATE_PORTABILITY_BIT_KHRspecifies that the instance will enumerate available Vulkan Portability-compliant physical devices and groups in addition to the Vulkan physical devices and groups that are enumerated by default.
Parent
VK_VERSION_1_0Type
Enum