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_BokehBlurNode.cpp')
-rw-r--r--source/blender/compositor/nodes/COM_BokehBlurNode.cpp71
1 files changed, 36 insertions, 35 deletions
diff --git a/source/blender/compositor/nodes/COM_BokehBlurNode.cpp b/source/blender/compositor/nodes/COM_BokehBlurNode.cpp
index c20ca9181d1..56b5d35cbf5 100644
--- a/source/blender/compositor/nodes/COM_BokehBlurNode.cpp
+++ b/source/blender/compositor/nodes/COM_BokehBlurNode.cpp
@@ -27,50 +27,51 @@
BokehBlurNode::BokehBlurNode(bNode *editorNode) : Node(editorNode)
{
- /* pass */
+ /* pass */
}
-void BokehBlurNode::convertToOperations(NodeConverter &converter, const CompositorContext &context) const
+void BokehBlurNode::convertToOperations(NodeConverter &converter,
+ const CompositorContext &context) const
{
- bNode *b_node = this->getbNode();
+ bNode *b_node = this->getbNode();
- NodeInput *inputSizeSocket = this->getInputSocket(2);
+ NodeInput *inputSizeSocket = this->getInputSocket(2);
- bool connectedSizeSocket = inputSizeSocket->isLinked();
- const bool extend_bounds = (b_node->custom1 & CMP_NODEFLAG_BLUR_EXTEND_BOUNDS) != 0;
+ bool connectedSizeSocket = inputSizeSocket->isLinked();
+ const bool extend_bounds = (b_node->custom1 & CMP_NODEFLAG_BLUR_EXTEND_BOUNDS) != 0;
- if ((b_node->custom1 & CMP_NODEFLAG_BLUR_VARIABLE_SIZE) && connectedSizeSocket) {
- VariableSizeBokehBlurOperation *operation = new VariableSizeBokehBlurOperation();
- operation->setQuality(context.getQuality());
- operation->setThreshold(0.0f);
- operation->setMaxBlur(b_node->custom4);
- operation->setDoScaleSize(true);
+ if ((b_node->custom1 & CMP_NODEFLAG_BLUR_VARIABLE_SIZE) && connectedSizeSocket) {
+ VariableSizeBokehBlurOperation *operation = new VariableSizeBokehBlurOperation();
+ operation->setQuality(context.getQuality());
+ operation->setThreshold(0.0f);
+ operation->setMaxBlur(b_node->custom4);
+ operation->setDoScaleSize(true);
- converter.addOperation(operation);
- converter.mapInputSocket(getInputSocket(0), operation->getInputSocket(0));
- converter.mapInputSocket(getInputSocket(1), operation->getInputSocket(1));
- converter.mapInputSocket(getInputSocket(2), operation->getInputSocket(2));
- converter.mapOutputSocket(getOutputSocket(0), operation->getOutputSocket());
- }
- else {
- BokehBlurOperation *operation = new BokehBlurOperation();
- operation->setQuality(context.getQuality());
- operation->setExtendBounds(extend_bounds);
+ converter.addOperation(operation);
+ converter.mapInputSocket(getInputSocket(0), operation->getInputSocket(0));
+ converter.mapInputSocket(getInputSocket(1), operation->getInputSocket(1));
+ converter.mapInputSocket(getInputSocket(2), operation->getInputSocket(2));
+ converter.mapOutputSocket(getOutputSocket(0), operation->getOutputSocket());
+ }
+ else {
+ BokehBlurOperation *operation = new BokehBlurOperation();
+ operation->setQuality(context.getQuality());
+ operation->setExtendBounds(extend_bounds);
- converter.addOperation(operation);
- converter.mapInputSocket(getInputSocket(0), operation->getInputSocket(0));
- converter.mapInputSocket(getInputSocket(1), operation->getInputSocket(1));
+ converter.addOperation(operation);
+ converter.mapInputSocket(getInputSocket(0), operation->getInputSocket(0));
+ converter.mapInputSocket(getInputSocket(1), operation->getInputSocket(1));
- // NOTE: on the bokeh blur operation the sockets are switched.
- // for this reason the next two lines are correct.
- // Fix for T43771
- converter.mapInputSocket(getInputSocket(2), operation->getInputSocket(3));
- converter.mapInputSocket(getInputSocket(3), operation->getInputSocket(2));
+ // NOTE: on the bokeh blur operation the sockets are switched.
+ // for this reason the next two lines are correct.
+ // Fix for T43771
+ converter.mapInputSocket(getInputSocket(2), operation->getInputSocket(3));
+ converter.mapInputSocket(getInputSocket(3), operation->getInputSocket(2));
- converter.mapOutputSocket(getOutputSocket(0), operation->getOutputSocket());
+ converter.mapOutputSocket(getOutputSocket(0), operation->getOutputSocket());
- if (!connectedSizeSocket) {
- operation->setSize(this->getInputSocket(2)->getEditorValueFloat());
- }
- }
+ if (!connectedSizeSocket) {
+ operation->setSize(this->getInputSocket(2)->getEditorValueFloat());
+ }
+ }
}