Class VkBindVertexBufferIndirectCommandEXT

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

public class VkBindVertexBufferIndirectCommandEXT extends org.lwjgl.system.Struct<VkBindVertexBufferIndirectCommandEXT> 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 VkBindVertexBufferIndirectCommandEXT {
     VkDeviceAddress bufferAddress();
     uint32_t size();
     uint32_t stride();
 }