~ubuntu-branches/ubuntu/gutsy/blender/gutsy-security

« back to all changes in this revision

Viewing changes to source/blender/yafray/intern/yafray_Render.h

  • Committer: Bazaar Package Importer
  • Author(s): Lukas Fittl
  • Date: 2006-09-20 01:57:27 UTC
  • mfrom: (1.2.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20060920015727-gmoqlxwstx9wwqs3
Tags: 2.42a-1ubuntu1
* Merge from Debian unstable (Closes: Malone #55903). Remaining changes:
  - debian/genpot: Add python scripts from Lee June <blender@eyou.com> to
    generate a reasonable PO template from the sources. Since gettext is used
    in a highly nonstandard way, xgettext does not work for this job.
  - debian/rules: Call the scripts, generate po/blender.pot, and clean it up
    in the clean target.
  - Add a proper header to the generated PO template.
* debian/control: Build depend on libavformat-dev >= 3:0.cvs20060823-3.1,
  otherwise this package will FTBFS

Show diffs side-by-side

added added

removed removed

Lines of Context:
9
9
#include "IMB_imbuf_types.h"
10
10
 
11
11
#include "DNA_camera_types.h"
 
12
#include "DNA_group_types.h"
12
13
#include "DNA_image_types.h"
13
14
#include "DNA_lamp_types.h"
14
15
#include "DNA_material_types.h"
22
23
 
23
24
#include "BKE_global.h"
24
25
#include "BKE_image.h"
25
 
#include "render.h"
 
26
 
 
27
#include "render_types.h"
 
28
/* display_draw() needs render layer info */
 
29
#include "renderpipeline.h"
26
30
 
27
31
/* useful matrix & vector operations */
28
32
#include "MTC_matrixops.h"
57
61
                virtual ~yafrayRender_t() {}
58
62
 
59
63
                // mtds
60
 
                bool exportScene();
 
64
                bool exportScene(Render* re);
61
65
                void addDupliMtx(Object* obj);
62
66
                bool objectKnownData(Object* obj);
63
67
 
64
68
        protected:
 
69
                Render* re;
65
70
                Object* maincam_obj;
66
71
                float mainCamLens;
67
72
 
92
97
                virtual bool writeRender()=0;
93
98
                virtual bool initExport()=0;
94
99
                virtual bool finishExport()=0;
95
 
                
 
100
 
96
101
                void clearAll();
97
 
 
98
102
};
99
103
 
100
104
#endif