Skip to content

Instantly share code, notes, and snippets.

View finlaybob's full-sized avatar

Neil Finlay finlaybob

  • Edinburgh, Scotland
View GitHub Profile
@finlaybob
finlaybob / gist:4090330
Created November 16, 2012 19:52
Timing code
auto t1 = Clock::now();
app->update(0);
app->display();
auto t2 = Clock::now();
auto tt = (t2-t1);
elapsed = (float)tt.count()/1000000.0f;
app->fpsUpdate(elapsed);