Changeset View
Changeset View
Standalone View
Standalone View
source/blender/compositor/operations/COM_ConvertOperation.cc
| Show First 20 Lines • Show All 581 Lines • ▼ Show 20 Lines | |||||
| CombineChannelsOperation::CombineChannelsOperation() | CombineChannelsOperation::CombineChannelsOperation() | ||||
| { | { | ||||
| this->addInputSocket(DataType::Value); | this->addInputSocket(DataType::Value); | ||||
| this->addInputSocket(DataType::Value); | this->addInputSocket(DataType::Value); | ||||
| this->addInputSocket(DataType::Value); | this->addInputSocket(DataType::Value); | ||||
| this->addInputSocket(DataType::Value); | this->addInputSocket(DataType::Value); | ||||
| this->addOutputSocket(DataType::Color); | this->addOutputSocket(DataType::Color); | ||||
| this->setResolutionInputSocketIndex(0); | this->set_canvas_input_index(0); | ||||
| this->m_inputChannel1Operation = nullptr; | this->m_inputChannel1Operation = nullptr; | ||||
| this->m_inputChannel2Operation = nullptr; | this->m_inputChannel2Operation = nullptr; | ||||
| this->m_inputChannel3Operation = nullptr; | this->m_inputChannel3Operation = nullptr; | ||||
| this->m_inputChannel4Operation = nullptr; | this->m_inputChannel4Operation = nullptr; | ||||
| } | } | ||||
| void CombineChannelsOperation::initExecution() | void CombineChannelsOperation::initExecution() | ||||
| { | { | ||||
| ▲ Show 20 Lines • Show All 51 Lines • Show Last 20 Lines | |||||