File tree Expand file tree Collapse file tree 1 file changed +16
-0
lines changed Expand file tree Collapse file tree 1 file changed +16
-0
lines changed Original file line number Diff line number Diff line change @@ -314,6 +314,22 @@ function SDL_floor(x: cdouble): cdouble; cdecl;
314314function SDL_floorf (x: cfloat): cfloat; cdecl;
315315 external SDL_LibName { $IFDEF DELPHI} { $IFDEF MACOS} name ' _SDL_floorf' { $ENDIF} { $ENDIF} ;
316316
317+ (* *
318+ * Calculate the floating-point remainder of dividing x by y.
319+ *
320+ * \since This function is available since SDL 2.0.8.
321+ *)
322+ function SDL_fmod (x, y: cdouble): cdouble; cdecl;
323+ external SDL_LibName { $IFDEF DELPHI} { $IFDEF MACOS} name ' _SDL_fmod' { $ENDIF} { $ENDIF} ;
324+
325+ (* *
326+ * Calculate the floating-point remainder of dividing x by y.
327+ *
328+ * \since This function is available since SDL 2.0.8.
329+ *)
330+ function SDL_fmodf (x, y: cfloat): cfloat; cdecl;
331+ external SDL_LibName { $IFDEF DELPHI} { $IFDEF MACOS} name ' _SDL_fmodf' { $ENDIF} { $ENDIF} ;
332+
317333(* *
318334 * Calculate the natural logarithm of x.
319335 *
You can’t perform that action at this time.
0 commit comments