synfig-core  1.0.3
target_null.h
Go to the documentation of this file.
1 /* === S Y N F I G ========================================================= */
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 
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