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_MixNode.cpp')
-rw-r--r--source/blender/compositor/nodes/COM_MixNode.cpp8
1 files changed, 5 insertions, 3 deletions
diff --git a/source/blender/compositor/nodes/COM_MixNode.cpp b/source/blender/compositor/nodes/COM_MixNode.cpp
index 1477163d1fc..63ab83834f2 100644
--- a/source/blender/compositor/nodes/COM_MixNode.cpp
+++ b/source/blender/compositor/nodes/COM_MixNode.cpp
@@ -46,16 +46,18 @@
#include "DNA_material_types.h" // the ramp types
-MixNode::MixNode(bNode *editorNode): Node(editorNode) {
+MixNode::MixNode(bNode *editorNode): Node(editorNode)
+{
}
-void MixNode::convertToOperations(ExecutionSystem *graph, CompositorContext * context) {
+void MixNode::convertToOperations(ExecutionSystem *graph, CompositorContext * context)
+{
InputSocket *valueSocket = this->getInputSocket(0);
InputSocket *color1Socket = this->getInputSocket(1);
InputSocket *color2Socket = this->getInputSocket(2);
OutputSocket *outputSocket = this->getOutputSocket(0);
- bNode* editorNode = this->getbNode();
+ bNode *editorNode = this->getbNode();
MixBaseOperation *convertProg;