Class VkRenderPassInputAttachmentAspectCreateInfo

  • All Implemented Interfaces:
    java.lang.AutoCloseable, org.lwjgl.system.NativeResource, org.lwjgl.system.Pointer
    Direct Known Subclasses:
    VkRenderPassInputAttachmentAspectCreateInfoKHR

    public class VkRenderPassInputAttachmentAspectCreateInfo
    extends org.lwjgl.system.Struct
    implements org.lwjgl.system.NativeResource
    Structure specifying, for a given subpass/input attachment pair, which aspect can be read.
    Valid Usage (Implicit)
    See Also

    VkInputAttachmentAspectReference

    Member documentation

    • sType – the type of this structure.
    • pNextNULL or a pointer to an extension-specific structure.
    • aspectReferenceCount – the number of elements in the pAspectReferences array.
    • pAspectReferences – points to an array of aspectReferenceCount number of VkInputAttachmentAspectReference structures describing which aspect(s) can be accessed for a given input attachment within a given subpass.

    Layout

    
     struct VkRenderPassInputAttachmentAspectCreateInfo {
         VkStructureType sType;
         void const * pNext;
         uint32_t aspectReferenceCount;
         VkInputAttachmentAspectReference const * pAspectReferences;
     }