X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Ftexture2d.h;h=2a49eca572ee06e25a7a770488b0639d6fd07fc9;hb=refs%2Fheads%2Fmaster;hp=e06ea920a1aff896f7c1c50ed1f87fac75e7b007;hpb=f098a871fc6dc7b61a5aca5581fa327e4124c036;p=libs%2Fgl.git diff --git a/source/texture2d.h b/source/texture2d.h deleted file mode 100644 index e06ea920..00000000 --- a/source/texture2d.h +++ /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 -#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