Cleanup: Use Bitflags For Booleans.

This commit is contained in:
2021-03-29 16:45:49 +02:00
parent ca516e78c4
commit fe60062a99
46 changed files with 170 additions and 218 deletions

View File

@@ -31,8 +31,9 @@ BokehBlurOperation::BokehBlurOperation()
this->addInputSocket(DataType::Value);
this->addInputSocket(DataType::Value);
this->addOutputSocket(DataType::Color);
this->setComplex(true);
this->setOpenCL(true);
flags.complex = true;
flags.open_cl = true;
this->m_size = 1.0f;
this->m_sizeavailable = false;