X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=synfig-core%2Ftrunk%2Fsrc%2Fsynfig%2Ftarget_tile.h;h=84ef50e09fc893b6256f1eb6267b51aac86d53ca;hb=9459638ad6797b8139f1e9f0715c96076dbf0890;hp=3326ec1f7c875e4f4fd2891237a2d9a481dba194;hpb=28f28705612902c15cd0702cc891fba35bf2d2df;p=synfig.git diff --git a/synfig-core/trunk/src/synfig/target_tile.h b/synfig-core/trunk/src/synfig/target_tile.h index 3326ec1..84ef50e 100644 --- a/synfig-core/trunk/src/synfig/target_tile.h +++ b/synfig-core/trunk/src/synfig/target_tile.h @@ -2,19 +2,21 @@ /*! \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 Robert B. Quattlebaum Jr. +** Copyright (c) 2002-2005 Robert B. Quattlebaum Jr., Adrian Bentley +** Copyright (c) 2008 Chris Moore ** -** This software and associated documentation -** are CONFIDENTIAL and PROPRIETARY property of -** the above-mentioned copyright holder. +** This package is free software; you can redistribute it and/or +** modify it under the terms of the GNU General Public License as +** published by the Free Software Foundation; either version 2 of +** the License, or (at your option) any later version. ** -** You may not copy, print, publish, or in any -** other way distribute this software without -** a prior written agreement with -** the copyright holder. +** This package is distributed in the hope that it will be useful, +** but WITHOUT ANY WARRANTY; without even the implied warranty of +** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +** General Public License for more details. ** \endlegal */ /* ========================================================================= */ @@ -30,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 ======================================= */ @@ -59,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, @@ -69,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 @@ -77,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; } @@ -90,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_; } @@ -102,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