MCPcopy Create free account
hub / github.com/DISTRHO/Cardinal / Engine_debugOrderedModules

Function Engine_debugOrderedModules

src/override/Engine.cpp:402–406  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

400
401#if DEBUG_ORDERED_MODULES
402static void Engine_debugOrderedModules(std::vector<Module*>& modules) {
403 printf("\n--- Ordered modules ---\n");
404 for (unsigned int i = 0; i < modules.size(); i++)
405 printf("%d) %s - %ld\n", i, modules[i]->model->getFullName().c_str(), modules[i]->id);
406}
407#endif
408
409/** Order the modules so that they always read the most recent sample from their inputs

Callers 1

Engine_orderModulesFunction · 0.85

Calls 3

c_strMethod · 0.80
sizeMethod · 0.45
getFullNameMethod · 0.45

Tested by

no test coverage detected