Class VkSubpassDescription2

All Implemented Interfaces:
AutoCloseable, NativeResource, Pointer
Direct Known Subclasses:
VkSubpassDescription2KHR

public class VkSubpassDescription2 extends Struct<VkSubpassDescription2> implements NativeResource

 struct VkSubpassDescription2 {
     VkStructureType sType;
     void const * pNext;
     VkSubpassDescriptionFlags flags;
     VkPipelineBindPoint pipelineBindPoint;
     uint32_t viewMask;
     uint32_t inputAttachmentCount;
     {@link VkAttachmentReference2 VkAttachmentReference2} const * pInputAttachments;
     uint32_t colorAttachmentCount;
     {@link VkAttachmentReference2 VkAttachmentReference2} const * pColorAttachments;
     {@link VkAttachmentReference2 VkAttachmentReference2} const * pResolveAttachments;
     {@link VkAttachmentReference2 VkAttachmentReference2} const * pDepthStencilAttachment;
     uint32_t preserveAttachmentCount;
     uint32_t const * pPreserveAttachments;
 }