Function SDL_DelayPrecise

pub unsafe extern "C" fn SDL_DelayPrecise(ns: u64)
Available on crate feature dep_sdl3 only.
Expand description

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.

§Parameters

  • ns: the number of nanoseconds to delay.

§Thread safety

It is safe to call this function from any thread.

§Availability

This function is available since SDL 3.2.0.

§See also