Fix bugs in previous commit that caused FTBFS in synfig and ETL FTBFS with older...
[synfig.git] / synfig-core / tags / synfig_0_61_03 / synfig-core / src / synfig / target_null.h
1 /* === S Y N F I G ========================================================= */
2 /*!     \file target_null.h
3 **      \brief Template Header
4 **
5 **      $Id: target_null.h,v 1.1.1.1 2005/01/04 01:23:15 darco Exp $
6 **
7 **      \legal
8 **      Copyright (c) 2002-2005 Robert B. Quattlebaum Jr., Adrian Bentley
9 **
10 **      This package is free software; you can redistribute it and/or
11 **      modify it under the terms of the GNU General Public License as
12 **      published by the Free Software Foundation; either version 2 of
13 **      the License, or (at your option) any later version.
14 **
15 **      This package is distributed in the hope that it will be useful,
16 **      but WITHOUT ANY WARRANTY; without even the implied warranty of
17 **      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 **      General Public License for more details.
19 **      \endlegal
20 */
21 /* ========================================================================= */
22
23 /* === S T A R T =========================================================== */
24
25 #ifndef __SYNFIG_TARGET_NULL_H
26 #define __SYNFIG_TARGET_NULL_H
27
28 /* === H E A D E R S ======================================================= */
29
30 #include "target_scanline.h"
31 #include "general.h"
32
33 /* === M A C R O S ========================================================= */
34
35 /* === T Y P E D E F S ===================================================== */
36
37 /* === C L A S S E S & S T R U C T S ======================================= */
38
39 namespace synfig {
40
41 /*!     \class Target_Null
42 **      \brief A target which renders to nothing. Useful for benchmarks and other tests.
43 **      \todo writeme
44 */
45 class Target_Null : public Target_Scanline
46 {
47         Color *buffer;
48         
49         Target_Null():buffer(0) { }
50         
51 public:
52
53         ~Target_Null() { delete buffer; } 
54
55         virtual bool start_frame(ProgressCallback *cb=NULL)
56                 { delete buffer; buffer=new Color[desc.get_w()*sizeof(Color)]; return true; }
57
58         virtual void end_frame() { delete buffer; buffer=0; return; }
59
60         virtual Color * start_scanline(int scanline) { return buffer; }
61
62         virtual bool end_scanline() { return true; }
63         
64         static Target* create(const char *filename=0) { return new Target_Null(); }
65 }; // END of class Target_Null
66
67 }; // END of namespace synfig
68
69 /* === E N D =============================================================== */
70
71 #endif