]> git.tdb.fi Git - libs/gl.git/blobdiff - source/texture2d.h
Move Image to mspgbase
[libs/gl.git] / source / texture2d.h
index 13073a2d74ea98cade27a9212229a365137e7175..f1b76783f7e5c5a242c96bb3528d7e7a8929ec40 100644 (file)
@@ -10,14 +10,13 @@ Distributed under the LGPL
 
 #include <string>
 #include <msp/datafile/loader.h>
+#include <msp/gbase/image.h>
 #include "pixelformat.h"
 #include "texture.h"
 
 namespace Msp {
 namespace GL {
 
-class Image;
-
 /**
 Two-dimensional texture class.  This is the most common type of texture.
 */
@@ -72,7 +71,7 @@ public:
        sizei get_height() const { return height; }
 
 private:
-       void image(const Image &);
+       void image(const Graphics::Image &);
 };
 
 } // namespace GL