| 96 | /// @param run_async If true, pump async tasks during delay (only on platforms with SKETCH_HAS_LARGE_MEMORY==1) |
| 97 | template<int Dummy = 0> |
| 98 | inline void delay(u32 ms, bool run_async = true) FL_NOEXCEPT { |
| 99 | (void)Dummy; |
| 100 | detail::delay_impl(ms, run_async); |
| 101 | } |
| 102 | |
| 103 | /// Delay for a given number of milliseconds (legacy - no async pumping) |
| 104 | /// @param ms Milliseconds to delay |
no test coverage detected