| 296 | } |
| 297 | |
| 298 | void FlushCache(EffectSettings& settings) |
| 299 | { |
| 300 | if(mParametersCache.empty()) |
| 301 | return; |
| 302 | |
| 303 | auto& vst3settings = GetSettings(settings); |
| 304 | for(auto& p : mParametersCache) |
| 305 | vst3settings.parameterChanges[p.first] = p.second; |
| 306 | mParametersCache.clear(); |
| 307 | } |
| 308 | |
| 309 | void ResetCache() |
| 310 | { |
no test coverage detected