sdlRoundf function

double sdlRoundf(
  1. double x
)
extern DECLSPEC float SDLCALL SDL_roundf(float x)

Implementation

double sdlRoundf(double x) {
  final sdlRoundfLookupFunction = libSdl2.lookupFunction<
      Float Function(Float x), double Function(double x)>('SDL_roundf');
  return sdlRoundfLookupFunction(x);
}