moreupdates
[synfig.git] / synfig-core / trunk / 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 Robert B. Quattlebaum Jr.
9 **
10 **      This software and associated documentation
11 **      are CONFIDENTIAL and PROPRIETARY property of
12 **      the above-mentioned copyright holder.
13 **
14 **      You may not copy, print, publish, or in any
15 **      other way distribute this software without
16 **      a prior written agreement with
17 **      the copyright holder.
18 **      \endlegal
19 */
20 /* ========================================================================= */
21
22 /* === S T A R T =========================================================== */
23
24 #ifndef __SYNFIG_TARGET_NULL_H
25 #define __SYNFIG_TARGET_NULL_H
26
27 /* === H E A D E R S ======================================================= */
28
29 #include "target_scanline.h"
30 #include "general.h"
31
32 /* === M A C R O S ========================================================= */
33
34 /* === T Y P E D E F S ===================================================== */
35
36 /* === C L A S S E S & S T R U C T S ======================================= */
37
38 namespace synfig {
39
40 /*!     \class Target_Null
41 **      \brief A target which renders to nothing. Useful for benchmarks and other tests.
42 **      \todo writeme
43 */
44 class Target_Null : public Target_Scanline
45 {
46         Color *buffer;
47         
48         Target_Null():buffer(0) { }
49         
50 public:
51
52         ~Target_Null() { delete buffer; } 
53
54         virtual bool start_frame(ProgressCallback *cb=NULL)
55                 { delete buffer; buffer=new Color[desc.get_w()*sizeof(Color)]; return true; }
56
57         virtual void end_frame() { delete buffer; buffer=0; return; }
58
59         virtual Color * start_scanline(int scanline) { return buffer; }
60
61         virtual bool end_scanline() { return true; }
62         
63         static Target* create(const char *filename=0) { return new Target_Null(); }
64 }; // END of class Target_Null
65
66 }; // END of namespace synfig
67
68 /* === E N D =============================================================== */
69
70 #endif