C# Class Axiom.Graphics.RenderTarget.FrameStatistics

Holds all the current statistics for a RenderTarget
Show file 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 property

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

BatchCount public property

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

BestFPS public property

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

BestFrameTime public property

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

LastFPS public property

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

TriangleCount public property

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

WorstFPS public property

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

WorstFrameTime public property

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