mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-09 23:34:20 +00:00
AudioPluginDemo: Enable double-precision processing
This commit is contained in:
parent
5297df9995
commit
e555a171f5
1 changed files with 2 additions and 2 deletions
|
|
@ -195,8 +195,6 @@ public:
|
|||
initialiseSynth();
|
||||
}
|
||||
|
||||
~JuceDemoPluginAudioProcessor() override = default;
|
||||
|
||||
//==============================================================================
|
||||
bool isBusesLayoutSupported (const BusesLayout& layouts) const override
|
||||
{
|
||||
|
|
@ -251,6 +249,8 @@ public:
|
|||
delayBufferDouble.clear();
|
||||
}
|
||||
|
||||
bool supportsDoublePrecisionProcessing() const override { return true; }
|
||||
|
||||
//==============================================================================
|
||||
void processBlock (AudioBuffer<float>& buffer, MidiBuffer& midiMessages) override
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue