repo.or.cz
/
haiku.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
BTRFS: Implement BTree::Path and change _Find.
[haiku.git]
/
src
/
apps
/
glteapot
/
FPS.h
blob
23c47c60e09feb8ecfe413c6e99dfbd54d8df746
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
static void
drawCounter
(
GLfloat frameRate
);
13
14
private
:
15
static void
drawChar
(
GLfloat x
,
GLfloat y
,
GLint number
);
16
};
17