clap

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

commit b128a0cc8821b282748d36dddcee8957161f1091
parent 99190734553100c9a5232a657b05e14de6406451
Author: Alexandre Bique <bique.alexandre@gmail.com>
Date:   Mon, 12 Dec 2022 14:53:03 +0100

doc.

Diffstat:
Minclude/clap/ext/draft/audio-ports-activation.h | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/include/clap/ext/draft/audio-ports-activation.h b/include/clap/ext/draft/audio-ports-activation.h @@ -32,11 +32,11 @@ extern "C" { #endif typedef struct clap_plugin_audio_ports_activation { - // returns true if the plugin supports activation/deactivation while processing. + // Returns true if the plugin supports activation/deactivation while processing. // [main-thread] bool(CLAP_ABI *can_activate_while_processing)(const clap_plugin_t *plugin); - // activate the given port + // Activate the given port. // [main-thread] uint32_t(CLAP_ABI *set_active)(const clap_plugin_t *plugin, bool is_input, uint32_t port_index, bool is_active); } clap_plugin_audio_ports_activation_t;