Lines Matching full:timer
45 /* This is the maximum resolution of the SDL timer on all platforms */
56 /* Function prototype for the timer callback function */
60 * elapsed. The callback function is passed the current timer interval
61 * and returns the next timer interval. If the returned value is the
66 * To cancel a currently running timer, call SDL_SetTimer(0, NULL);
68 * The timer callback function may run in a different thread than your
71 * The maximum resolution of this timer is 10 ms, which means that if
72 * you request a 16 ms timer, your callback will run approximately 20 ms
75 * timer for 30 ms:
87 /* New timer API, supports multiple timers
91 /* Function prototype for the new timer callback function.
92 * The callback function is passed the current timer interval and returns
93 * the next timer interval. If the returned value is the same as the one
99 /* Definition of the timer ID type */
102 /* Add a new timer to the pool of timers already running.
103 Returns a timer ID, or NULL when an error occurs.