Class VkFramebufferAttachmentImageInfo

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

public class VkFramebufferAttachmentImageInfo extends Struct<VkFramebufferAttachmentImageInfo> implements NativeResource

 struct VkFramebufferAttachmentImageInfo {
     VkStructureType sType;
     void const * pNext;
     VkImageCreateFlags flags;
     VkImageUsageFlags usage;
     uint32_t width;
     uint32_t height;
     uint32_t layerCount;
     uint32_t viewFormatCount;
     VkFormat const * pViewFormats;
 }
  • 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.
    • FLAGS

      public static final int FLAGS
      The struct member offsets.
    • USAGE

      public static final int USAGE
      The struct member offsets.
    • WIDTH

      public static final int WIDTH
      The struct member offsets.
    • HEIGHT

      public static final int HEIGHT
      The struct member offsets.
    • LAYERCOUNT

      public static final int LAYERCOUNT
      The struct member offsets.
    • VIEWFORMATCOUNT

      public static final int VIEWFORMATCOUNT
      The struct member offsets.
    • PVIEWFORMATS

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

    • VkFramebufferAttachmentImageInfo

      public VkFramebufferAttachmentImageInfo(ByteBuffer container)
      Creates a VkFramebufferAttachmentImageInfo 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