blob: 65ee4a08db035c58aebd95ee64334064192ffdfa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#include <time.h>
#include "SDL.h"
#include "SDL_opengl.h"
#include "fps.h"
static clock_t start;
static GLfloat fps;
void
GLPong_FPSInit(void) {
start = SDL_GetTicks();
}
GLfloat
GLPong_FPSCount(void) {
/* 10.0f is the number of frames we let draw before calculating FPS */
fps = 10.0f / (SDL_GetTicks() - start) * 1000; /* 1 sec / 1 millisec == 1000 */
start = SDL_GetTicks();
return fps;
}
|