clap

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

commit 12a7f08372f354211ef188285b1f1e9b07faf969
parent e8a07f4217866c9a226916770de705ca44d4766d
Author: Alexandre Bique <bique.alexandre@gmail.com>
Date:   Wed, 14 Dec 2022 12:58:05 +0100

better documentation and variables name

Diffstat:
Minclude/clap/ext/draft/param-indication.h | 12++++++------
1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/include/clap/ext/draft/param-indication.h b/include/clap/ext/draft/param-indication.h @@ -19,16 +19,16 @@ extern "C" { #endif typedef struct clap_plugin_param_indication { - // Sets or clears a mapping indication. - // If the host doesn't use mapping color, then mapping_color should be null. - // If is_mapped is false, then the mapping color is ignored. + // Sets or clears an indication. + // If the host doesn't use indicaton color, then indication_color should be null. + // If has_indication is false, then the indication_color is ignored. // - // Parameter mapping indications should not be saved in the plugin context, and are off by default. + // Parameter indications should not be saved in the plugin context, and are off by default. // [main-thread] void(CLAP_ABI *set)(const clap_plugin_t *plugin, clap_id param_id, - bool is_mapped, - const clap_color_t *mapping_color); + bool has_indication, + const clap_color_t *indication_color); } clap_plugin_param_indication_t; #ifdef __cplusplus