X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;ds=sidebyside;f=synfig-core%2Ftrunk%2Fsrc%2Fmodules%2Fmod_bmp%2Ftrgt_bmp.h;h=828299f55d65540c08a36ea223dc6918add2ee16;hb=9d1ad903c690121387c92c835afab398d9f80b5a;hp=7f6800d7caf6a7ce3d328a4a1960d32dcc1680bd;hpb=16b3beced25134bef064705568ecb893a6be4e79;p=synfig.git diff --git a/synfig-core/trunk/src/modules/mod_bmp/trgt_bmp.h b/synfig-core/trunk/src/modules/mod_bmp/trgt_bmp.h index 7f6800d..828299f 100644 --- a/synfig-core/trunk/src/modules/mod_bmp/trgt_bmp.h +++ b/synfig-core/trunk/src/modules/mod_bmp/trgt_bmp.h @@ -1,4 +1,4 @@ -/* === S I N F G =========================================================== */ +/* === S Y N F I G ========================================================= */ /*! \file trgt_bmp.h ** \brief Template Header ** @@ -21,13 +21,13 @@ /* === S T A R T =========================================================== */ -#ifndef __SINFG_TRGT_BMP_H -#define __SINFG_TRGT_BMP_H +#ifndef __SYNFIG_TRGT_BMP_H +#define __SYNFIG_TRGT_BMP_H /* === H E A D E R S ======================================================= */ -#include -#include +#include +#include #include /* === M A C R O S ========================================================= */ @@ -36,27 +36,27 @@ /* === C L A S S E S & S T R U C T S ======================================= */ -class bmp : public sinfg::Target_Scanline +class bmp : public synfig::Target_Scanline { - SINFG_TARGET_MODULE_EXT + SYNFIG_TARGET_MODULE_EXT private: int rowspan; int imagecount; bool multi_image; FILE *file; - sinfg::String filename; + synfig::String filename; unsigned char *buffer; - sinfg::Color *color_buffer; - sinfg::PixelFormat pf; + synfig::Color *color_buffer; + synfig::PixelFormat pf; public: bmp(const char *filename); virtual ~bmp(); - virtual bool set_rend_desc(sinfg::RendDesc *desc); - virtual bool start_frame(sinfg::ProgressCallback *cb); + virtual bool set_rend_desc(synfig::RendDesc *desc); + virtual bool start_frame(synfig::ProgressCallback *cb); virtual void end_frame(); - virtual sinfg::Color * start_scanline(int scanline); + virtual synfig::Color * start_scanline(int scanline); virtual bool end_scanline(); };