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-08-02 14:20:14 +0400
committerSergey Sharybin <sergey.vfx@gmail.com>2012-08-02 14:20:14 +0400
commit63d071cc3a0c563adc919ae3ab606e235ed2a7d4 (patch)
tree2c26db9c8791b32830dede3bc1a59722017ebbd3 /source/blender/compositor/operations/COM_MathBaseOperation.cpp
parent9d2173518cd7da7d18bb032c8537c8952abc2b78 (diff)
Fix #32236: unstable z-buffer or z combine composition node
Diffstat (limited to 'source/blender/compositor/operations/COM_MathBaseOperation.cpp')
-rw-r--r--source/blender/compositor/operations/COM_MathBaseOperation.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/compositor/operations/COM_MathBaseOperation.cpp b/source/blender/compositor/operations/COM_MathBaseOperation.cpp
index 6c0c27c2522..4644dce572d 100644
--- a/source/blender/compositor/operations/COM_MathBaseOperation.cpp
+++ b/source/blender/compositor/operations/COM_MathBaseOperation.cpp
@@ -32,6 +32,7 @@ MathBaseOperation::MathBaseOperation() : NodeOperation()
this->addOutputSocket(COM_DT_VALUE);
this->m_inputValue1Operation = NULL;
this->m_inputValue2Operation = NULL;
+ this->m_useClamp = false;
}
void MathBaseOperation::initExecution()