@@ -70,7 +70,7 @@ protected: | |||||
*/ | */ | ||||
const char* getHomePage() const override | const char* getHomePage() const override | ||||
{ | { | ||||
return "https://github.com/DISTRHO/plugin-examples"; | |||||
return "https://github.com/DISTRHO/DPF"; | |||||
} | } | ||||
/** | /** | ||||
@@ -193,7 +193,7 @@ protected: | |||||
*/ | */ | ||||
void setParameterValue(uint32_t, float) override | void setParameterValue(uint32_t, float) override | ||||
{ | { | ||||
// this is only called for input paramters, which we have none of. | |||||
// this is only called for input parameters, which we have none of. | |||||
} | } | ||||
/* -------------------------------------------------------------------------------------------------------- | /* -------------------------------------------------------------------------------------------------------- | ||||
@@ -76,7 +76,7 @@ protected: | |||||
*/ | */ | ||||
const char* getHomePage() const override | const char* getHomePage() const override | ||||
{ | { | ||||
return "https://github.com/DISTRHO/plugin-examples"; | |||||
return "https://github.com/DISTRHO/DPF"; | |||||
} | } | ||||
/** | /** | ||||
@@ -69,7 +69,7 @@ protected: | |||||
*/ | */ | ||||
const char* getHomePage() const override | const char* getHomePage() const override | ||||
{ | { | ||||
return "https://github.com/DISTRHO/plugin-examples"; | |||||
return "https://github.com/DISTRHO/DPF"; | |||||
} | } | ||||
/** | /** | ||||
@@ -21,7 +21,7 @@ START_NAMESPACE_DISTRHO | |||||
// ----------------------------------------------------------------------------------------------------------- | // ----------------------------------------------------------------------------------------------------------- | ||||
/** | /** | ||||
Plugin that demonstrates the latency API in DPF. | |||||
Plugin that demonstrates MIDI output in DPF. | |||||
*/ | */ | ||||
class MidiThroughExamplePlugin : public Plugin | class MidiThroughExamplePlugin : public Plugin | ||||
{ | { | ||||
@@ -47,7 +47,7 @@ protected: | |||||
*/ | */ | ||||
const char* getDescription() const override | const char* getDescription() const override | ||||
{ | { | ||||
return "Plugin that demonstrates the latency API in DPF."; | |||||
return "Plugin that demonstrates MIDI output in DPF."; | |||||
} | } | ||||
/** | /** | ||||
@@ -63,7 +63,7 @@ protected: | |||||
*/ | */ | ||||
const char* getHomePage() const override | const char* getHomePage() const override | ||||
{ | { | ||||
return "https://github.com/DISTRHO/plugin-examples"; | |||||
return "https://github.com/DISTRHO/DPF"; | |||||
} | } | ||||
/** | /** | ||||
@@ -72,7 +72,7 @@ The plugin will be treated as an effect, but it will not change the host audio." | |||||
*/ | */ | ||||
const char* getHomePage() const override | const char* getHomePage() const override | ||||
{ | { | ||||
return "https://github.com/DISTRHO/plugin-examples"; | |||||
return "https://github.com/DISTRHO/DPF"; | |||||
} | } | ||||
/** | /** | ||||
@@ -72,7 +72,7 @@ The plugin will be treated as an effect, but it will not change the host audio." | |||||
*/ | */ | ||||
const char* getHomePage() const override | const char* getHomePage() const override | ||||
{ | { | ||||
return "https://github.com/DISTRHO/plugin-examples"; | |||||
return "https://github.com/DISTRHO/DPF"; | |||||
} | } | ||||
/** | /** | ||||
@@ -277,7 +277,7 @@ The plugin will be treated as an effect, but it will not change the host audio." | |||||
void run(const float** inputs, float** outputs, uint32_t frames) override | void run(const float** inputs, float** outputs, uint32_t frames) override | ||||
{ | { | ||||
/** | /** | ||||
This plugin does nothing, it just demonstrates parameter usage. | |||||
This plugin does nothing, it just demonstrates state usage. | |||||
So here we directly copy inputs over outputs, leaving the audio untouched. | So here we directly copy inputs over outputs, leaving the audio untouched. | ||||
We need to be careful in case the host re-uses the same buffer for both ins and outs. | We need to be careful in case the host re-uses the same buffer for both ins and outs. | ||||
*/ | */ | ||||
@@ -192,7 +192,7 @@ protected: | |||||
/** | /** | ||||
Mouse press event. | Mouse press event. | ||||
This UI will de/activate blocks when you click them and reports it as a state change to the plugin. | |||||
This UI will de/activate blocks when you click them and report it as a state change to the plugin. | |||||
*/ | */ | ||||
bool onMouse(const MouseEvent& ev) override | bool onMouse(const MouseEvent& ev) override | ||||
{ | { | ||||