Class RenderStatsData
Object that stores various render statistics.
Inheritance
System.Object
RenderStatsData
Namespace: FlaxEngine
Assembly: FlaxEngine.CSharp.dll
Syntax
[Unmanaged]
public sealed class RenderStatsData : ValueType
Fields
DispatchCalls
The compute shader dispatch calls count.
Declaration
public long DispatchCalls
Field Value
System.Int64
|
DrawCalls
The draw calls count.
Declaration
public long DrawCalls
Field Value
System.Int64
|
PipelineStateChanges
The pipeline state changes count.
Declaration
public long PipelineStateChanges
Field Value
System.Int64
|
Triangles
The triangles drawn count.
Declaration
public long Triangles
Field Value
System.Int64
|
Vertices
The vertices drawn count.
Declaration
public long Vertices
Field Value
System.Int64
|
Properties
Default
The default RenderStatsData.
Declaration
public static RenderStatsData Default { get; }
Property Value
RenderStatsData
|