Cleanup: Use enum class for DataType.

This commit is contained in:
2021-03-19 14:26:24 +01:00
parent b5f70d92c2
commit e5ffefe606
111 changed files with 400 additions and 399 deletions

View File

@@ -20,9 +20,9 @@
SetAlphaMultiplyOperation::SetAlphaMultiplyOperation()
{
this->addInputSocket(COM_DT_COLOR);
this->addInputSocket(COM_DT_VALUE);
this->addOutputSocket(COM_DT_COLOR);
this->addInputSocket(DataType::Color);
this->addInputSocket(DataType::Value);
this->addOutputSocket(DataType::Color);
this->m_inputColor = nullptr;
this->m_inputAlpha = nullptr;