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 Tönne <lukas.toenne@gmail.com>2014-04-23 19:00:04 +0400
committerLukas Tönne <lukas.toenne@gmail.com>2014-04-23 19:01:38 +0400
commitad6d897d98ce8c8ad31c37da7f4faafbbb11ef95 (patch)
tree76a629149518c2b16a866765d0b8ed04dd4b342d /source/blender/compositor/intern/COM_NodeGraph.h
parent14ab812da55ad08bc00f90fe0b9efa91c60daa71 (diff)
Fix T39848: Reroute nodes were not handled properly after compositor
cleanup patch. These simply need a proxy node, which will be replaced by direct operation links afterward.
Diffstat (limited to 'source/blender/compositor/intern/COM_NodeGraph.h')
-rw-r--r--source/blender/compositor/intern/COM_NodeGraph.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/source/blender/compositor/intern/COM_NodeGraph.h b/source/blender/compositor/intern/COM_NodeGraph.h
index fab4f2b3446..81799d76e1d 100644
--- a/source/blender/compositor/intern/COM_NodeGraph.h
+++ b/source/blender/compositor/intern/COM_NodeGraph.h
@@ -105,6 +105,8 @@ protected:
void add_proxies_group_outputs(bNode *b_node, bNode *b_node_io, bool use_buffer);
void add_proxies_group(const CompositorContext &context, bNode *b_node, bNodeInstanceKey key);
+ void add_proxies_reroute(bNodeTree *b_ntree, bNode *b_node, bNodeInstanceKey key, bool is_active_group);
+
#ifdef WITH_CXX_GUARDEDALLOC
MEM_CXX_CLASS_ALLOC_FUNCS("COM:NodeGraph")
#endif