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_ColorCurveNode.cc')
-rw-r--r--source/blender/compositor/nodes/COM_ColorCurveNode.cc42
1 files changed, 21 insertions, 21 deletions
diff --git a/source/blender/compositor/nodes/COM_ColorCurveNode.cc b/source/blender/compositor/nodes/COM_ColorCurveNode.cc
index 4a82a42b036..5b59b2bee14 100644
--- a/source/blender/compositor/nodes/COM_ColorCurveNode.cc
+++ b/source/blender/compositor/nodes/COM_ColorCurveNode.cc
@@ -21,39 +21,39 @@
namespace blender::compositor {
-ColorCurveNode::ColorCurveNode(bNode *editorNode) : Node(editorNode)
+ColorCurveNode::ColorCurveNode(bNode *editor_node) : Node(editor_node)
{
/* pass */
}
-void ColorCurveNode::convertToOperations(NodeConverter &converter,
- const CompositorContext & /*context*/) const
+void ColorCurveNode::convert_to_operations(NodeConverter &converter,
+ const CompositorContext & /*context*/) const
{
- if (this->getInputSocket(2)->isLinked() || this->getInputSocket(3)->isLinked()) {
+ if (this->get_input_socket(2)->is_linked() || this->get_input_socket(3)->is_linked()) {
ColorCurveOperation *operation = new ColorCurveOperation();
- operation->setCurveMapping((CurveMapping *)this->getbNode()->storage);
- converter.addOperation(operation);
+ operation->set_curve_mapping((CurveMapping *)this->get_bnode()->storage);
+ converter.add_operation(operation);
- converter.mapInputSocket(getInputSocket(0), operation->getInputSocket(0));
- converter.mapInputSocket(getInputSocket(1), operation->getInputSocket(1));
- converter.mapInputSocket(getInputSocket(2), operation->getInputSocket(2));
- converter.mapInputSocket(getInputSocket(3), operation->getInputSocket(3));
+ converter.map_input_socket(get_input_socket(0), operation->get_input_socket(0));
+ converter.map_input_socket(get_input_socket(1), operation->get_input_socket(1));
+ converter.map_input_socket(get_input_socket(2), operation->get_input_socket(2));
+ converter.map_input_socket(get_input_socket(3), operation->get_input_socket(3));
- converter.mapOutputSocket(getOutputSocket(0), operation->getOutputSocket());
+ converter.map_output_socket(get_output_socket(0), operation->get_output_socket());
}
else {
ConstantLevelColorCurveOperation *operation = new ConstantLevelColorCurveOperation();
float col[4];
- this->getInputSocket(2)->getEditorValueColor(col);
- operation->setBlackLevel(col);
- this->getInputSocket(3)->getEditorValueColor(col);
- operation->setWhiteLevel(col);
- operation->setCurveMapping((CurveMapping *)this->getbNode()->storage);
- converter.addOperation(operation);
-
- converter.mapInputSocket(getInputSocket(0), operation->getInputSocket(0));
- converter.mapInputSocket(getInputSocket(1), operation->getInputSocket(1));
- converter.mapOutputSocket(getOutputSocket(0), operation->getOutputSocket());
+ this->get_input_socket(2)->get_editor_value_color(col);
+ operation->set_black_level(col);
+ this->get_input_socket(3)->get_editor_value_color(col);
+ operation->set_white_level(col);
+ operation->set_curve_mapping((CurveMapping *)this->get_bnode()->storage);
+ converter.add_operation(operation);
+
+ converter.map_input_socket(get_input_socket(0), operation->get_input_socket(0));
+ converter.map_input_socket(get_input_socket(1), operation->get_input_socket(1));
+ converter.map_output_socket(get_output_socket(0), operation->get_output_socket());
}
}