Class ProfilerGPU.Event
Represents single CPU profiling event data.
Inheritance
System.Object
ProfilerGPU.Event
Namespace: FlaxEngine
Assembly: FlaxEngine.CSharp.dll
Syntax
[Unmanaged]
public sealed class Event : ValueType
Fields
Depth
The event depth. Value 0 is used for the root events.
Declaration
public int Depth
Field Value
System.Int32
|
Name
The name of the event.
Declaration
public char *Name
Field Value
System.Char*
|
Stats
The rendering stats for this event. When event is active it holds the stats on event begin.
Declaration
public RenderStatsData Stats
Field Value
RenderStatsData
|
Time
The event execution time on a GPU (in milliseconds).
Declaration
public float Time
Field Value
System.Single
|
Timer
The timer query used to get the exact event time on a GPU. Assigned and managed by the internal profiler layer.
Declaration
public IntPtr Timer
Field Value
System.IntPtr
|