Class DisplayStatistics
A class containing display statistics
Inherited Members
Namespace: ic4
Assembly: ic4dotnet.dll
Syntax
public class DisplayStatistics
Remarks
This class contains information about the number of frames that were displayed or dropped by a display.
Use the Statistics property on a display to request display statistics.
Properties
NumFramesDisplayed
The number of frames that were displayed by a display
Declaration
public ulong NumFramesDisplayed { get; }
Property Value
Type | Description |
---|---|
ulong | The number of frames that were displayed by a display |
NumFramesDropped
The number of frames that were passed to a display, but not displayed
Declaration
public ulong NumFramesDropped { get; }
Property Value
Type | Description |
---|---|
ulong | The number of frames that were passed to a display, but not displayed. A frame is considered dropped by a display, when the display receives a new frame before the previous frame was rendered. |