~ubuntu-branches/ubuntu/trusty/blender/trusty-proposed

« back to all changes in this revision

Viewing changes to source/blender/compositor/operations/COM_RenderLayersBaseProg.h

  • Committer: Package Import Robot
  • Author(s): Matteo F. Vescovi
  • Date: 2013-08-14 10:43:49 UTC
  • mfrom: (14.2.19 sid)
  • Revision ID: package-import@ubuntu.com-20130814104349-t1d5mtwkphp12dyj
Tags: 2.68a-3
* Upload to unstable
* debian/: python3.3 Depends simplified
  - debian/control: python3.3 Depends dropped
    for blender-data package
  - 0001-blender_thumbnailer.patch refreshed
* debian/control: libavcodec b-dep versioning dropped

Show diffs side-by-side

added added

removed removed

Lines of Context:
63
63
        int m_renderpass;
64
64
        
65
65
        int m_elementsize;
66
 
        
 
66
 
 
67
        /**
 
68
         * @brief render data used for active rendering
 
69
         */
 
70
        const RenderData *m_rd;
 
71
 
67
72
protected:
68
73
        /**
69
74
         * Constructor
89
94
         */
90
95
        void setScene(Scene *scene) { this->m_scene = scene; }
91
96
        Scene *getScene() { return this->m_scene; }
 
97
        void setRenderData(const RenderData *rd) { this->m_rd = rd; }
92
98
        void setLayerId(short layerId) { this->m_layerId = layerId; }
93
99
        short getLayerId() { return this->m_layerId; }
94
100
        void initExecution();