SDL_DelayPrecise

Wait a specified number of nanoseconds before returning.

This function waits a specified number of nanoseconds before returning. It will attempt to wait as close to the requested time as possible, busy waiting if necessary, but could return later due to OS scheduling.

extern (C) nothrow @nogc extern
void
SDL_DelayPrecise
(
ulong ns
)

Parameters

ns ulong

The number of nanoseconds to delay.

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

See Also

Meta