• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1// WARNING: DO NOT MODIFY! This file is automatically generated from the vk.xml registry
2[[VkSubpassDescription,VkSubpassDescription]]
3[source,c++]
4----
5typedef struct VkSubpassDescription {
6    VkSubpassDescriptionFlags       flags;
7    VkPipelineBindPoint             pipelineBindPoint;
8    uint32_t                        inputAttachmentCount;
9    const VkAttachmentReference*    pInputAttachments;
10    uint32_t                        colorAttachmentCount;
11    const VkAttachmentReference*    pColorAttachments;
12    const VkAttachmentReference*    pResolveAttachments;
13    const VkAttachmentReference*    pDepthStencilAttachment;
14    uint32_t                        preserveAttachmentCount;
15    const uint32_t*                 pPreserveAttachments;
16} VkSubpassDescription;
17----
18