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_ColorBalanceNode.cc')
-rw-r--r--source/blender/compositor/nodes/COM_ColorBalanceNode.cc37
1 files changed, 17 insertions, 20 deletions
diff --git a/source/blender/compositor/nodes/COM_ColorBalanceNode.cc b/source/blender/compositor/nodes/COM_ColorBalanceNode.cc
index 03e4e143061..e7c43161a00 100644
--- a/source/blender/compositor/nodes/COM_ColorBalanceNode.cc
+++ b/source/blender/compositor/nodes/COM_ColorBalanceNode.cc
@@ -17,28 +17,25 @@
*/
#include "COM_ColorBalanceNode.h"
-#include "BKE_node.h"
#include "COM_ColorBalanceASCCDLOperation.h"
#include "COM_ColorBalanceLGGOperation.h"
-#include "COM_ExecutionSystem.h"
-#include "COM_MixOperation.h"
namespace blender::compositor {
-ColorBalanceNode::ColorBalanceNode(bNode *editorNode) : Node(editorNode)
+ColorBalanceNode::ColorBalanceNode(bNode *editor_node) : Node(editor_node)
{
/* pass */
}
-void ColorBalanceNode::convertToOperations(NodeConverter &converter,
- const CompositorContext & /*context*/) const
+void ColorBalanceNode::convert_to_operations(NodeConverter &converter,
+ const CompositorContext & /*context*/) const
{
- bNode *node = this->getbNode();
+ bNode *node = this->get_bnode();
NodeColorBalance *n = (NodeColorBalance *)node->storage;
- NodeInput *inputSocket = this->getInputSocket(0);
- NodeInput *inputImageSocket = this->getInputSocket(1);
- NodeOutput *outputSocket = this->getOutputSocket(0);
+ NodeInput *input_socket = this->get_input_socket(0);
+ NodeInput *input_image_socket = this->get_input_socket(1);
+ NodeOutput *output_socket = this->get_output_socket(0);
NodeOperation *operation;
if (node->custom1 == 0) {
@@ -50,9 +47,9 @@ void ColorBalanceNode::convertToOperations(NodeConverter &converter,
gamma_inv[c] = (n->gamma[c] != 0.0f) ? 1.0f / n->gamma[c] : 1000000.0f;
}
- operationLGG->setGain(n->gain);
- operationLGG->setLift(lift_lgg);
- operationLGG->setGammaInv(gamma_inv);
+ operationLGG->set_gain(n->gain);
+ operationLGG->set_lift(lift_lgg);
+ operationLGG->set_gamma_inv(gamma_inv);
operation = operationLGG;
}
else {
@@ -62,16 +59,16 @@ void ColorBalanceNode::convertToOperations(NodeConverter &converter,
copy_v3_fl(offset, n->offset_basis);
add_v3_v3(offset, n->offset);
- operationCDL->setOffset(offset);
- operationCDL->setPower(n->power);
- operationCDL->setSlope(n->slope);
+ operationCDL->set_offset(offset);
+ operationCDL->set_power(n->power);
+ operationCDL->set_slope(n->slope);
operation = operationCDL;
}
- converter.addOperation(operation);
+ converter.add_operation(operation);
- converter.mapInputSocket(inputSocket, operation->getInputSocket(0));
- converter.mapInputSocket(inputImageSocket, operation->getInputSocket(1));
- converter.mapOutputSocket(outputSocket, operation->getOutputSocket(0));
+ converter.map_input_socket(input_socket, operation->get_input_socket(0));
+ converter.map_input_socket(input_image_socket, operation->get_input_socket(1));
+ converter.map_output_socket(output_socket, operation->get_output_socket(0));
}
} // namespace blender::compositor