Jérôme Duval c8c44fa029 added GLTeapot sample app
we still need opengl headers and libGL.so


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@13041 a95241bf-73f2-0310-859d-f6bbb57e9c96
2005-06-10 09:07:17 +00:00

19 lines
314 B
C++

/*
Copyright 1999, Be Incorporated. All Rights Reserved.
This file may be used under the terms of the Be Sample Code License.
*/
#include <GL/gl.h>
class FPS
{
public:
FPS();
~FPS();
static void drawCounter( GLfloat frameRate );
private:
static void drawChar( GLfloat x, GLfloat y, GLint number );
};