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_ColorMatteNode.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_ColorMatteNode.cc')
-rw-r--r--source/blender/compositor/nodes/COM_ColorMatteNode.cc46
1 files changed, 23 insertions, 23 deletions
diff --git a/source/blender/compositor/nodes/COM_ColorMatteNode.cc b/source/blender/compositor/nodes/COM_ColorMatteNode.cc
index 345cdb3ecf7..629ae932eb7 100644
--- a/source/blender/compositor/nodes/COM_ColorMatteNode.cc
+++ b/source/blender/compositor/nodes/COM_ColorMatteNode.cc
@@ -23,44 +23,44 @@
namespace blender::compositor {
-ColorMatteNode::ColorMatteNode(bNode *editorNode) : Node(editorNode)
+ColorMatteNode::ColorMatteNode(bNode *editor_node) : Node(editor_node)
{
/* pass */
}
-void ColorMatteNode::convertToOperations(NodeConverter &converter,
- const CompositorContext & /*context*/) const
+void ColorMatteNode::convert_to_operations(NodeConverter &converter,
+ const CompositorContext & /*context*/) const
{
- bNode *editorsnode = getbNode();
+ bNode *editorsnode = get_bnode();
- NodeInput *inputSocketImage = this->getInputSocket(0);
- NodeInput *inputSocketKey = this->getInputSocket(1);
- NodeOutput *outputSocketImage = this->getOutputSocket(0);
- NodeOutput *outputSocketMatte = this->getOutputSocket(1);
+ NodeInput *input_socket_image = this->get_input_socket(0);
+ NodeInput *input_socket_key = this->get_input_socket(1);
+ NodeOutput *output_socket_image = this->get_output_socket(0);
+ NodeOutput *output_socket_matte = this->get_output_socket(1);
ConvertRGBToHSVOperation *operationRGBToHSV_Image = new ConvertRGBToHSVOperation();
ConvertRGBToHSVOperation *operationRGBToHSV_Key = new ConvertRGBToHSVOperation();
- converter.addOperation(operationRGBToHSV_Image);
- converter.addOperation(operationRGBToHSV_Key);
+ converter.add_operation(operationRGBToHSV_Image);
+ converter.add_operation(operationRGBToHSV_Key);
ColorMatteOperation *operation = new ColorMatteOperation();
- operation->setSettings((NodeChroma *)editorsnode->storage);
- converter.addOperation(operation);
+ operation->set_settings((NodeChroma *)editorsnode->storage);
+ converter.add_operation(operation);
- SetAlphaMultiplyOperation *operationAlpha = new SetAlphaMultiplyOperation();
- converter.addOperation(operationAlpha);
+ SetAlphaMultiplyOperation *operation_alpha = new SetAlphaMultiplyOperation();
+ converter.add_operation(operation_alpha);
- converter.mapInputSocket(inputSocketImage, operationRGBToHSV_Image->getInputSocket(0));
- converter.mapInputSocket(inputSocketKey, operationRGBToHSV_Key->getInputSocket(0));
- converter.addLink(operationRGBToHSV_Image->getOutputSocket(), operation->getInputSocket(0));
- converter.addLink(operationRGBToHSV_Key->getOutputSocket(), operation->getInputSocket(1));
- converter.mapOutputSocket(outputSocketMatte, operation->getOutputSocket(0));
+ converter.map_input_socket(input_socket_image, operationRGBToHSV_Image->get_input_socket(0));
+ converter.map_input_socket(input_socket_key, operationRGBToHSV_Key->get_input_socket(0));
+ converter.add_link(operationRGBToHSV_Image->get_output_socket(), operation->get_input_socket(0));
+ converter.add_link(operationRGBToHSV_Key->get_output_socket(), operation->get_input_socket(1));
+ converter.map_output_socket(output_socket_matte, operation->get_output_socket(0));
- converter.mapInputSocket(inputSocketImage, operationAlpha->getInputSocket(0));
- converter.addLink(operation->getOutputSocket(), operationAlpha->getInputSocket(1));
- converter.mapOutputSocket(outputSocketImage, operationAlpha->getOutputSocket());
+ converter.map_input_socket(input_socket_image, operation_alpha->get_input_socket(0));
+ converter.add_link(operation->get_output_socket(), operation_alpha->get_input_socket(1));
+ converter.map_output_socket(output_socket_image, operation_alpha->get_output_socket());
- converter.addPreview(operationAlpha->getOutputSocket());
+ converter.add_preview(operation_alpha->get_output_socket());
}
} // namespace blender::compositor