diff options
author | Keith Whitwell <[email protected]> | 2009-12-21 19:19:01 +0000 |
---|---|---|
committer | Keith Whitwell <[email protected]> | 2009-12-21 19:19:01 +0000 |
commit | 66e779c22ba67834a35f71c8878670c38c071cb2 (patch) | |
tree | b53c338578ba897e87e121e46b65edb54111eda2 /progs | |
parent | a5585cb533af3d4e5d5324d5f526447b98597402 (diff) |
i965g: back out unintentional changes to gears
Diffstat (limited to 'progs')
-rw-r--r-- | progs/demos/gears.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/progs/demos/gears.c b/progs/demos/gears.c index cf2c0a5443c..6016162d6f7 100644 --- a/progs/demos/gears.c +++ b/progs/demos/gears.c @@ -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) { |