Class VkDeviceGeneratedCommandsLimitsNVX

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


    public class VkDeviceGeneratedCommandsLimitsNVX
    extends org.lwjgl.system.Struct
    implements org.lwjgl.system.NativeResource
    Structure specifying physical device limits.
    Valid Usage (Implicit)
    See Also

    GetPhysicalDeviceGeneratedCommandsPropertiesNVX

    Member documentation

    • sType – the type of this structure.
    • pNextNULL or a pointer to an extension-specific structure.
    • maxIndirectCommandsLayoutTokenCount – the maximum number of tokens in VkIndirectCommandsLayoutNVX.
    • maxObjectEntryCounts – the maximum number of entries per resource type in VkObjectTableNVX.
    • minSequenceCountBufferOffsetAlignment – the minimum alignment for memory addresses optionally used in CmdProcessCommandsNVX.
    • minSequenceIndexBufferOffsetAlignment – the minimum alignment for memory addresses optionally used in CmdProcessCommandsNVX.
    • minCommandsTokenBufferOffsetAlignment – the minimum alignment for memory addresses optionally used in CmdProcessCommandsNVX.

    Layout

     struct VkDeviceGeneratedCommandsLimitsNVX {
         VkStructureType sType;
         const void * pNext;
         uint32_t maxIndirectCommandsLayoutTokenCount;
         uint32_t maxObjectEntryCounts;
         uint32_t minSequenceCountBufferOffsetAlignment;
         uint32_t minSequenceIndexBufferOffsetAlignment;
         uint32_t minCommandsTokenBufferOffsetAlignment;
     }