summaryrefslogtreecommitdiff
path: root/progs
diff options
context:
space:
mode:
authorBrian <brian.paul@tungstengraphics.com>2008-01-28 12:41:47 -0700
committerBrian <brian.paul@tungstengraphics.com>2008-01-28 12:41:47 -0700
commitf09b2382e9a2c8f4302e644ea8c9cb7c933457a1 (patch)
treeb75dd08c603c5acd59827860b4c4f1647a25cb7e /progs
parente7007c6fb02ed885ef6edf8bb364ea3c81ae6e1d (diff)
push out far clip plane to 200
Diffstat (limited to 'progs')
-rw-r--r--progs/demos/gears.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/progs/demos/gears.c b/progs/demos/gears.c
index 7abbd3670b..2a9fefefb5 100644
--- a/progs/demos/gears.c
+++ b/progs/demos/gears.c
@@ -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);
}