]> git.mxchange.org Git - flightgear.git/commitdiff
Remove the old hardcode fps display. This is now replaced with a nasal/gui
authorcurt <curt>
Thu, 15 Dec 2005 22:18:06 +0000 (22:18 +0000)
committercurt <curt>
Thu, 15 Dec 2005 22:18:06 +0000 (22:18 +0000)
display that can be dragged around the screen to an unobtrusive location.

src/Cockpit/cockpit.cxx

index ce8d5d897546c5779fc82061b25dc418a803d8bc..549a1f815126324719b74087298ca0a68fec39b5 100644 (file)
@@ -728,35 +728,6 @@ void fgCockpitUpdate( void ) {
         fgUpdateHUD();
     }
 
-    if ( fgGetBool( "/sim/hud/draw-fps", false ) ) {
-        char buf[64];
-        float fps = get_frame_rate();
-        sprintf(buf,"%-5.1f", fps);
-
-        glMatrixMode( GL_PROJECTION );
-        glPushMatrix();
-        glLoadIdentity();
-        gluOrtho2D( 0, iwidth, 0, iheight );
-        glMatrixMode( GL_MODELVIEW );
-        glPushMatrix();
-        glLoadIdentity();
-
-        glDisable( GL_DEPTH_TEST );
-        glDisable( GL_LIGHTING );
-        
-        glColor3f( 0.9, 0.4, 0.2 );
-
-        guiFnt.drawString( buf,
-                          int(width - guiFnt.getStringWidth(buf) - 10),
-                           10 );
-        glEnable( GL_DEPTH_TEST );
-        glEnable( GL_LIGHTING );
-        glMatrixMode( GL_PROJECTION );
-        glPopMatrix();
-        glMatrixMode( GL_MODELVIEW );
-        glPopMatrix();
-    }
-    
     glViewport( 0, 0, iwidth, iheight );
 }