Feature/statistics (#810)

* Add statistics options for dashboarditemframerate
This commit is contained in:
Emil Axelsson
2019-03-24 13:09:31 +01:00
committed by Alexander Bock
parent 2f1131dac3
commit 55979fa2c8
4 changed files with 141 additions and 68 deletions

View File

@@ -44,6 +44,12 @@ struct WindowDelegate {
double (*averageDeltaTime)() = []() { return 0.0; };
double (*minDeltaTime)() = []() { return 0.0; };
double (*maxDeltaTime)() = []() { return 0.0; };
double (*deltaTimeStandardDeviation)() = []() { return 0.0; };
double (*deltaTime)() = []() { return 0.0; };
double (*applicationTime)() = []() { return 0.0; };