]> 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 8962e63..0000000
+++ /dev/null
@@ -1,49 +0,0 @@
-#ifndef MSP_GL_TEXUNIT_H_
-#define MSP_GL_TEXUNIT_H_
-
-#include <vector>
-
-namespace Msp {
-namespace GL {
-
-class TexEnv;
-class TexGen;
-class Texture;
-
-/**
-Keeps track of texture unit related state.  Mostly for internal use.
-*/
-class TexUnit
-{
-private:
-       unsigned index;
-       const Texture *texture;
-       const TexEnv *texenv;
-       const TexGen *texgen[4];
-
-       static std::vector<TexUnit> units;
-       static TexUnit *cur_unit;
-
-public:
-       TexUnit();
-
-       unsigned get_index() const { return index; }
-       bool set_texture(const Texture *);
-       const Texture *get_texture() const { return texture; }
-       bool set_texenv(const TexEnv *);
-       const TexEnv *get_texenv() const { return texenv; }
-       bool set_texgen(unsigned, const TexGen *);
-       const TexGen *get_texgen(unsigned);
-       void bind();
-
-       static unsigned get_n_units();
-       static TexUnit &get_unit(unsigned);
-       static TexUnit &current();
-       static TexUnit *find_unit(const Texture *);
-       static TexUnit *find_unit(const TexEnv *);
-};
-
-} // namespace GL
-} // namespace Msp
-
-#endif