MCPcopy Create free account
hub / github.com/danoon2/Boxedwine / SDL_floorf

Function SDL_floorf

lib/sdl2/src/stdlib/SDL_stdlib.c:253–261  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

251}
252
253float
254SDL_floorf(float x)
255{
256#if defined(HAVE_FLOORF)
257 return floorf(x);
258#else
259 return (float)SDL_floor((double)x);
260#endif
261}
262
263double
264SDL_fmod(double x, double y)

Callers 3

RGBtoYUVFunction · 0.85
ConvertRGBtoPlanar2x2Function · 0.85
ConvertRGBtoPacked4Function · 0.85

Calls 1

SDL_floorFunction · 0.85

Tested by 3

RGBtoYUVFunction · 0.68
ConvertRGBtoPlanar2x2Function · 0.68
ConvertRGBtoPacked4Function · 0.68