Function sdl2_sys::SDL_AddTimer

source ·
pub unsafe extern "C" fn SDL_AddTimer(
    interval: Uint32,
    callback: SDL_TimerCallback,
    param: *mut c_void
) -> SDL_TimerID
Expand description

Call a callback function at a future time.

If you use this function, you must pass SDL_INIT_TIMER to SDL_Init().

The callback function is passed the current timer interval and the user supplied parameter from the SDL_AddTimer() call and should return the next timer interval. If the value returned from the callback is 0, the timer is canceled.

The callback is run on a separate thread.

Timers take into account the amount of time it took to execute the callback. For example, if the callback took 250 ms to execute and returned 1000 (ms), the timer would only wait another 750 ms before its next iteration.

Timing may be inexact due to OS scheduling. Be sure to note the current time with SDL_GetTicks() or SDL_GetPerformanceCounter() in case your callback needs to adjust for variances.

\param interval the timer delay, in milliseconds, passed to callback \param callback the SDL_TimerCallback function to call when the specified interval elapses \param param a pointer that is passed to callback \returns a timer ID or 0 if an error occurs; call SDL_GetError() for more information.

\since This function is available since SDL 2.0.0.

\sa SDL_RemoveTimer