X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fgraphics%2Fbmploader.h;h=60be2dc14cf066a87450eefba6e05613109cbc89;hb=8012fe7bc014388e666d770a8cf0a239bb1350d1;hp=9ae8f4e7c21bbd0d7a8312281c539170e87ec52f;hpb=2ebdf45974a0a7649b3488f9da4b8cf90a1db584;p=libs%2Fgui.git diff --git a/source/graphics/bmploader.h b/source/graphics/bmploader.h index 9ae8f4e..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