clap

CLAP Audio Plugin API
Log | Files | Refs | README | LICENSE

commit 6f127cb6d510e78b745a4799963fe31df1d9251a
parent c746d9a09f0967bffb1c3d72d03f0a7fbf58222e
Author: Alexandre Bique <bique.alexandre@gmail.com>
Date:   Tue,  7 Mar 2023 10:10:44 +0100

Fixes #282

Diffstat:
Minclude/clap/ext/params.h | 5+++--
1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/include/clap/ext/params.h b/include/clap/ext/params.h @@ -55,8 +55,9 @@ /// - the plugin is responsible for sending the parameter value to its audio processor /// - call clap_host_params->request_flush() or clap_host->request_process(). /// - when the host calls either clap_plugin->process() or clap_plugin_params->flush(), -/// send an automation event and don't forget to set begin_adjust, -/// end_adjust and should_record flags +/// send an automation event and don't forget to wrap the parameter change(s) +/// with CLAP_EVENT_PARAM_GESTURE_BEGIN and CLAP_EVENT_PARAM_GESTURE_END to define the +/// beginning and end of the gesture. /// /// IV. Turning a knob via automation /// - host sends an automation point during clap_plugin->process() or clap_plugin_params->flush().