Struct RenderStatsData
Object that stores various render statistics.
Assembly: FlaxEngine.dll
File: Engine/Profiler/RenderStats.h
Syntax
public struct RenderStatsData
Constructors
RenderStatsData()
Fields
Counter
The global rendering stats counter.
Declaration
public static RenderStatsData Counter
Field Value
RenderStatsData
|
DispatchCalls
The compute shader dispatch calls count.
Declaration
public int64 DispatchCalls
Field Value
int64
|
DrawCalls
The draw calls count.
Declaration
public int64 DrawCalls
Field Value
int64
|
PipelineStateChanges
The pipeline state changes count.
Declaration
public int64 PipelineStateChanges
Field Value
int64
|
Triangles
The triangles drawn count.
Declaration
public int64 Triangles
Field Value
int64
|
Vertices
The vertices drawn count.
Declaration
public int64 Vertices
Field Value
int64
|
Methods
Mix(const RenderStatsData& currentState)
Mixes the stats with the current state. Perform operation: this = currentState - this, but without additional stack allocations.
Declaration
public void Mix(const RenderStatsData& currentState)
Parameters
RenderStatsData
currentState
The current state. |