Browse Source

Add docs for editParameter and setParameterValue

pull/146/head
naught101 Filipe Coelho <falktx@falktx.com> 6 years ago
parent
commit
2f6691a303
1 changed files with 6 additions and 2 deletions
  1. +6
    -2
      distrho/DistrhoUI.hpp

+ 6
- 2
distrho/DistrhoUI.hpp View File

@@ -82,13 +82,17 @@ public:


/** /**
editParameter. 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); void editParameter(uint32_t index, bool started);


/** /**
setParameterValue. setParameterValue.
@TODO Document this.
Change a parameter value in the Plugin.
*/ */
void setParameterValue(uint32_t index, float value); void setParameterValue(uint32_t index, float value);




Loading…
Cancel
Save