Hi I got a simple FPS counter in my animation. FPS counts fine but I don't know why I can't measure the animation time. Normaly I get that time by glutGet(GLUT ELAPSED TIME)
but since I have to go Winapi I would like to (or must) use GetTickCount()
Here is my code:
int Frames=0;
int CurrentTime=0;
int PreviousTime=0;
int IntervalTime=0;
int CounterTime=0;
float FPS;
void fpscount(){
Frames++;
CurrentTime = GetTickCount();
IntervalTime = CurrentTime - PreviousTime;
if(IntervalTime >= 1000)
{
FPS = Frames / (IntervalTime / 1000.0f);
PreviousTime = CurrentTime;
Frames = 0;
CounterTime += IntervalTime;
}
}
I measure by line: CounterTime += IntervalTime;
and get strange values like:
44834406
44835420
If I define that line as CounterTime = IntervalTime+CounterTime;
the CounterTime
gets values as above.
If I define that line as CounterTime = IntervalTime;
the CounterTime
gets values:
1014
1014
but they are are not summed.
The correct values should be: 1014 2028 . . .
What I'am doing wrong?
I can't follow your thought pattern, but the way I do it is like so:
This has the benefit of giving you fractions of FPS too, which gives a better average.