SDL_Delay

Wait a specified number of milliseconds before returning.

This function waits a specified number of milliseconds before returning. It waits at least the specified time, but possibly longer due to OS scheduling.

extern (C) nothrow @nogc extern
void
SDL_Delay
(
uint ms
)

Parameters

ms uint

The number of milliseconds to delay.

Threadsafety: It is safe to call this function from any thread.

See Also

Meta