MCPcopy Create free account
hub / github.com/DISTRHO/DPF / setProcessing

Function setProcessing

distrho/src/DistrhoPluginVST3.cpp:1377–1390  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1375 }
1376
1377 v3_result setProcessing(const bool processing)
1378 {
1379 if (processing)
1380 {
1381 if (! fPlugin.isActive())
1382 fPlugin.activate();
1383 }
1384 else
1385 {
1386 fPlugin.deactivateIfNeeded();
1387 }
1388
1389 return V3_OK;
1390 }
1391
1392 v3_result process(v3_process_data* const data)
1393 {

Callers

nothing calls this directly

Calls 2

isActiveMethod · 0.80
activateMethod · 0.45

Tested by

no test coverage detected