Class GPUDrawIndexedIndirectArgs
The GPU draw indexed indirect command arguments data.
Inheritance
System.Object
GPUDrawIndexedIndirectArgs
Namespace: FlaxEngine
Assembly: FlaxEngine.CSharp.dll
Syntax
[Unmanaged]
public sealed class GPUDrawIndexedIndirectArgs : ValueType
Fields
IndicesCount
The number of indices to draw for each instance.
Declaration
public uint IndicesCount
Field Value
System.UInt32
|
InstanceCount
The number of instances to draw.
Declaration
public uint InstanceCount
Field Value
System.UInt32
|
StartIndex
An offset into the index buffer where drawing should begin.
Declaration
public uint StartIndex
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
|
Properties
Default
The default GPUDrawIndexedIndirectArgs.
Declaration
public static GPUDrawIndexedIndirectArgs Default { get; }
Property Value
GPUDrawIndexedIndirectArgs
|