mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-11 23:54:18 +00:00
Implemented an AU method to avoid problems with some versions of the CoreAudio API.
This commit is contained in:
parent
cd30b3bfd1
commit
0147fe00f9
1 changed files with 4 additions and 0 deletions
|
|
@ -519,6 +519,10 @@ public:
|
|||
return AUBase::SetParameter (inID, inScope, inElement, inValue, inBufferOffsetInFrames);
|
||||
}
|
||||
|
||||
// No idea what this method actually does or what it should return. Current Apple docs say nothing about it.
|
||||
// (Note that this isn't marked 'override' in case older versions of the SDK don't include it)
|
||||
bool CanScheduleParameters() const { return false; }
|
||||
|
||||
//==============================================================================
|
||||
ComponentResult Version() override { return JucePlugin_VersionCode; }
|
||||
bool SupportsTail() override { return true; }
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue