]> git.tdb.fi Git - libs/gl.git/blobdiff - source/lighting.h
Drop Id tags and copyright notices from files
[libs/gl.git] / source / lighting.h
index 85d5fb0406c877cb0d89e855cc6d6cff2b90a384..794fb75a045497eae7c803b2f86aab9c3d42ce58 100644 (file)
@@ -1,14 +1,8 @@
-/* $Id$
-
-This file is part of libmspgl
-Copyright © 2008  Mikko Rasa, Mikkosoft Productions
-Distributed under the LGPL
-*/
-
 #ifndef MSP_GL_LIGHTING_H_
 #define MSP_GL_LIGHTING_H_
 
 #include <vector>
+#include "bindable.h"
 #include "color.h"
 #include "gl.h"
 
@@ -17,22 +11,15 @@ namespace GL {
 
 class Light;
 
-enum
-{
-       LIGHTING = GL_LIGHTING
-};
-
 /**
 Encapsulates global lighting parameters and a number of individual lights.
 */
-class Lighting
+class Lighting: public Bindable<Lighting>
 {
 private:
        Color ambient;
        std::vector<const Light *> lights;
 
-       static const Lighting *current;
-
 public:
        Lighting();