mirror of
https://review.haiku-os.org/haiku
synced 2025-01-31 02:35:03 +01:00
c8c44fa029
we still need opengl headers and libGL.so git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@13041 a95241bf-73f2-0310-859d-f6bbb57e9c96
19 lines
314 B
C++
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 );
|
|
|
|
}; |