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_DespeckleNode.cc')
-rw-r--r--source/blender/compositor/nodes/COM_DespeckleNode.cc31
1 files changed, 14 insertions, 17 deletions
diff --git a/source/blender/compositor/nodes/COM_DespeckleNode.cc b/source/blender/compositor/nodes/COM_DespeckleNode.cc
index beda479025d..12c9d50f214 100644
--- a/source/blender/compositor/nodes/COM_DespeckleNode.cc
+++ b/source/blender/compositor/nodes/COM_DespeckleNode.cc
@@ -17,36 +17,33 @@
*/
#include "COM_DespeckleNode.h"
-#include "BLI_math.h"
#include "COM_DespeckleOperation.h"
-#include "COM_ExecutionSystem.h"
-#include "DNA_scene_types.h"
namespace blender::compositor {
-DespeckleNode::DespeckleNode(bNode *editorNode) : Node(editorNode)
+DespeckleNode::DespeckleNode(bNode *editor_node) : Node(editor_node)
{
/* pass */
}
-void DespeckleNode::convertToOperations(NodeConverter &converter,
- const CompositorContext & /*context*/) const
+void DespeckleNode::convert_to_operations(NodeConverter &converter,
+ const CompositorContext & /*context*/) const
{
- bNode *editorNode = this->getbNode();
- NodeInput *inputSocket = this->getInputSocket(0);
- NodeInput *inputImageSocket = this->getInputSocket(1);
- NodeOutput *outputSocket = this->getOutputSocket(0);
+ bNode *editor_node = this->get_bnode();
+ 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);
DespeckleOperation *operation = new DespeckleOperation();
- operation->setThreshold(editorNode->custom3);
- operation->setThresholdNeighbor(editorNode->custom4);
- converter.addOperation(operation);
+ operation->set_threshold(editor_node->custom3);
+ operation->set_threshold_neighbor(editor_node->custom4);
+ converter.add_operation(operation);
- converter.mapInputSocket(inputImageSocket, operation->getInputSocket(0));
- converter.mapInputSocket(inputSocket, operation->getInputSocket(1));
- converter.mapOutputSocket(outputSocket, operation->getOutputSocket());
+ converter.map_input_socket(input_image_socket, operation->get_input_socket(0));
+ converter.map_input_socket(input_socket, operation->get_input_socket(1));
+ converter.map_output_socket(output_socket, operation->get_output_socket());
- converter.addPreview(operation->getOutputSocket(0));
+ converter.add_preview(operation->get_output_socket(0));
}
} // namespace blender::compositor