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:
authorLukas Toenne <lukas.toenne@googlemail.com>2013-06-12 15:26:44 +0400
committerLukas Toenne <lukas.toenne@googlemail.com>2013-06-12 15:26:44 +0400
commit0c91ebfeee94500ebd76d15119261c6d0f72b41f (patch)
tree56085fede92d05e6017cde223b0f94e1018db64a /source/blender/nodes/NOD_composite.h
parent793e582d1a65bf2fbe285ae624916a569a8fdc17 (diff)
Fix #35703, Viewer node doesn't updates image sometimes. The viewer node was not getting correctly initialized node->id pointer to the Viewer image (thanks to Sergey for figuring that out). The original
proposal was to add another special init hack for the viewer node->id, but rather would do it right and so moved all the special init hacks for constant ID backpointers (Scene for RenderLayer, Composite, Defocus, FileOutput and MovieClip for MovieClip, MovieDistortion and Stabilization nodes). These are now part of the local init callbacks functions of the appropriate nodes, using the new initfunc_api callback which takes a Context pointer, so they have access to Scene.
Diffstat (limited to 'source/blender/nodes/NOD_composite.h')
-rw-r--r--source/blender/nodes/NOD_composite.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/source/blender/nodes/NOD_composite.h b/source/blender/nodes/NOD_composite.h
index 896714338e5..626e7955b08 100644
--- a/source/blender/nodes/NOD_composite.h
+++ b/source/blender/nodes/NOD_composite.h
@@ -138,4 +138,6 @@ void register_node_type_cmp_switch(void);
void register_node_type_cmp_pixelate(void);
void register_node_type_cmp_trackpos(void);
+void node_cmp_rlayers_force_hidden_passes(struct bNode *node);
+
#endif