Skip to content

Commit

Permalink
And now windows
Browse files Browse the repository at this point in the history
  • Loading branch information
baconpaul committed Jun 10, 2024
1 parent e02039b commit a314dab
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/clap-first-example/distortion_clap.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@
#include <math.h>
#include <assert.h>

static const char *features[] = {CLAP_PLUGIN_FEATURE_AUDIO_EFFECT, CLAP_PLUGIN_FEATURE_STEREO, CLAP_PLUGIN_FEATURE_DISTORTION, nullptr};

static const clap_plugin_descriptor_t s_c99dist_desc = {
CLAP_VERSION_INIT,
"org.free-audio.clap-first-bad-distortion",
Expand All @@ -22,7 +24,7 @@ static const clap_plugin_descriptor_t s_c99dist_desc = {
"",
"1.0.0",
"A few sloppy distortion algorithms using naive waveshapers",
(const char *[]){CLAP_PLUGIN_FEATURE_AUDIO_EFFECT, CLAP_PLUGIN_FEATURE_STEREO, NULL},
&features[0]
};

enum ClipType
Expand Down

0 comments on commit a314dab

Please sign in to comment.