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:
authorSergey Sharybin <sergey.vfx@gmail.com>2012-05-29 18:55:01 +0400
committerSergey Sharybin <sergey.vfx@gmail.com>2012-05-29 18:55:01 +0400
commitec4f6750557218be262cacea53ef4cb0ccaa0671 (patch)
tree433e584317dd7ad4abd04c62ca122d2244349112 /source/blender/compositor/nodes/COM_KeyingNode.cpp
parentb63a2be5c16d9c0c728cf4e07dc565267b9d2a47 (diff)
Fixed stupid typo: dispill vs. despill
Diffstat (limited to 'source/blender/compositor/nodes/COM_KeyingNode.cpp')
-rw-r--r--source/blender/compositor/nodes/COM_KeyingNode.cpp22
1 files changed, 11 insertions, 11 deletions
diff --git a/source/blender/compositor/nodes/COM_KeyingNode.cpp b/source/blender/compositor/nodes/COM_KeyingNode.cpp
index 725060371a1..9e29a99293e 100644
--- a/source/blender/compositor/nodes/COM_KeyingNode.cpp
+++ b/source/blender/compositor/nodes/COM_KeyingNode.cpp
@@ -26,7 +26,7 @@
#include "COM_ExecutionSystem.h"
#include "COM_KeyingOperation.h"
-#include "COM_KeyingDispillOperation.h"
+#include "COM_KeyingDespillOperation.h"
#include "COM_SeparateChannelOperation.h"
#include "COM_CombineChannelsOperation.h"
@@ -135,18 +135,18 @@ OutputSocket *KeyingNode::setupDilateErode(ExecutionSystem *graph, OutputSocket
return dilateErodeOperation->getOutputSocket(0);
}
-OutputSocket *KeyingNode::setupDispill(ExecutionSystem *graph, OutputSocket *dispillInput, InputSocket *inputScreen, float factor)
+OutputSocket *KeyingNode::setupDespill(ExecutionSystem *graph, OutputSocket *despillInput, InputSocket *inputScreen, float factor)
{
- KeyingDispillOperation *dispillOperation = new KeyingDispillOperation();
+ KeyingDespillOperation *despillOperation = new KeyingDespillOperation();
- dispillOperation->setDispillFactor(factor);
+ despillOperation->setDespillFactor(factor);
- addLink(graph, dispillInput, dispillOperation->getInputSocket(0));
- inputScreen->relinkConnections(dispillOperation->getInputSocket(1), 1, graph);
+ addLink(graph, despillInput, despillOperation->getInputSocket(0));
+ inputScreen->relinkConnections(despillOperation->getInputSocket(1), 1, graph);
- graph->addOperation(dispillOperation);
+ graph->addOperation(despillOperation);
- return dispillOperation->getOutputSocket(0);
+ return despillOperation->getOutputSocket(0);
}
void KeyingNode::convertToOperations(ExecutionSystem *graph, CompositorContext *context)
@@ -198,9 +198,9 @@ void KeyingNode::convertToOperations(ExecutionSystem *graph, CompositorContext *
postprocessedImage = alphaOperation->getOutputSocket();
- /* dispill output image */
- if (keying_data->dispill_factor > 0.0f) {
- postprocessedImage = setupDispill(graph, postprocessedImage, inputScreen, keying_data->dispill_factor);
+ /* despill output image */
+ if (keying_data->despill_factor > 0.0f) {
+ postprocessedImage = setupDespill(graph, postprocessedImage, inputScreen, keying_data->despill_factor);
}
/* connect result to output sockets */