Class VkIndirectCommandsTokenNVX

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


    public class VkIndirectCommandsTokenNVX
    extends org.lwjgl.system.Struct
    implements org.lwjgl.system.NativeResource
    Structure specifying parameters for the reservation of command buffer space.
    Valid Usage
    Valid Usage (Implicit)
    • tokenType must be a valid VkIndirectCommandsTokenTypeNVX value
    • buffer must be a valid VkBuffer handle
    See Also

    VkCmdProcessCommandsInfoNVX

    Member documentation

    • tokenType – specifies the token command type.
    • buffer – specifies the VkBuffer storing the functional arguments for each squence. These argumetns can be written by the device.
    • offset – specified an offset into buffer where the arguments start.

    Layout

     struct VkIndirectCommandsTokenNVX {
         VkIndirectCommandsTokenTypeNVX tokenType;
         VkBuffer buffer;
         VkDeviceSize offset;
     }