X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fgraphics%2Fbmploader.h;h=60be2dc14cf066a87450eefba6e05613109cbc89;hb=7302a061c57602203895b616bf54d96269c677c6;hp=273e104407056300f29367c7343c5636a5c82c47;hpb=d3bc6c9c2cfaaedaabfd4b5b7bf4e1da2de51331;p=libs%2Fgui.git diff --git a/source/graphics/bmploader.h b/source/graphics/bmploader.h index 273e104..60be2dc 100644 --- a/source/graphics/bmploader.h +++ b/source/graphics/bmploader.h @@ -11,6 +11,7 @@ class BmpLoader: public ImageLoader private: IO::Base &io; unsigned sig_bytes; + bool invert_row_order; public: BmpLoader(IO::Base &, unsigned = 0); @@ -18,7 +19,8 @@ public: static unsigned get_signature_size() { return 2; } static bool detect(const std::string &); - virtual void load(Image::Data &); + virtual void load_headers_(Image::Data &); + virtual void load_pixels_(Image::Data &); }; } // namespace Graphics