diff options
author | Brian <[email protected]> | 2008-01-28 12:41:47 -0700 |
---|---|---|
committer | Brian <[email protected]> | 2008-01-28 12:42:37 -0700 |
commit | bd299093ec267dcf22ea3ef8012e32eba4cfb655 (patch) | |
tree | f166b86a8d3fb4bb92f209348648c7a97edc2296 /progs/demos | |
parent | ba083bae69dcf41e764acd85ad84594d00c8b670 (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 7abbd3670bd..2a9fefefb53 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); } |