Class Stats.AppMetrics
Provides additional application metrics. These metrics will not be tracked unless the user makes a AppMetrics.EnableAppMetrics(true) method call. Not every stat is supported on every Oculus platform and will always return a value of 0 if unsupported.
Inheritance
Stats.AppMetrics
Syntax
public static class AppMetrics
Properties
AppCPUElapsedTime
Declaration
public static float AppCPUElapsedTime { get; }
Property Value
AppQueueAheadTime
Declaration
public static float AppQueueAheadTime { get; }
Property Value
CompositorCPUTime
Reports the time the compositor spent on the CPU last frame in seconds.
Declaration
public static float CompositorCPUTime { get; }
Property Value
CompositorDroppedFrames
Reports the number of frames dropped by the compositor.
Declaration
public static float CompositorDroppedFrames { get; }
Property Value
CompositorLatency
Declaration
public static float CompositorLatency { get; }
Property Value
CPUStartToGPUEnd
Reports the total time from beginning of the main thread until compositor frame submission.
Declaration
public static float CPUStartToGPUEnd { get; }
Property Value
GPUEndToVsync
Reports the total time from compositor frame submission until the frame sync point.
Declaration
public static float GPUEndToVsync { get; }
Property Value
Methods
EnableAppMetrics(Boolean)
Declaration
public static void EnableAppMetrics(bool enable)
Parameters
Type |
Name |
Description |
Boolean |
enable |
|