]> git.tdb.fi Git - libs/gl.git/blobdiff - source/texture2d.h
Check the flat qualifier from the correct member
[libs/gl.git] / source / texture2d.h
diff --git a/source/texture2d.h b/source/texture2d.h
deleted file mode 100644 (file)
index e06ea92..0000000
+++ /dev/null
@@ -1,34 +0,0 @@
-/* $Id$
-
-This file is part of libmspgl
-Copyright © 2007  Mikko Rasa, Mikkosoft Productions
-Distributed under the LGPL
-*/
-
-#ifndef MSP_GL_TEXTURE2D_H_
-#define MSP_GL_TEXTURE2D_H_
-
-#include <string>
-#include "texture.h"
-
-namespace Msp {
-namespace GL {
-
-class Texture2D: public Texture
-{
-public:
-       Texture2D();
-       void image(int, int, sizei, sizei, int, GLenum, GLenum, void *);
-       void image(int, sizei, sizei, TextureFormat, void *);
-       void image(const std::string &);
-       sizei get_width() const  { return width_; }
-       sizei get_height() const { return height_; }
-private:
-       sizei width_;
-       sizei height_;
-};
-
-} // namespace GL
-} // namespace Msp
-
-#endif