Function SDL_lroundf

pub unsafe extern "C" fn SDL_lroundf(x: f32) -> i64 
Available on crate feature dep_sdl3 only.
Expand description

Round x to the nearest integer representable as a long

Rounds x to the nearest integer. Values halfway between integers will be rounded away from zero.

Domain: -INF <= x <= INF

Range: MIN_LONG <= y <= MAX_LONG

This function operates on single-precision floating point values, use SDL_lround for double-precision floats. To get the result as a floating-point type, use SDL_roundf.

§Parameters

  • x: floating point value.

§Return value

Returns the nearest integer to x.

§Thread safety

It is safe to call this function from any thread.

§Availability

This function is available since SDL 3.2.0.

§See also