Class VkPhysicalDeviceVertexAttributeDivisorFeaturesEXT

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

    public class VkPhysicalDeviceVertexAttributeDivisorFeaturesEXT
    extends org.lwjgl.system.Struct
    implements org.lwjgl.system.NativeResource
    Structure describing if fetching of vertex attribute may be repeated for instanced rendering.
    Description

    If the VkPhysicalDeviceVertexAttributeDivisorFeaturesEXT structure is included in the pNext chain of VkPhysicalDeviceFeatures2, it is filled with values indicating the implementation-dependent behavior. VkPhysicalDeviceVertexAttributeDivisorFeaturesEXT can also be used in pNext chain of VkDeviceCreateInfo to enable the feature.

    Valid Usage (Implicit)

    Member documentation

    • sType – the type of this structure.
    • pNextNULL or a pointer to an extension-specific structure.
    • vertexAttributeInstanceRateDivisor – specifies whether vertex attribute fetching may be repeated in case of instanced rendering.
    • vertexAttributeInstanceRateZeroDivisor – specifies whether a zero value for VkVertexInputBindingDivisorDescriptionEXT::divisor is supported.

    Layout

    
     struct VkPhysicalDeviceVertexAttributeDivisorFeaturesEXT {
         VkStructureType sType;
         void * pNext;
         VkBool32 vertexAttributeInstanceRateDivisor;
         VkBool32 vertexAttributeInstanceRateZeroDivisor;
     }