X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=synfig-core%2Ftrunk%2Fsrc%2Fsynfig%2Ftarget_tile.h;h=84ef50e09fc893b6256f1eb6267b51aac86d53ca;hb=3c84217d4e5701c51c796df7c745ad39d90903a8;hp=1cff27de0fcd65459190632e34975503df16a3cb;hpb=e8a065f2385c219c511b57dac52786120bfa097d;p=synfig.git diff --git a/synfig-core/trunk/src/synfig/target_tile.h b/synfig-core/trunk/src/synfig/target_tile.h index 1cff27d..84ef50e 100644 --- a/synfig-core/trunk/src/synfig/target_tile.h +++ b/synfig-core/trunk/src/synfig/target_tile.h @@ -2,10 +2,11 @@ /*! \file target_tile.h ** \brief Template Header ** -** $Id: target_tile.h,v 1.1.1.1 2005/01/04 01:23:15 darco Exp $ +** $Id$ ** ** \legal ** Copyright (c) 2002-2005 Robert B. Quattlebaum Jr., Adrian Bentley +** Copyright (c) 2008 Chris Moore ** ** This package is free software; you can redistribute it and/or ** modify it under the terms of the GNU General Public License as @@ -31,6 +32,8 @@ /* === M A C R O S ========================================================= */ +#define TILE_SIZE 120 + /* === T Y P E D E F S ===================================================== */ /* === C L A S S E S & S T R U C T S ======================================= */ @@ -60,7 +63,7 @@ public: virtual bool render(ProgressCallback *cb=NULL); //! Determines which tile needs to be rendered next. - /*! Most cases will not have to redefine this function. + /*! Most cases will not have to redefine this function. ** The default should be adequate in nearly all situations. ** \returns The number of tiles left to go plus one. ** This means that whenever this function returns zero, @@ -70,7 +73,7 @@ public: virtual int next_frame(Time& time); - //! Adds the tile at \a x , \a y contained in \a surface + //! Adds the tile at \a x , \a y contained in \a surface virtual bool add_tile(const synfig::Surface &surface, int x, int y)=0; virtual int total_tiles()const @@ -78,7 +81,7 @@ public: // Width of the image(in tiles) const int tw(rend_desc().get_w()/tile_w_+(rend_desc().get_w()%tile_w_?1:0)); const int th(rend_desc().get_h()/tile_h_+(rend_desc().get_h()%tile_h_?1:0)); - + return tw*th; } @@ -91,7 +94,7 @@ public: //! Marks the end of a frame /*! \see start_frame() */ virtual void end_frame()=0; - + void set_threads(int x) { threads_=x; } int get_threads()const { return threads_; } @@ -103,15 +106,15 @@ public: void set_tile_h(int h) { tile_h_=h; } int get_tile_h()const { return tile_h_; } - + bool get_clipping()const { return clipping_; } void set_clipping(bool x) { clipping_=x; } - + private: - + bool render_frame_(Context context,ProgressCallback *cb=0); - + }; // END of class Target_Tile }; // END of namespace synfig