Skip to content

Neslib.Sdl3.Time

Types

Name Description
TSdlTimerCallback Function prototype for the millisecond timer callback function.
TSdlTimerID A timer ID.
TSdlTimerNSCallback Function prototype for the nanosecond timer callback function.

Routines

Name Description
SdlAddTimer Call a callback function at a future time.
SdlAddTimerNS Call a callback function at a future time.
SdlDelay Wait a specified number of milliseconds before returning.
SdlDelayNS Wait a specified number of nanoseconds before returning.
SdlDelayPrecise Wait a specified number of nanoseconds before returning.
SdlGetPerformanceCounter Get the current value of the high resolution counter.
SdlGetPerformanceFrequency Get the count per second of the high resolution counter.
SdlGetTicks Get the number of milliseconds since SDL library initialization.
SdlGetTicksNS Get the number of nanoseconds since SDL library initialization.
SdlMSToNS Convert milliseconds to nanoseconds.
SdlNSToMS Convert nanoseconds to milliseconds.
SdlNSToSeconds Convert nanoseconds to seconds.
SdlNSToUS Convert nanoseconds to microseconds.
SdlRemoveTimer Remove a timer created with SdlAddTimer or SdlAddTimerNS.
SdlSecondsToNS Convert seconds to nanoseconds.
SdlUSToNS Convert microseconds to nanoseconds.

Constants

Name Description
SDL_MS_PER_SECOND Number of milliseconds in a second.
SDL_NS_PER_MS Number of nanoseconds in a millisecond.
SDL_NS_PER_SECOND Number of nanoseconds in a second.
SDL_NS_PER_US Number of nanoseconds in a microsecond.
SDL_US_PER_SECOND Number of microseconds in a second.