Class GPUDrawIndirectArgs
The GPU draw indirect command arguments data.
Inheritance
System.Object
GPUDrawIndirectArgs
Namespace: FlaxEngine
Assembly: FlaxEngine.CSharp.dll
Syntax
[Unmanaged]
public sealed class GPUDrawIndirectArgs : ValueType
Fields
InstanceCount
The number of instances to draw.
Declaration
public uint InstanceCount
Field Value
System.UInt32
|
StartInstance
An offset added to each instance index.
Declaration
public uint StartInstance
Field Value
System.UInt32
|
StartVertex
An offset added to each vertex index.
Declaration
public uint StartVertex
Field Value
System.UInt32
|
VerticesCount
The number of vertices to draw for each instance.
Declaration
public uint VerticesCount
Field Value
System.UInt32
|
Properties
Default
The default GPUDrawIndirectArgs.
Declaration
public static GPUDrawIndirectArgs Default { get; }
Property Value
GPUDrawIndirectArgs
|