platform-test/src/dt.cpp

18 lines
273 B
C++
Raw Normal View History

2017-04-29 18:43:17 +00:00
//Delta time class body
#include"dt.h"
DeltaTime::DeltaTime(){
now = SDL_GetPerformanceCounter();
}
2017-04-29 18:43:17 +00:00
float DeltaTime::getDt(){
last = now;
now = SDL_GetPerformanceCounter();
dt = (now - last)/SDL_GetPerformanceFrequency();
if(dt > 0.15f) dt = 0.15f;
return dt;
}