fix for compositor bug, mix node operation clamp was uninitialized.

made HSV node randomly clamp values from 0-1.
This commit is contained in:
Campbell Barton
2012-07-20 14:01:43 +00:00
parent e94ef6ca6c
commit 80a24a2ff5

View File

@@ -32,6 +32,7 @@ MixBaseOperation::MixBaseOperation() : NodeOperation()
this->m_inputColor1Operation = NULL;
this->m_inputColor2Operation = NULL;
this->setUseValueAlphaMultiply(false);
this->setUseClamp(false);
}
void MixBaseOperation::initExecution()