push out far clip plane to 200
authorBrian <brian.paul@tungstengraphics.com>
Mon, 28 Jan 2008 19:41:47 +0000 (12:41 -0700)
committerBrian <brian.paul@tungstengraphics.com>
Mon, 28 Jan 2008 19:42:37 +0000 (12:42 -0700)
progs/demos/gears.c

index 7abbd36..2a9fefe 100644 (file)
@@ -320,7 +320,7 @@ reshape(int width, int height)
   glViewport(0, 0, (GLint) width, (GLint) height);
   glMatrixMode(GL_PROJECTION);
   glLoadIdentity();
-  glFrustum(-1.0, 1.0, -h, h, 5.0, 60.0);
+  glFrustum(-1.0, 1.0, -h, h, 5.0, 200.0);
   glMatrixMode(GL_MODELVIEW);
 }