* Rest of Set #3
[freeglut] / freeglut-1.3 / freeglut_display.c
index d6ce1cb..900b9d0 100644 (file)
@@ -92,22 +92,6 @@ void FGAPIENTRY glutSwapBuffers( void )
     SwapBuffers( fgStructure.Window->Window.Device );
 
 #endif
-
-    /* GLUT_FPS env var support */
-    if (fgState.FPSInterval) {
-        GLint t = glutGet(GLUT_ELAPSED_TIME);
-        fgState.SwapCount++;
-        if (fgState.SwapTime == 0)
-            fgState.SwapTime = t;
-        else if (t - fgState.SwapTime > fgState.FPSInterval) {
-            float time = 0.001 * (t - fgState.SwapTime);
-            float fps = (float) fgState.SwapCount / time;
-            fprintf(stderr, "FreeGLUT: %d frames in %.2f seconds = %.2f FPS\n",
-                    fgState.SwapCount, time, fps);
-            fgState.SwapTime = t;
-            fgState.SwapCount = 0;
-        }
-    }
 }
 
 /*