From: curt Date: Mon, 8 Dec 1997 22:54:09 +0000 (+0000) Subject: Enabled GL_CULL_FACE. X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=92aa2446e6f455a9122a8f51d91328265893fcb5;p=flightgear.git Enabled GL_CULL_FACE. --- diff --git a/Main/GLUTmain.c b/Main/GLUTmain.c index 5fef9c768..fb50cef96 100644 --- a/Main/GLUTmain.c +++ b/Main/GLUTmain.c @@ -108,8 +108,8 @@ static void fgInitVisuals() { glEnable( GL_DEPTH_TEST ); /* glFrontFace(GL_CW); */ - /* glEnable( GL_CULL_FACE ); */ - + glEnable( GL_CULL_FACE ); + /* If enabled, normal vectors specified with glNormal are scaled to unit length after transformation. See glNormal. */ glEnable( GL_NORMALIZE ); @@ -577,9 +577,12 @@ int main( int argc, char *argv[] ) { /* $Log$ -/* Revision 1.24 1997/11/25 19:25:32 curt -/* Changes to integrate Durk's moon/sun code updates + clean up. +/* Revision 1.25 1997/12/08 22:54:09 curt +/* Enabled GL_CULL_FACE. /* + * Revision 1.24 1997/11/25 19:25:32 curt + * Changes to integrate Durk's moon/sun code updates + clean up. + * * Revision 1.23 1997/11/15 18:16:34 curt * minor tweaks. *