Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey Sharybin <sergey.vfx@gmail.com>2012-08-01 18:48:46 +0400
committerSergey Sharybin <sergey.vfx@gmail.com>2012-08-01 18:48:46 +0400
commit6e208ee887b003d0480a298812f279af525b1d0a (patch)
treec9a4d325386bc6adb2801d84ad06688fb409cc16 /source/blender/compositor/operations/COM_CompositorOperation.h
parentbfbda2d2846ef7f1be601938dd425fe73c87502e (diff)
Replace scene pointer with scene name to prevent possible misusages
of scene in node in future.
Diffstat (limited to 'source/blender/compositor/operations/COM_CompositorOperation.h')
-rw-r--r--source/blender/compositor/operations/COM_CompositorOperation.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/source/blender/compositor/operations/COM_CompositorOperation.h b/source/blender/compositor/operations/COM_CompositorOperation.h
index 51a31105d5c..435e06152a6 100644
--- a/source/blender/compositor/operations/COM_CompositorOperation.h
+++ b/source/blender/compositor/operations/COM_CompositorOperation.h
@@ -25,13 +25,14 @@
#include "COM_NodeOperation.h"
#include "DNA_scene_types.h"
#include "BLI_rect.h"
+#include "BLI_string.h"
/**
* @brief Compositor output operation
*/
class CompositorOperation : public NodeOperation {
private:
- const Scene *m_scene;
+ char m_sceneName[MAX_ID_NAME];
/**
* @brief local reference to the scene
@@ -65,7 +66,7 @@ private:
public:
CompositorOperation();
void executeRegion(rcti *rect, unsigned int tileNumber);
- void setScene(const Scene *scene) { this->m_scene = scene; }
+ void setSceneName(const char *sceneName) { BLI_strncpy(this->m_sceneName, sceneName, sizeof(this->m_sceneName)); }
void setRenderData(const RenderData *rd) { this->m_rd = rd; }
bool isOutputOperation(bool rendering) const { return true; }
void initExecution();