hackily adding the event count to the graph

This commit is contained in:
2018-02-28 20:40:08 -08:00
parent 5a47d3bad4
commit 24a97e47e1
6 changed files with 52 additions and 27 deletions

View File

@@ -13,9 +13,6 @@ Application::Application() {
ImGui::SFML::Init(*window);
window->resetGLStates();
}
Application::~Application() {
@@ -112,7 +109,7 @@ bool Application::game_loop() {
int fps_idx = fps.create_line("FPS");
int compute_fps_idx = fps.create_line("Compute");
int event_fps_idx = fps.create_line("Event");
int event_fps_idx = fps.create_line("Event Time");
while (true) {