Added ability to cycle through average frametime, FPS and average FPS

"t" and "Shift+t" are Lua bindings in common.lua
Maybe needs to be part of SettingsEngine instead, but the display code was already in RenderEngine, so it'll do for now on this branch
This commit is contained in:
Matthew Territo
2016-07-20 16:33:37 -06:00
parent 3c53463a60
commit a2c96f5a36
8 changed files with 102 additions and 7 deletions

View File

@@ -45,6 +45,10 @@ bool WindowWrapper::windowHasResized() const {
double WindowWrapper::averageDeltaTime() const {
return 0.0;
}
double WindowWrapper::deltaTime() const {
return 0.0;
}
glm::vec2 WindowWrapper::mousePosition() const {
return glm::vec2(0.f);