MCPcopy Create free account
hub / github.com/TheWaveWarden/odin2 / isBusesLayoutSupported

Method isBusesLayoutSupported

Source/PluginProcessorMisc.cpp:59–66  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

57
58#ifndef JucePlugin_PreferredChannelConfigurations
59bool OdinAudioProcessor::isBusesLayoutSupported(const BusesLayout &layouts) const {
60
61 //only support stereo output
62 if (layouts.getMainOutputChannelSet() != AudioChannelSet::stereo())
63 return false;
64
65 return true;
66}
67#endif
68
69//==============================================================================

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected