Class VkRenderingAttachmentInfo

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

public class VkRenderingAttachmentInfo extends Struct<VkRenderingAttachmentInfo> implements NativeResource

 struct VkRenderingAttachmentInfo {
     VkStructureType sType;
     void const * pNext;
     VkImageView imageView;
     VkImageLayout imageLayout;
     VkResolveModeFlagBits resolveMode;
     VkImageView resolveImageView;
     VkImageLayout resolveImageLayout;
     VkAttachmentLoadOp loadOp;
     VkAttachmentStoreOp storeOp;
     {@link VkClearValue VkClearValue} clearValue;
 }
  • Field Details

    • SIZEOF

      public static final int SIZEOF
      The struct size in bytes.
    • ALIGNOF

      public static final int ALIGNOF
      The struct alignment in bytes.
    • STYPE

      public static final int STYPE
      The struct member offsets.
    • PNEXT

      public static final int PNEXT
      The struct member offsets.
    • IMAGEVIEW

      public static final int IMAGEVIEW
      The struct member offsets.
    • IMAGELAYOUT

      public static final int IMAGELAYOUT
      The struct member offsets.
    • RESOLVEMODE

      public static final int RESOLVEMODE
      The struct member offsets.
    • RESOLVEIMAGEVIEW

      public static final int RESOLVEIMAGEVIEW
      The struct member offsets.
    • RESOLVEIMAGELAYOUT

      public static final int RESOLVEIMAGELAYOUT
      The struct member offsets.
    • LOADOP

      public static final int LOADOP
      The struct member offsets.
    • STOREOP

      public static final int STOREOP
      The struct member offsets.
    • CLEARVALUE

      public static final int CLEARVALUE
      The struct member offsets.
  • Constructor Details

    • VkRenderingAttachmentInfo

      public VkRenderingAttachmentInfo(ByteBuffer container)
      Creates a VkRenderingAttachmentInfo instance at the current position of the specified ByteBuffer container. Changes to the buffer's content will be visible to the struct instance and vice versa.

      The created instance holds a strong reference to the container object.

  • Method Details