summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorfalkTX <falktx@falktx.com>2019-06-24 11:49:29 +0200
committerfalkTX <falktx@falktx.com>2019-06-24 11:49:29 +0200
commit8430483fb8f9582431ad144958599d93800edbfa (patch)
tree036396a1d17cd56e51856aef36cee10085b534af
parent83f1767d438233147b0c76b44afa3d686441b366 (diff)
parent393834735a4a68cb692863ef6f91e4b5d95b81d2 (diff)
Merge branch 'master' into develop
Signed-off-by: falkTX <falktx@falktx.com> Conflicts: Makefile.base.mk
-rw-r--r--README.md2
-rw-r--r--distrho/DistrhoUI.hpp8
-rw-r--r--distrho/src/DistrhoPluginLV2.cpp2
3 files changed, 8 insertions, 4 deletions
diff --git a/README.md b/README.md
index b8788fc0..5dda160b 100644
--- a/README.md
+++ b/README.md
@@ -28,7 +28,7 @@ List of plugins made with DPF:<br/>
- [Juice Plugins](https://github.com/DISTRHO/JuicePlugins) (work in progress)
- [ZamAudio Suite](https://github.com/zamaudio/zam-plugins)
- [DragonFly-Reverb](https://github.com/michaelwillis/dragonfly-reverb)
- - [Wolf-Shaper](https://github.com/pdesaulniers/wolf-shaper)
+ - [Wolf-Shaper](https://github.com/pdesaulniers/wolf-shaper) and [Wolf-Spectrum](https://github.com/pdesaulniers/wolf-spectrum)
- [YK Chorus](https://github.com/SpotlightKid/ykchorus)
diff --git a/distrho/DistrhoUI.hpp b/distrho/DistrhoUI.hpp
index beb91888..ecebc368 100644
--- a/distrho/DistrhoUI.hpp
+++ b/distrho/DistrhoUI.hpp
@@ -89,13 +89,17 @@ public:
/**
editParameter.
- @TODO Document this.
+
+ Touch/pressed-down event.
+ Lets the host know the user is tweaking a parameter.
+ Required in some hosts to record automation.
*/
void editParameter(uint32_t index, bool started);
/**
setParameterValue.
- @TODO Document this.
+
+ Change a parameter value in the Plugin.
*/
void setParameterValue(uint32_t index, float value);
diff --git a/distrho/src/DistrhoPluginLV2.cpp b/distrho/src/DistrhoPluginLV2.cpp
index e66ec1d0..ed970528 100644
--- a/distrho/src/DistrhoPluginLV2.cpp
+++ b/distrho/src/DistrhoPluginLV2.cpp
@@ -545,7 +545,7 @@ public:
#ifdef DISTRHO_PLUGIN_LICENSED_FOR_MOD
for (uint32_t i=0; i<DISTRHO_PLUGIN_NUM_OUTPUTS; ++i)
- mod_license_run_noise(fRunCount, fPortAudioOuts[i], sampleCount, i);
+ mod_license_run_silence(fRunCount, fPortAudioOuts[i], sampleCount, i);
#endif
#if DISTRHO_PLUGIN_WANT_TIMEPOS