From 067619d1fb456463b63fcc38c60699798a687cc8 Mon Sep 17 00:00:00 2001 From: Robert Osfield Date: Fri, 19 Oct 2001 15:53:59 +0000 Subject: [PATCH] Removed Lighting.cpp from repository, it is nolonger used and was just hanging around erroneously. --- src/osg/Lighting.cpp | 15 --------------- 1 file changed, 15 deletions(-) delete mode 100644 src/osg/Lighting.cpp diff --git a/src/osg/Lighting.cpp b/src/osg/Lighting.cpp deleted file mode 100644 index 88409a820..000000000 --- a/src/osg/Lighting.cpp +++ /dev/null @@ -1,15 +0,0 @@ -#include "osg/GL" -#include "osg/Lighting" - -using namespace osg; - -void Lighting::enable( void ) -{ - glEnable( GL_LIGHTING ); -} - - -void Lighting::disable( void ) -{ - glDisable( GL_LIGHTING ); -}