Skip to content

ENH: Adds UPS counter utility

Adds updates per second (UPS) counter utility.

USAGE:

UPSCounter->setStartPointOfFrame();
    ...
    ... [work load inside each frame]
    ...
UPSCounter->setEndPointOfFrame();
UPSCounter->getUPS(); // Get the updates per second

Merge request reports