Class VkPipelineVertexInputDivisorStateCreateInfoEXT

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

    public class VkPipelineVertexInputDivisorStateCreateInfoEXT
    extends org.lwjgl.system.Struct
    implements org.lwjgl.system.NativeResource
    Structure specifying vertex attributes assignment during instanced rendering.
    Valid Usage (Implicit)
    See Also

    VkVertexInputBindingDivisorDescriptionEXT

    Member documentation

    • sType – the type of this structure
    • pNextNULL or a pointer to an extension-specific structure
    • vertexBindingDivisorCount – the number of elements in the pVertexBindingDivisors array.
    • pVertexBindingDivisors – a pointer to an array of VkVertexInputBindingDivisorDescriptionEXT structures, which specifies the divisor value for each binding.

    Layout

    
     struct VkPipelineVertexInputDivisorStateCreateInfoEXT {
         VkStructureType sType;
         void const * pNext;
         uint32_t vertexBindingDivisorCount;
         VkVertexInputBindingDivisorDescriptionEXT const * pVertexBindingDivisors;
     }