Changeset View
Changeset View
Standalone View
Standalone View
source/blender/compositor/intern/COM_CompositorContext.h
| Show First 20 Lines • Show All 45 Lines • ▼ Show 20 Lines | private: | ||||
| /** | /** | ||||
| * @brief The quality of the composite. | * @brief The quality of the composite. | ||||
| * This field is initialized in ExecutionSystem and must only be read from that point on. | * This field is initialized in ExecutionSystem and must only be read from that point on. | ||||
| * @see ExecutionSystem | * @see ExecutionSystem | ||||
| */ | */ | ||||
| CompositorQuality m_quality; | CompositorQuality m_quality; | ||||
| Scene *m_scene; | |||||
| /** | /** | ||||
| * @brief Reference to the render data that is being composited. | * @brief Reference to the render data that is being composited. | ||||
| * This field is initialized in ExecutionSystem and must only be read from that point on. | * This field is initialized in ExecutionSystem and must only be read from that point on. | ||||
| * @see ExecutionSystem | * @see ExecutionSystem | ||||
| */ | */ | ||||
| RenderData *m_rd; | RenderData *m_rd; | ||||
| /** | /** | ||||
| ▲ Show 20 Lines • Show All 53 Lines • ▼ Show 20 Lines | public: | ||||
| * @brief get the bnodetree of the context | * @brief get the bnodetree of the context | ||||
| */ | */ | ||||
| const bNodeTree *getbNodeTree() const { return this->m_bnodetree; } | const bNodeTree *getbNodeTree() const { return this->m_bnodetree; } | ||||
| /** | /** | ||||
| * @brief get the scene of the context | * @brief get the scene of the context | ||||
| */ | */ | ||||
| const RenderData *getRenderData() const { return this->m_rd; } | const RenderData *getRenderData() const { return this->m_rd; } | ||||
| void setScene(Scene *scene) { m_scene = scene; } | |||||
| Scene *getScene() const { return m_scene; } | |||||
| /** | /** | ||||
| * @brief set the preview image hash table | * @brief set the preview image hash table | ||||
| */ | */ | ||||
| void setPreviewHash(bNodeInstanceHash *previews) { this->m_previews = previews; } | void setPreviewHash(bNodeInstanceHash *previews) { this->m_previews = previews; } | ||||
| /** | /** | ||||
| * @brief get the preview image hash table | * @brief get the preview image hash table | ||||
| */ | */ | ||||
| ▲ Show 20 Lines • Show All 56 Lines • Show Last 20 Lines | |||||