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:
authorManuel Castilla <manzanillawork@gmail.com>2021-10-14 00:01:15 +0300
committerManuel Castilla <manzanillawork@gmail.com>2021-10-14 00:41:14 +0300
commit1c42d4930a24d639b3aa561b9a8b4bbce05977e0 (patch)
tree68c2aae3fd5ae98b78708bea28c0b55d3f4fb5f0 /source/blender/compositor/nodes/COM_DifferenceMatteNode.cc
parenta2ee3c3a9f01f5cb2f05f1e84a1b6c1931d9d4a4 (diff)
Cleanup: convert camelCase naming to snake_case in Compositor
To convert old code to the current convention and use a single code style.
Diffstat (limited to 'source/blender/compositor/nodes/COM_DifferenceMatteNode.cc')
-rw-r--r--source/blender/compositor/nodes/COM_DifferenceMatteNode.cc38
1 files changed, 19 insertions, 19 deletions
diff --git a/source/blender/compositor/nodes/COM_DifferenceMatteNode.cc b/source/blender/compositor/nodes/COM_DifferenceMatteNode.cc
index 9700b761eca..ceb5be7bd08 100644
--- a/source/blender/compositor/nodes/COM_DifferenceMatteNode.cc
+++ b/source/blender/compositor/nodes/COM_DifferenceMatteNode.cc
@@ -22,36 +22,36 @@
namespace blender::compositor {
-DifferenceMatteNode::DifferenceMatteNode(bNode *editorNode) : Node(editorNode)
+DifferenceMatteNode::DifferenceMatteNode(bNode *editor_node) : Node(editor_node)
{
/* pass */
}
-void DifferenceMatteNode::convertToOperations(NodeConverter &converter,
- const CompositorContext & /*context*/) const
+void DifferenceMatteNode::convert_to_operations(NodeConverter &converter,
+ const CompositorContext & /*context*/) const
{
- NodeInput *inputSocket = this->getInputSocket(0);
- NodeInput *inputSocket2 = this->getInputSocket(1);
- NodeOutput *outputSocketImage = this->getOutputSocket(0);
- NodeOutput *outputSocketMatte = this->getOutputSocket(1);
- bNode *editorNode = this->getbNode();
+ NodeInput *input_socket = this->get_input_socket(0);
+ NodeInput *input_socket2 = this->get_input_socket(1);
+ NodeOutput *output_socket_image = this->get_output_socket(0);
+ NodeOutput *output_socket_matte = this->get_output_socket(1);
+ bNode *editor_node = this->get_bnode();
- DifferenceMatteOperation *operationSet = new DifferenceMatteOperation();
- operationSet->setSettings((NodeChroma *)editorNode->storage);
- converter.addOperation(operationSet);
+ DifferenceMatteOperation *operation_set = new DifferenceMatteOperation();
+ operation_set->set_settings((NodeChroma *)editor_node->storage);
+ converter.add_operation(operation_set);
- converter.mapInputSocket(inputSocket, operationSet->getInputSocket(0));
- converter.mapInputSocket(inputSocket2, operationSet->getInputSocket(1));
- converter.mapOutputSocket(outputSocketMatte, operationSet->getOutputSocket(0));
+ converter.map_input_socket(input_socket, operation_set->get_input_socket(0));
+ converter.map_input_socket(input_socket2, operation_set->get_input_socket(1));
+ converter.map_output_socket(output_socket_matte, operation_set->get_output_socket(0));
SetAlphaMultiplyOperation *operation = new SetAlphaMultiplyOperation();
- converter.addOperation(operation);
+ converter.add_operation(operation);
- converter.mapInputSocket(inputSocket, operation->getInputSocket(0));
- converter.addLink(operationSet->getOutputSocket(), operation->getInputSocket(1));
- converter.mapOutputSocket(outputSocketImage, operation->getOutputSocket());
+ converter.map_input_socket(input_socket, operation->get_input_socket(0));
+ converter.add_link(operation_set->get_output_socket(), operation->get_input_socket(1));
+ converter.map_output_socket(output_socket_image, operation->get_output_socket());
- converter.addPreview(operation->getOutputSocket());
+ converter.add_preview(operation->get_output_socket());
}
} // namespace blender::compositor