Class VkFramebufferCreateInfo

All Implemented Interfaces:
AutoCloseable, NativeResource, Pointer

public class VkFramebufferCreateInfo extends Struct<VkFramebufferCreateInfo> implements NativeResource

 struct VkFramebufferCreateInfo {
     VkStructureType sType;
     void const * pNext;
     VkFramebufferCreateFlags flags;
     VkRenderPass renderPass;
     uint32_t attachmentCount;
     VkImageView const * pAttachments;
     uint32_t width;
     uint32_t height;
     uint32_t layers;
 }
  • 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.
    • RENDERPASS

      public static final int RENDERPASS
      The struct member offsets.
    • ATTACHMENTCOUNT

      public static final int ATTACHMENTCOUNT
      The struct member offsets.
    • PATTACHMENTS

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

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

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

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

    • VkFramebufferCreateInfo

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