Class VkFramebufferAttachmentsCreateInfoKHR

  • All Implemented Interfaces:
    java.lang.AutoCloseable, org.lwjgl.system.NativeResource, org.lwjgl.system.Pointer

    public class VkFramebufferAttachmentsCreateInfoKHR
    extends org.lwjgl.system.Struct
    implements org.lwjgl.system.NativeResource
    Structure specifying parameters of images that will be used with a framebuffer.
    Valid Usage (Implicit)
    See Also

    VkFramebufferAttachmentImageInfoKHR

    Member documentation

    • sType – the type of this structure.
    • pNextNULL or a pointer to an extension-specific structure.
    • attachmentImageInfoCount – the number of attachments being described.
    • pAttachmentImageInfos – an array of VkFramebufferAttachmentImageInfoKHR instances, each of which describes a number of parameters of the corresponding attachment in a render pass instance.

    Layout

    
     struct VkFramebufferAttachmentsCreateInfoKHR {
         VkStructureType sType;
         void const * pNext;
         uint32_t attachmentImageInfoCount;
         VkFramebufferAttachmentImageInfoKHR const * pAttachmentImageInfos;
     }