Function Prototype
vkCreateFramebuffer
Create a new framebuffer object
To create a framebuffer, call:
VkResult vkCreateFramebuffer(
VkDevice device,
const VkFramebufferCreateInfo* pCreateInfo,
const VkAllocationCallbacks* pAllocator,
VkFramebuffer* pFramebuffer);
deviceis the logical device that creates the framebuffer.pCreateInfois a pointer to a VkFramebufferCreateInfo structure describing additional information about framebuffer creation.pAllocatorcontrols host memory allocation as described in the Memory Allocation chapter.pFramebufferis a pointer to a VkFramebuffer handle in which the resulting framebuffer object is returned.
Valid Usage
VUID-vkCreateFramebuffer-device-10002
device must support at least one queue family with the
VK_QUEUE_GRAPHICS_BIT capability
VUID-vkCreateFramebuffer-pCreateInfo-02777
If pCreateInfo→flags does not include
VK_FRAMEBUFFER_CREATE_IMAGELESS_BIT, and attachmentCount is
not 0, each element of pCreateInfo→pAttachments must have been
created on device
Valid Usage (Implicit)
VUID-vkCreateFramebuffer-device-parameter
device must be a valid VkDevice handle
VUID-vkCreateFramebuffer-pCreateInfo-parameter
pCreateInfo must be a valid pointer to a valid VkFramebufferCreateInfo structure
VUID-vkCreateFramebuffer-pAllocator-parameter
If pAllocator is not NULL, pAllocator must be a valid pointer to a valid VkAllocationCallbacks structure
VUID-vkCreateFramebuffer-pFramebuffer-parameter
pFramebuffer must be a valid pointer to a VkFramebuffer handle