Round x
to the nearest integer representable as a long
Defined in <SDL3/SDL_stdinc.h>
long SDL_lroundf(float x);
float | x | floating point value. |
(long) Returns the nearest integer to x
.
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_lroundf for double-precision floats. To get the result as a floating-point type, use SDL_roundf,
It is safe to call this function from any thread.
This function is available since SDL 3.1.3.