From: J.C. Jones Date: Thu, 11 Dec 2003 18:49:38 +0000 (+0000) Subject: Disable/enable lighting in the "one.c" demo (John Fay) X-Git-Url: http://git.mutantstargoat.com/user/nuclear/?a=commitdiff_plain;h=757a3da51cbb39e52f71bf25ac16a9f9a40dab9a;hp=a49c9e54a4fc087a9f18b32c5d90f7b2a07f707e;p=freeglut Disable/enable lighting in the "one.c" demo (John Fay) git-svn-id: svn+ssh://svn.code.sf.net/p/freeglut/code/trunk/freeglut/freeglut@388 7f0cb862-5218-0410-a997-914c9d46530a --- diff --git a/progs/demos/One/one.c b/progs/demos/One/one.c index 7d609db..627630e 100644 --- a/progs/demos/One/one.c +++ b/progs/demos/One/one.c @@ -35,6 +35,7 @@ void PrintText( int nX, int nY, char* pszText ) /* * Prepare the OpenGL state */ + glDisable( GL_LIGHTING ); glDisable( GL_DEPTH_TEST ); glMatrixMode( GL_PROJECTION ); glPushMatrix(); @@ -86,6 +87,7 @@ void PrintText( int nX, int nY, char* pszText ) */ glColor4f( 1.0f, 1.0f, 1.0f, 1.0f ); glEnable( GL_DEPTH_TEST ); + glEnable( GL_LIGHTING ); } /*