Class VkVertexInputBindingDescription2EXT

java.lang.Object
org.lwjgl.system.Pointer.Default
org.lwjgl.system.Struct<VkVertexInputBindingDescription2EXT>
org.lwjgl.vulkan.VkVertexInputBindingDescription2EXT
All Implemented Interfaces:
AutoCloseable, org.lwjgl.system.NativeResource, org.lwjgl.system.Pointer

public class VkVertexInputBindingDescription2EXT extends org.lwjgl.system.Struct<VkVertexInputBindingDescription2EXT> implements org.lwjgl.system.NativeResource
Structure specifying the extended vertex input binding description.
Valid Usage
Valid Usage (Implicit)
See Also

CmdSetVertexInputEXT

Layout


 struct VkVertexInputBindingDescription2EXT {
     VkStructureType sType();
     void * pNext();
     uint32_t binding();
     uint32_t stride();
     VkVertexInputRate inputRate();
     uint32_t divisor();
 }
  • 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.
    • BINDING

      public static final int BINDING
      The struct member offsets.
    • STRIDE

      public static final int STRIDE
      The struct member offsets.
    • INPUTRATE

      public static final int INPUTRATE
      The struct member offsets.
    • DIVISOR

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

    • VkVertexInputBindingDescription2EXT

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