Enum
VkFramebufferCreateFlagBits
Bitmask specifying framebuffer properties
Bits which can be set in VkFramebufferCreateInfo::flags,
specifying options for framebuffers, are:
typedef enum VkFramebufferCreateFlagBits {
// Provided by extensions
VK_FRAMEBUFFER_CREATE_IMAGELESS_BIT = 0x00000001,
VK_FRAMEBUFFER_CREATE_IMAGELESS_BIT_KHR = VK_FRAMEBUFFER_CREATE_IMAGELESS_BIT,
} VkFramebufferCreateFlagBits;
pub struct FramebufferCreateFlagBits(u32);
impl FramebufferCreateFlagBits {
pub const IMAGELESS: Self = 0x00000001;
pub const IMAGELESS_KHR: Self = Self::IMAGELESS;
}
VK_FRAMEBUFFER_CREATE_IMAGELESS_BITspecifies that image views are not specified, and only attachment compatibility information will be provided via a VkFramebufferAttachmentImageInfo structure.
Parent
VK_VERSION_1_0Type
Enum