unplugged-vendor/device/generic/vulkan-cereal/protocols/vulkan/api/structs/VkSubpassDescription.txt

18 lines
781 B
Plaintext

// WARNING: DO NOT MODIFY! This file is automatically generated from the vk.xml registry
[[VkSubpassDescription,VkSubpassDescription]]
[source,c++]
----
typedef struct VkSubpassDescription {
VkSubpassDescriptionFlags flags;
VkPipelineBindPoint pipelineBindPoint;
uint32_t inputAttachmentCount;
const VkAttachmentReference* pInputAttachments;
uint32_t colorAttachmentCount;
const VkAttachmentReference* pColorAttachments;
const VkAttachmentReference* pResolveAttachments;
const VkAttachmentReference* pDepthStencilAttachment;
uint32_t preserveAttachmentCount;
const uint32_t* pPreserveAttachments;
} VkSubpassDescription;
----