]> git.tdb.fi Git - libs/gl.git/blobdiff - source/texunit.h
Check the flat qualifier from the correct member
[libs/gl.git] / source / texunit.h
diff --git a/source/texunit.h b/source/texunit.h
deleted file mode 100644 (file)
index 8f0af01..0000000
+++ /dev/null
@@ -1,37 +0,0 @@
-#ifndef MSP_GL_TEXUNIT_H_
-#define MSP_GL_TEXUNIT_H_
-
-#include <vector>
-
-namespace Msp {
-namespace GL {
-
-class TexEnv;
-class Texture;
-
-class TexUnit
-{
-private:
-       const Texture *texture;
-       const TexEnv *texenv;
-
-       static std::vector<TexUnit> units;
-       static TexUnit *cur_unit;
-
-public:
-       TexUnit();
-
-       bool set_texture(const Texture *);
-       const Texture *get_texture() const { return texture; }
-       bool set_texenv(const TexEnv *);
-       const TexEnv *get_texenv() const { return texenv; }
-
-       static unsigned get_n_units();
-       static TexUnit &activate(unsigned);
-       static TexUnit &current();
-};
-
-} // namespace GL
-} // namespace Msp
-
-#endif