Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
May 20, 2005, 11:28:43 AM (19 years ago)
Author:
patrick
Message:

orxonox/trunk: merged back the md2_loader branche manualy (a full merge was impossible).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • orxonox/trunk/src/lib/graphics/graphics_engine.h

    r4135 r4245  
    1111
    1212#include "glincl.h"
    13 
    1413#include "base_object.h"
    1514
    16 // FORWARD DEFINITION \\
     15
     16class Text;
    1717
    1818
     
    4545  static GLdouble projMat[16];
    4646  static GLint viewPort[4];
    47 
     47 
     48  void tick(float dt);
     49  void displayFPS(bool display);
    4850
    4951
     
    5961  bool fullscreen;
    6062  Uint32 videoFlags;
     63 
     64  bool bDisplayFPS;  //!< is true if the fps should be displayed
     65  float currentFPS;  //!< the current frame rate: frames per seconds
     66  float maxFPS;      //!< maximal frame rate we ever got since start of the game
     67  float minFPS;      //!< minimal frame rate we ever got since start
     68
     69  Text* geTextCFPS;
     70  Text* geTextMaxFPS;
     71  Text* geTextMinFPS;
    6172
    6273  SDL_Rect **videoModes;
Note: See TracChangeset for help on using the changeset viewer.