| 69 | |
| 70 | template<typename T> |
| 71 | static inline |
| 72 | bool d_isDiffHigherThanLimit(const T& v1, const T& v2, const T& limit) |
| 73 | { |
| 74 | return v1 != v2 ? (v1 > v2 ? v1 - v2 : v2 - v1) > limit : false; |
| 75 | } |
| 76 | |
| 77 | #if DISTRHO_PLUGIN_HAS_UI && ! DISTRHO_PLUGIN_WANT_DIRECT_ACCESS |
| 78 | const char* UI::getBundlePath() const noexcept { return nullptr; } |