From e666943830249310a3a0249da7891745deda40f5 Mon Sep 17 00:00:00 2001 From: Josh Holtrop Date: Wed, 26 Oct 2011 15:12:01 -0400 Subject: [PATCH] adjust near clipping plane to give better depth buffer usage --- modes/Tunnel.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modes/Tunnel.cc b/modes/Tunnel.cc index c8840b1..e30bf62 100644 --- a/modes/Tunnel.cc +++ b/modes/Tunnel.cc @@ -139,7 +139,7 @@ bool Tunnel::configure (GnomeScreensaver & gs) glMatrixMode(GL_PROJECTION); glLoadIdentity(); gluPerspective(60.0, gs.getAspectRatio() / gs.getNumMonitors(), - 0.01, 1000.0); + 1.0, 1000.0); glMatrixMode(GL_MODELVIEW); glLoadIdentity();