Class VkBindVertexBufferIndirectCommandNV

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

public class VkBindVertexBufferIndirectCommandNV extends org.lwjgl.system.Struct<VkBindVertexBufferIndirectCommandNV> implements org.lwjgl.system.NativeResource
Structure specifying input data for a single vertex buffer command token.
Valid Usage
  • The buffer’s usage flag from which the address was acquired must have the BUFFER_USAGE_VERTEX_BUFFER_BIT bit set
  • Each element of the buffer from which the address was acquired and that is non-sparse must be bound completely and contiguously to a single VkDeviceMemory object

Layout


 struct VkBindVertexBufferIndirectCommandNV {
     VkDeviceAddress bufferAddress();
     uint32_t size();
     uint32_t stride();
 }