| 525 | } |
| 526 | |
| 527 | void EffectChain::UpdateOldControlName(std::string& oldName) |
| 528 | { |
| 529 | IDrawableModule::UpdateOldControlName(oldName); |
| 530 | |
| 531 | if (oldName.size() > 2 && oldName[0] == 'd' && oldName[1] == 'w') |
| 532 | ofStringReplace(oldName, "dw", "mix"); |
| 533 | } |
| 534 | |
| 535 | void EffectChain::LoadBasics(const ofxJSONElement& moduleInfo, std::string typeName) |
| 536 | { |
nothing calls this directly
no test coverage detected