From 15e2da75f4a8550b445a4ba8cb3d21c20beb007f Mon Sep 17 00:00:00 2001 From: Matt Turner Date: Wed, 14 May 2008 16:26:15 +0000 Subject: Make quesoglc work. Still need to sort out why GLC_TRIANGLE works but GLC_TEXTURE doesn't. git-svn-id: svn://mattst88.com/svn/glpong/trunk@15 449aeecc-241a-0410-943f-e2f883e2d7a2 --- fps.c | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) (limited to 'fps.c') diff --git a/fps.c b/fps.c index 4379e38..ca2787a 100644 --- a/fps.c +++ b/fps.c @@ -14,14 +14,11 @@ GLPong_FPSInit() { start = SDL_GetTicks(); } -void +INLINE GLfloat GLPong_FPSCount() { - // 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 + /* 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; } -void -GLPong_FPSPrint() { - printf("%.2f frames per second\n", fps); -} -- cgit v1.2.3