| 634 | // DPF callbacks |
| 635 | |
| 636 | void editParameter(const uint32_t rindex, const bool started) const |
| 637 | { |
| 638 | const ClapEventQueue::Event ev = { |
| 639 | started ? ClapEventQueue::kEventGestureBegin : ClapEventQueue::kEventGestureEnd, |
| 640 | rindex, 0.f |
| 641 | }; |
| 642 | fEventQueue.addEventFromUI(ev); |
| 643 | } |
| 644 | |
| 645 | static void editParameterCallback(void* const ptr, const uint32_t rindex, const bool started) |
| 646 | { |
no test coverage detected