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:
authorCampbell Barton <ideasman42@gmail.com>2012-06-12 22:36:49 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-06-12 22:36:49 +0400
commit16dededdf399b0fcb62f8e062d2877873ed52b34 (patch)
tree7565ba08d29f9db630217e35822c71288ee44cb6 /source/blender/compositor/nodes/COM_MaskNode.cpp
parentca6290228f63490b777d7862ce50f537e604ab75 (diff)
remove input socket of mask node, this wasnt used.
Diffstat (limited to 'source/blender/compositor/nodes/COM_MaskNode.cpp')
-rw-r--r--source/blender/compositor/nodes/COM_MaskNode.cpp10
1 files changed, 2 insertions, 8 deletions
diff --git a/source/blender/compositor/nodes/COM_MaskNode.cpp b/source/blender/compositor/nodes/COM_MaskNode.cpp
index 991c3f75e05..e26756cfc5b 100644
--- a/source/blender/compositor/nodes/COM_MaskNode.cpp
+++ b/source/blender/compositor/nodes/COM_MaskNode.cpp
@@ -37,7 +37,6 @@ void MaskNode::convertToOperations(ExecutionSystem *graph, CompositorContext * c
{
const RenderData *data = &context->getScene()->r;
- InputSocket *inputImage = this->getInputSocket(0);
OutputSocket *outputMask = this->getOutputSocket(0);
bNode *editorNode = this->getbNode();
@@ -46,13 +45,8 @@ void MaskNode::convertToOperations(ExecutionSystem *graph, CompositorContext * c
// always connect the output image
MaskOperation *operation = new MaskOperation();
- if (inputImage->isConnected()) {
- inputImage->relinkConnections(operation->getInputSocket(0), 0, graph);
- }
- else {
- operation->setMaskWidth(data->xsch * data->size / 100.0f);
- operation->setMaskHeight(data->ysch * data->size / 100.0f);
- }
+ operation->setMaskWidth(data->xsch * data->size / 100.0f);
+ operation->setMaskHeight(data->ysch * data->size / 100.0f);
if (outputMask->isConnected()) {
outputMask->relinkConnections(operation->getOutputSocket());