C# Class Axiom.Graphics.RenderTarget.FrameStatistics

Holds all the current statistics for a RenderTarget
Datei anzeigen Open project: WolfgangSt/axiom

Public Properties

Property Type Description
AverageFPS float
BatchCount float
BestFPS float
BestFrameTime float
LastFPS float
TriangleCount float
WorstFPS float
WorstFrameTime float

Property Details

AverageFPS public_oe property

The average number of Frames per second since Root.StartRendering was called.
public float AverageFPS
return float

BatchCount public_oe property

The number of batches procecssed in the last call to Update()
public float BatchCount
return float

BestFPS public_oe property

The highest number of Frames per second since Root.StartRendering was called.
public float BestFPS
return float

BestFrameTime public_oe property

The best frame time recorded since Root.StartRendering was called.
public float BestFrameTime
return float

LastFPS public_oe property

The number of Frames per second.
public float LastFPS
return float

TriangleCount public_oe property

The number of triangles processed in the last call to Update()
public float TriangleCount
return float

WorstFPS public_oe property

The lowest number of Frames per second since Root.StartRendering was called.
public float WorstFPS
return float

WorstFrameTime public_oe property

The worst frame time recorded since Root.StartRendering was called.
public float WorstFrameTime
return float