]> git.tdb.fi Git - libs/gl.git/blobdiff - source/uniformblock.h
Check the flat qualifier from the correct member
[libs/gl.git] / source / uniformblock.h
diff --git a/source/uniformblock.h b/source/uniformblock.h
deleted file mode 100644 (file)
index 3a1cdb9..0000000
+++ /dev/null
@@ -1,33 +0,0 @@
-#ifndef MSP_GL_UNIFORMBLOCK_H_
-#define MSP_GL_UNIFORMBLOCK_H_
-
-#include <map>
-
-namespace Msp {
-namespace GL {
-
-class Color;
-class Matrix;
-class Uniform;
-class Vector3;
-class Vector4;
-
-class UniformBlock
-{
-private:
-       std::map<int, const Uniform *> uniforms;
-
-       UniformBlock(const UniformBlock &);
-       UniformBlock &operator=(const UniformBlock &);
-public:
-       UniformBlock() { }
-
-       void attach(int, const Uniform &);
-
-       void apply(int) const;
-};
-
-} // namespace GL
-} // namespace Msp
-
-#endif