i965g: back out unintentional changes to gears
authorKeith Whitwell <keithw@vmware.com>
Mon, 21 Dec 2009 19:19:01 +0000 (19:19 +0000)
committerKeith Whitwell <keithw@vmware.com>
Mon, 21 Dec 2009 19:19:01 +0000 (19:19 +0000)
progs/demos/gears.c

index cf2c0a5443cc49f94aae73bfad1706e63a3fbcca..6016162d6f74c6973bf80113269a7af87c587c4e 100644 (file)
@@ -92,7 +92,6 @@ gear(GLfloat inner_radius, GLfloat outer_radius, GLfloat width,
 
   glNormal3f(0.0, 0.0, -1.0);
 
-#if 0
   /* draw back face */
   glBegin(GL_QUAD_STRIP);
   for (i = 0; i <= teeth; i++) {
@@ -161,7 +160,6 @@ gear(GLfloat inner_radius, GLfloat outer_radius, GLfloat width,
     glVertex3f(r0 * cos(angle), r0 * sin(angle), width * 0.5);
   }
   glEnd();
-#endif
 
 }
 
@@ -197,7 +195,6 @@ draw(void)
       glCallList(gear1);
     glPopMatrix();
 
-#if 0
     glPushMatrix();
       glTranslatef(3.1, -2.0, 0.0);
       glRotatef(-2.0 * angle - 9.0, 0.0, 0.0, 1.0);
@@ -209,7 +206,6 @@ draw(void)
       glRotatef(-2.0 * angle - 25.0, 0.0, 0.0, 1.0);
       glCallList(gear3);
     glPopMatrix();
-#endif
 
   glPopMatrix();
 
@@ -217,9 +213,6 @@ draw(void)
 
   Frames++;
 
-  if (Frames == 2)
-     exit(0);
-
   {
     GLint t = glutGet(GLUT_ELAPSED_TIME);
     if (t - T0 >= 5000) {