Skip to content

Commit

Permalink
Undo testing changes to example plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
jatinchowdhury18 committed Jun 24, 2022
1 parent 5ddadfc commit eb0949c
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion examples/GainPlugin/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@ clap_juce_extensions_plugin(
TARGET GainPlugin
CLAP_ID "org.free-audio.GainPlugin"
CLAP_FEATURES audio-effect utility
CLAP_PROCESS_EVENTS_RESOLUTION_SAMPLES 128
)

target_sources(GainPlugin PRIVATE
Expand Down
2 changes: 1 addition & 1 deletion examples/GainPlugin/GainPlugin.h
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ class GainPlugin : public juce::AudioProcessor,
void processBlock(juce::AudioBuffer<float> &, juce::MidiBuffer &) override;
void processBlock(juce::AudioBuffer<double> &, juce::MidiBuffer &) override {}

bool supportsDirectProcess() override { return false; } // true; }
bool supportsDirectProcess() override { return true; }
clap_process_status clap_direct_process(const clap_process *process) noexcept override;

bool hasEditor() const override { return true; }
Expand Down

0 comments on commit eb0949c

Please sign in to comment.