1// WARNING: DO NOT MODIFY! This file is automatically generated from the vk.xml registry 2[[VkFramebufferCreateInfo,VkFramebufferCreateInfo]] 3[source,c++] 4---- 5typedef struct VkFramebufferCreateInfo { 6 VkStructureType sType; 7 const void* pNext; 8 VkFramebufferCreateFlags flags; 9 VkRenderPass renderPass; 10 uint32_t attachmentCount; 11 const VkImageView* pAttachments; 12 uint32_t width; 13 uint32_t height; 14 uint32_t layers; 15} VkFramebufferCreateInfo; 16---- 17