~ubuntu-branches/ubuntu/utopic/blender/utopic-proposed

« back to all changes in this revision

Viewing changes to source/blender/render/extern/include/RE_engine.h

  • Committer: Package Import Robot
  • Author(s): Matteo F. Vescovi
  • Date: 2012-04-28 12:11:12 UTC
  • mto: (14.1.6 experimental) (1.5.1)
  • mto: This revision was merged to the branch mainline in revision 34.
  • Revision ID: package-import@ubuntu.com-20120428121112-2zi0vp8b6vejda8i
Tags: upstream-2.63
ImportĀ upstreamĀ versionĀ 2.63

Show diffs side-by-side

added added

removed removed

Lines of Context:
29
29
 *  \ingroup render
30
30
 */
31
31
 
32
 
#ifndef RE_ENGINE_H
33
 
#define RE_ENGINE_H
 
32
#ifndef __RE_ENGINE_H__
 
33
#define __RE_ENGINE_H__
34
34
 
35
35
#include "DNA_listBase.h"
36
36
#include "RNA_types.h"
84
84
        void *py_instance;
85
85
 
86
86
        int flag;
 
87
        struct Object *camera_override;
87
88
 
88
89
        struct Render *re;
89
90
        ListBase fullresult;
116
117
 
117
118
RenderEngineType *RE_engines_find(const char *idname);
118
119
 
119
 
#endif /* RE_ENGINE_H */
 
120
#endif /* __RE_ENGINE_H__ */
120
121