]> git.tdb.fi Git - libs/gui.git/blobdiff - source/graphics/image.h
Dirty hack to pull the image loaders in when linking statically
[libs/gui.git] / source / graphics / image.h
index bfaeef84a00fbf7b945dbac8cc51d0fc593673bd..29fd288c5634ca96a0b26c604b0cb56968ee89a3 100644 (file)
@@ -3,7 +3,7 @@
 
 #include <stdexcept>
 #include <string>
-#include <msp/io/base.h>
+#include <msp/io/seekable.h>
 #include "pixelformat.h"
 
 namespace Msp {
@@ -19,6 +19,7 @@ public:
                PixelFormat fmt;
                unsigned width;
                unsigned height;
+               unsigned stride;
                char *data;
 
                Data();
@@ -30,12 +31,13 @@ private:
 
 public:
        void load_file(const std::string &);
-       void load_io(IO::Base &);
+       void load_io(IO::Seekable &);
        void load(ImageLoader &);
 
        PixelFormat get_format() const { return data.fmt; }
        unsigned get_width() const { return data.width; }
        unsigned get_height() const { return data.height; }
+       unsigned get_stride() const { return data.stride; }
        const void *get_data() const { return data.data; }
 };