From: Brian Date: Mon, 28 Jan 2008 19:41:47 +0000 (-0700) Subject: push out far clip plane to 200 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=f09b2382e9a2c8f4302e644ea8c9cb7c933457a1;p=mesa.git push out far clip plane to 200 --- 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); }