xref: /haiku/src/apps/glteapot/FPS.h (revision d9cebac2b77547b7064f22497514eecd2d047160)
1 /*
2 	Copyright 1999, Be Incorporated.   All Rights Reserved.
3 	This file may be used under the terms of the Be Sample Code License.
4 */
5 
6 #include <GL/gl.h>
7 
8 class FPS {
9 	public:
10 		FPS();
11 		~FPS();
12 
13 		static void drawCounter(GLfloat frameRate);
14 
15 	private:
16 		static void drawChar(GLfloat x, GLfloat y, GLint number);
17 };
18 
19