Class VkSubpassDescription

All Implemented Interfaces:
AutoCloseable, NativeResource, Pointer

public class VkSubpassDescription extends Struct<VkSubpassDescription> implements NativeResource

 struct VkSubpassDescription {
     VkSubpassDescriptionFlags flags;
     VkPipelineBindPoint pipelineBindPoint;
     uint32_t inputAttachmentCount;
     {@link VkAttachmentReference VkAttachmentReference} const * pInputAttachments;
     uint32_t colorAttachmentCount;
     {@link VkAttachmentReference VkAttachmentReference} const * pColorAttachments;
     {@link VkAttachmentReference VkAttachmentReference} const * pResolveAttachments;
     {@link VkAttachmentReference VkAttachmentReference} const * pDepthStencilAttachment;
     uint32_t preserveAttachmentCount;
     uint32_t const * pPreserveAttachments;
 }