]> git.tdb.fi Git - libs/gl.git/blobdiff - source/texturing.h
Check the flat qualifier from the correct member
[libs/gl.git] / source / texturing.h
diff --git a/source/texturing.h b/source/texturing.h
deleted file mode 100644 (file)
index 79647f1..0000000
+++ /dev/null
@@ -1,43 +0,0 @@
-#ifndef MSP_GL_TEXTURING_H_
-#define MSP_GL_TEXTURING_H_
-
-#include <vector>
-#include "bindable.h"
-
-namespace Msp {
-namespace GL {
-
-class Texture;
-
-class Texturing: public Bindable<Texturing>
-{
-private:
-       struct Attachment
-       {
-               unsigned unit;
-               const Texture *texture;
-
-               Attachment(unsigned, const Texture *);
-       };
-
-       std::vector<Attachment> attachments;
-
-public:
-       ~Texturing();
-
-       void attach(unsigned, const Texture &);
-       void detach(unsigned);
-private:
-       void set_attachment(unsigned, const Texture *);
-public:
-       const Texture *get_attached_texture(unsigned) const;
-
-       void bind() const;
-
-       static void unbind();
-};
-
-} // namespace GL
-} // namespace Msp;
-
-#endif