sdlLroundf function

int sdlLroundf(
  1. double x
)
extern DECLSPEC long SDLCALL SDL_lroundf(float x)

Implementation

int sdlLroundf(double x) {
  final sdlLroundfLookupFunction =
      libSdl2.lookupFunction<Int32 Function(Float x), int Function(double x)>(
          'SDL_lroundf');
  return sdlLroundfLookupFunction(x);
}