| 2268 | |
| 2269 | #if DPF_CLAP_USING_HOST_TIMER |
| 2270 | static void CLAP_ABI clap_plugin_on_timer(const clap_plugin_t* const plugin, clap_id) |
| 2271 | { |
| 2272 | PluginCLAP* const instance = static_cast<PluginCLAP*>(plugin->plugin_data); |
| 2273 | ClapUI* const gui = instance->getUI(); |
| 2274 | DISTRHO_SAFE_ASSERT_RETURN(gui != nullptr,); |
| 2275 | return gui->idleCallback(); |
| 2276 | } |
| 2277 | |
| 2278 | static const clap_plugin_timer_support_t clap_timer = { |
| 2279 | clap_plugin_on_timer |
nothing calls this directly
no test coverage detected