Struct DrawCallsList
Represents a list of draw calls.
Assembly: FlaxEngine.dll
File: Engine/Renderer/RenderList.h
Syntax
public struct DrawCallsList
Fields
Batches
The draw calls batches (for instancing).
Declaration
public Array<DrawBatch> Batches
Field Value
Array<DrawBatch>
|
CanUseInstancing
True if draw calls batches list can be rendered using hardware instancing, otherwise false.
Declaration
public bool CanUseInstancing
Field Value
bool
|
Indices
The list of draw calls indices to render.
Declaration
public RenderListBuffer<int32> Indices
Field Value
RenderListBuffer<int32>
|
PreBatchedDrawCalls
The list of external draw calls indices to render.
Declaration
public RenderListBuffer<int32> PreBatchedDrawCalls
Field Value
RenderListBuffer<int32>
|
Methods
Clear()
Declaration
public void Clear()
IsEmpty()
Declaration
public bool IsEmpty() const
Returns
bool
|