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:
authorCampbell Barton <ideasman42@gmail.com>2019-04-17 07:17:24 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-04-17 07:21:24 +0300
commite12c08e8d170b7ca40f204a5b0423c23a9fbc2c1 (patch)
tree8cf3453d12edb177a218ef8009357518ec6cab6a /source/blender/compositor/nodes/COM_MapRangeNode.cpp
parentb3dabc200a4b0399ec6b81f2ff2730d07b44fcaa (diff)
ClangFormat: apply to source, most of intern
Apply clang format as proposed in T53211. For details on usage and instructions for migrating branches without conflicts, see: https://wiki.blender.org/wiki/Tools/ClangFormat
Diffstat (limited to 'source/blender/compositor/nodes/COM_MapRangeNode.cpp')
-rw-r--r--source/blender/compositor/nodes/COM_MapRangeNode.cpp35
1 files changed, 18 insertions, 17 deletions
diff --git a/source/blender/compositor/nodes/COM_MapRangeNode.cpp b/source/blender/compositor/nodes/COM_MapRangeNode.cpp
index 7abd6f4a595..3b6d2fe0dcb 100644
--- a/source/blender/compositor/nodes/COM_MapRangeNode.cpp
+++ b/source/blender/compositor/nodes/COM_MapRangeNode.cpp
@@ -23,26 +23,27 @@
MapRangeNode::MapRangeNode(bNode *editorNode) : Node(editorNode)
{
- /* pass */
+ /* pass */
}
-void MapRangeNode::convertToOperations(NodeConverter &converter, const CompositorContext &/*context*/) const
+void MapRangeNode::convertToOperations(NodeConverter &converter,
+ const CompositorContext & /*context*/) const
{
- NodeInput *valueSocket = this->getInputSocket(0);
- NodeInput *sourceMinSocket = this->getInputSocket(1);
- NodeInput *sourceMaxSocket = this->getInputSocket(2);
- NodeInput *destMinSocket = this->getInputSocket(3);
- NodeInput *destMaxSocket = this->getInputSocket(4);
- NodeOutput *outputSocket = this->getOutputSocket(0);
+ NodeInput *valueSocket = this->getInputSocket(0);
+ NodeInput *sourceMinSocket = this->getInputSocket(1);
+ NodeInput *sourceMaxSocket = this->getInputSocket(2);
+ NodeInput *destMinSocket = this->getInputSocket(3);
+ NodeInput *destMaxSocket = this->getInputSocket(4);
+ NodeOutput *outputSocket = this->getOutputSocket(0);
- MapRangeOperation *operation = new MapRangeOperation();
- operation->setUseClamp(this->getbNode()->custom1);
- converter.addOperation(operation);
+ MapRangeOperation *operation = new MapRangeOperation();
+ operation->setUseClamp(this->getbNode()->custom1);
+ converter.addOperation(operation);
- converter.mapInputSocket(valueSocket, operation->getInputSocket(0));
- converter.mapInputSocket(sourceMinSocket, operation->getInputSocket(1));
- converter.mapInputSocket(sourceMaxSocket, operation->getInputSocket(2));
- converter.mapInputSocket(destMinSocket, operation->getInputSocket(3));
- converter.mapInputSocket(destMaxSocket, operation->getInputSocket(4));
- converter.mapOutputSocket(outputSocket, operation->getOutputSocket(0));
+ converter.mapInputSocket(valueSocket, operation->getInputSocket(0));
+ converter.mapInputSocket(sourceMinSocket, operation->getInputSocket(1));
+ converter.mapInputSocket(sourceMaxSocket, operation->getInputSocket(2));
+ converter.mapInputSocket(destMinSocket, operation->getInputSocket(3));
+ converter.mapInputSocket(destMaxSocket, operation->getInputSocket(4));
+ converter.mapOutputSocket(outputSocket, operation->getOutputSocket(0));
}