| 702 | } |
| 703 | |
| 704 | void VSTWrapper::callSetParameter(int index, float value) const |
| 705 | { |
| 706 | if (mVstVersion == 0 || constCallDispatcher(effCanBeAutomated, 0, index, NULL, 0.0)) |
| 707 | { |
| 708 | mAEffect->setParameter(mAEffect, index, value); |
| 709 | } |
| 710 | } |
| 711 | |
| 712 | void VSTWrapper::callSetProgram(int index) |
| 713 | { |
no test coverage detected