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:
Diffstat (limited to 'source/blender/compositor/nodes/COM_GroupNode.cpp')
-rw-r--r--source/blender/compositor/nodes/COM_GroupNode.cpp11
1 files changed, 7 insertions, 4 deletions
diff --git a/source/blender/compositor/nodes/COM_GroupNode.cpp b/source/blender/compositor/nodes/COM_GroupNode.cpp
index 14718909de9..67e829a5cf6 100644
--- a/source/blender/compositor/nodes/COM_GroupNode.cpp
+++ b/source/blender/compositor/nodes/COM_GroupNode.cpp
@@ -24,13 +24,16 @@
#include "COM_SocketProxyNode.h"
#include "COM_ExecutionSystemHelper.h"
-GroupNode::GroupNode(bNode *editorNode): Node(editorNode) {
+GroupNode::GroupNode(bNode *editorNode): Node(editorNode)
+{
}
-void GroupNode::convertToOperations(ExecutionSystem *graph, CompositorContext * context) {
+void GroupNode::convertToOperations(ExecutionSystem *graph, CompositorContext * context)
+{
}
-void GroupNode::ungroup(ExecutionSystem &system) {
+void GroupNode::ungroup(ExecutionSystem &system)
+{
vector<InputSocket*> &inputsockets = this->getInputSockets();
vector<OutputSocket*> &outputsockets = this->getOutputSockets();
unsigned int index;
@@ -65,6 +68,6 @@ void GroupNode::ungroup(ExecutionSystem &system) {
}
}
- bNodeTree* subtree = (bNodeTree*)this->getbNode()->id;
+ bNodeTree *subtree = (bNodeTree*)this->getbNode()->id;
ExecutionSystemHelper::addbNodeTree(system, nodes_start, subtree);
}