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_MapValueNode.cc')
-rw-r--r--source/blender/compositor/nodes/COM_MapValueNode.cc22
1 files changed, 11 insertions, 11 deletions
diff --git a/source/blender/compositor/nodes/COM_MapValueNode.cc b/source/blender/compositor/nodes/COM_MapValueNode.cc
index 9c6be55e93b..8c81a902863 100644
--- a/source/blender/compositor/nodes/COM_MapValueNode.cc
+++ b/source/blender/compositor/nodes/COM_MapValueNode.cc
@@ -22,25 +22,25 @@
namespace blender::compositor {
-MapValueNode::MapValueNode(bNode *editorNode) : Node(editorNode)
+MapValueNode::MapValueNode(bNode *editor_node) : Node(editor_node)
{
/* pass */
}
-void MapValueNode::convertToOperations(NodeConverter &converter,
- const CompositorContext & /*context*/) const
+void MapValueNode::convert_to_operations(NodeConverter &converter,
+ const CompositorContext & /*context*/) const
{
- TexMapping *storage = (TexMapping *)this->getbNode()->storage;
+ TexMapping *storage = (TexMapping *)this->get_bnode()->storage;
- NodeInput *colorSocket = this->getInputSocket(0);
- NodeOutput *valueSocket = this->getOutputSocket(0);
+ NodeInput *color_socket = this->get_input_socket(0);
+ NodeOutput *value_socket = this->get_output_socket(0);
- MapValueOperation *convertProg = new MapValueOperation();
- convertProg->setSettings(storage);
- converter.addOperation(convertProg);
+ MapValueOperation *convert_prog = new MapValueOperation();
+ convert_prog->set_settings(storage);
+ converter.add_operation(convert_prog);
- converter.mapInputSocket(colorSocket, convertProg->getInputSocket(0));
- converter.mapOutputSocket(valueSocket, convertProg->getOutputSocket(0));
+ converter.map_input_socket(color_socket, convert_prog->get_input_socket(0));
+ converter.map_output_socket(value_socket, convert_prog->get_output_socket(0));
}
} // namespace blender::compositor