GlPortal Class Reference  0.1.1
Source code documentation of the free and open 3D action puzzle game.
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
Fps.hpp
Go to the documentation of this file.
1 #ifndef RADIX_FPS_HPP
2 #define RADIX_FPS_HPP
3 
4 namespace radix {
5 
6 class Fps {
7 public:
8  Fps();
9  int getFps();
10  void countCycle();
11 private:
12  unsigned int lastFpsTime;
13  int fps;
14  int skipped;
15  int rendered;
16 };
17 
18 } /* namespace radix */
19 
20 #endif /* RADIX_FPS_HPP */
Definition: GameController.hpp:7
int fps
Definition: Fps.hpp:13
int skipped
Definition: Fps.hpp:14
Fps()
Definition: Fps.cpp:6
unsigned int lastFpsTime
Definition: Fps.hpp:12
int rendered
Definition: Fps.hpp:15
Definition: Fps.hpp:6
void countCycle()
Definition: Fps.cpp:13
int getFps()
Definition: Fps.cpp:17