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:
authorTon Roosendaal <ton@blender.org>2011-06-20 20:38:21 +0400
committerTon Roosendaal <ton@blender.org>2011-06-20 20:38:21 +0400
commitf6d899af052d7061b30f49ae4f25f68e1dd336cf (patch)
tree0617be5ef633d273212aa9e11e15c3d1ce435d97 /source/blender
parent692e0ebc1312fc39753a899e35f77db0577339c0 (diff)
Bugfix #27692
Render + compositing error: When adding renderlayer nodes in a composite, without having own scene render, the renderlayer nodes were not tagged as changed, causing compositing to give previous result.
Diffstat (limited to 'source/blender')
-rw-r--r--source/blender/render/intern/source/pipeline.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/source/blender/render/intern/source/pipeline.c b/source/blender/render/intern/source/pipeline.c
index 90f07586786..2a47a2db0ff 100644
--- a/source/blender/render/intern/source/pipeline.c
+++ b/source/blender/render/intern/source/pipeline.c
@@ -2233,6 +2233,8 @@ static void ntree_render_scenes(Render *re)
render_scene(re, scene, cfra);
restore_scene= (scene != re->scene);
node->id->flag &= ~LIB_DOIT;
+
+ NodeTagChanged(re->scene->nodetree, node);
}
}
}