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;
  • VK_FRAMEBUFFER_CREATE_IMAGELESS_BIT specifies that image views are not specified, and only attachment compatibility information will be provided via a VkFramebufferAttachmentImageInfo structure.