1// WARNING: DO NOT MODIFY! This file is automatically generated from the vk.xml registry 2[[VkAttachmentDescription,VkAttachmentDescription]] 3[source,c++] 4---- 5typedef struct VkAttachmentDescription { 6 VkAttachmentDescriptionFlags flags; 7 VkFormat format; 8 VkSampleCountFlagBits samples; 9 VkAttachmentLoadOp loadOp; 10 VkAttachmentStoreOp storeOp; 11 VkAttachmentLoadOp stencilLoadOp; 12 VkAttachmentStoreOp stencilStoreOp; 13 VkImageLayout initialLayout; 14 VkImageLayout finalLayout; 15} VkAttachmentDescription; 16---- 17