Struct GPUDrawIndexedIndirectArgs
The GPU draw indexed indirect command arguments data.
Assembly: FlaxEngine.dll
File: Engine/Graphics/GPUContext.h
Syntax
public struct GPUDrawIndexedIndirectArgs
Fields
IndicesCount
The number of indices to draw for each instance.
Declaration
public uint32 IndicesCount
Field Value
uint32
|
InstanceCount
The number of instances to draw.
Declaration
public uint32 InstanceCount
Field Value
uint32
|
StartIndex
An offset into the index buffer where drawing should begin.
Declaration
public uint32 StartIndex
Field Value
uint32
|
StartInstance
An offset added to each instance index.
Declaration
public uint32 StartInstance
Field Value
uint32
|
StartVertex
An offset added to each vertex index.
Declaration
public uint32 StartVertex
Field Value
uint32
|