| 2389 | } |
| 2390 | |
| 2391 | static bool CLAP_ABI clap_plugin_params_text_to_value(const clap_plugin_t* plugin, const clap_id param_id, const char* const display, double* const value) |
| 2392 | { |
| 2393 | PluginCLAP* const instance = static_cast<PluginCLAP*>(plugin->plugin_data); |
| 2394 | return instance->getParameterValueForString(param_id, display, value); |
| 2395 | } |
| 2396 | |
| 2397 | static void CLAP_ABI clap_plugin_params_flush(const clap_plugin_t* plugin, const clap_input_events_t* in, const clap_output_events_t* out) |
| 2398 | { |
nothing calls this directly
no test coverage detected