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_ColorNode.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_ColorNode.cc')
-rw-r--r--source/blender/compositor/nodes/COM_ColorNode.cc16
1 files changed, 8 insertions, 8 deletions
diff --git a/source/blender/compositor/nodes/COM_ColorNode.cc b/source/blender/compositor/nodes/COM_ColorNode.cc
index e79f2eb97af..2d875d703c7 100644
--- a/source/blender/compositor/nodes/COM_ColorNode.cc
+++ b/source/blender/compositor/nodes/COM_ColorNode.cc
@@ -21,22 +21,22 @@
namespace blender::compositor {
-ColorNode::ColorNode(bNode *editorNode) : Node(editorNode)
+ColorNode::ColorNode(bNode *editor_node) : Node(editor_node)
{
/* pass */
}
-void ColorNode::convertToOperations(NodeConverter &converter,
- const CompositorContext & /*context*/) const
+void ColorNode::convert_to_operations(NodeConverter &converter,
+ const CompositorContext & /*context*/) const
{
SetColorOperation *operation = new SetColorOperation();
- NodeOutput *output = this->getOutputSocket(0);
+ NodeOutput *output = this->get_output_socket(0);
float col[4];
- output->getEditorValueColor(col);
- operation->setChannels(col);
- converter.addOperation(operation);
+ output->get_editor_value_color(col);
+ operation->set_channels(col);
+ converter.add_operation(operation);
- converter.mapOutputSocket(output, operation->getOutputSocket());
+ converter.map_output_socket(output, operation->get_output_socket());
}
} // namespace blender::compositor