xref: /haiku/src/apps/glteapot/FPS.h (revision 4f00613311d0bd6b70fa82ce19931c41f071ea4e)
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 {
10 public:
11 	FPS();
12 	~FPS();
13 
14 	static void drawCounter( GLfloat frameRate );
15 
16 private:
17 	static void drawChar( GLfloat x, GLfloat y, GLint number );
18 
19 };