Class VkSubpassDescription2KHR

java.lang.Object
org.lwjgl.system.Pointer.Default
org.lwjgl.system.Struct<VkSubpassDescription2>
org.lwjgl.vulkan.VkSubpassDescription2
org.lwjgl.vulkan.VkSubpassDescription2KHR
All Implemented Interfaces:
AutoCloseable, org.lwjgl.system.NativeResource, org.lwjgl.system.Pointer

public class VkSubpassDescription2KHR extends VkSubpassDescription2
See VkSubpassDescription2.

Layout


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