diff options
author | Brian <brian.paul@tungstengraphics.com> | 2008-01-28 12:41:47 -0700 |
---|---|---|
committer | Ben Skeggs <skeggsb@gmail.com> | 2008-02-15 13:50:23 +1100 |
commit | 0abef84995acd01d7155f4fc851c9c528a1cfa73 (patch) | |
tree | b2c2539f8ff71d2cb0bde2928101c569e1dfc100 /progs/demos | |
parent | ab36a9346cb1263fdeac492c0df986ab8cfb38b3 (diff) |
push out far clip plane to 200
Diffstat (limited to 'progs/demos')
-rw-r--r-- | progs/demos/gears.c | 2 |
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); } |