]> git.tdb.fi Git - libs/gl.git/blobdiff - source/lighting.h
Check the flat qualifier from the correct member
[libs/gl.git] / source / lighting.h
diff --git a/source/lighting.h b/source/lighting.h
deleted file mode 100644 (file)
index 593d803..0000000
+++ /dev/null
@@ -1,42 +0,0 @@
-#ifndef MSP_GL_LIGHTING_H_
-#define MSP_GL_LIGHTING_H_
-
-#include <vector>
-#include "bindable.h"
-#include "color.h"
-#include "gl.h"
-#include "programdata.h"
-
-namespace Msp {
-namespace GL {
-
-class Light;
-
-/**
-Encapsulates global lighting parameters and a number of individual lights.
-*/
-class Lighting: public Bindable<Lighting>
-{
-private:
-       Color ambient;
-       std::vector<const Light *> lights;
-
-public:
-       Lighting();
-
-       void set_ambient(const Color &);
-       const Color &get_ambient() const { return ambient; }
-
-       void attach(unsigned, const Light &);
-       void detach(unsigned);
-
-       void update_shader_data(ProgramData &, const Matrix &) const;
-       void bind() const;
-
-       static void unbind();
-};
-
-} // namespace GL
-} // namespace Msp
-
-#endif