- Attendre une durée en millsecondes
SDL_Delay() vous permet d'attendre un nombre de millisecondes.
Du fait que les systèmes supportant SDL sont multitâches,
il n'existe aucun moyen d'assurer que votre application va attendre
le temps requis. Cette fonction sert plus à attendre un moment plutôt
que marquer un évènement à un temps précis.
|
Astuce:
Most operating systems have a scheduler timeslice of
about 10 ms. You can use SDL_Delay(1) as a way of giving
up CPU for the current timeslice, allowing other threads
to run. This is important if you have a thread in a tight
loop but want other threads (like audio) to keep running.
|