X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Filwrap.h;fp=source%2Filwrap.h;h=0000000000000000000000000000000000000000;hb=a5797c9babd17673285b3b15c7572c2d8fe1595c;hp=331cfd32a2b625db1cb5d35cd8943a1c4277a771;hpb=d23880571efc16dff1cfeeb92f35fe54c8f64c3d;p=libs%2Fgl.git diff --git a/source/ilwrap.h b/source/ilwrap.h deleted file mode 100644 index 331cfd32..00000000 --- a/source/ilwrap.h +++ /dev/null @@ -1,36 +0,0 @@ -/* $Id$ - -This file is part of libmspgl -Copyright © 2007 Mikko Rasa, Mikkosoft Productions -Distributed under the LGPL -*/ - -#ifndef MSP_GL_ILWRAP_H_ -#define MSP_GL_ILWRAP_H_ - -#include "pixelformat.h" - -namespace Msp { -namespace GL { - -class Image -{ -private: - unsigned id; - -public: - Image(); - ~Image(); - - void load_file(const std::string &); - void load_lump(const void *, unsigned); - PixelFormat get_format() const; - unsigned get_width() const; - unsigned get_height() const; - const void *get_data() const; -}; - -} // namespace GL -} // namespace Msp - -#endif