Struct IndirectDrawArguments
A structure describing the format expected by indirect draw commands contained in an indirect DeviceBuffer.
Inherited Members
System.ValueType.Equals(System.Object)
System.ValueType.GetHashCode()
System.ValueType.ToString()
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetType()
Namespace: Veldrid
Assembly: cs.temp.dll.dll
Syntax
public struct IndirectDrawArguments
Fields
FirstInstance
The first instance to draw. Subsequent instances are incrmented by 1.
Declaration
public uint FirstInstance
Field Value
Type | Description |
---|---|
System.UInt32 |
FirstVertex
The first vertex to draw. Subsequent vertices are incremented by 1.
Declaration
public uint FirstVertex
Field Value
Type | Description |
---|---|
System.UInt32 |
InstanceCount
The number of instances to draw.
Declaration
public uint InstanceCount
Field Value
Type | Description |
---|---|
System.UInt32 |
VertexCount
The number of vertices to draw.
Declaration
public uint VertexCount
Field Value
Type | Description |
---|---|
System.UInt32 |