Lines Matching full:timer
40 /* This is the maximum resolution of the SDL timer on all platforms */
51 /* Function prototype for the timer callback function */
55 * elapsed. The callback function is passed the current timer interval
56 * and returns the next timer interval. If the returned value is the
61 * To cancel a currently running timer, call SDL_SetTimer(0, NULL);
63 * The timer callback function may run in a different thread than your
66 * The maximum resolution of this timer is 10 ms, which means that if
67 * you request a 16 ms timer, your callback will run approximately 20 ms
70 * timer for 30 ms:
84 /* New timer API, supports multiple timers
88 /* Function prototype for the new timer callback function.
89 * The callback function is passed the current timer interval and returns
90 * the next timer interval. If the returned value is the same as the one
96 /* Definition of the timer ID type */
99 /* Add a new timer to the pool of timers already running.
100 Returns a timer ID, or NULL when an error occurs.