Home
last modified time | relevance | path

Searched defs:ImFmod (Results 1 – 2 of 2) sorted by relevance

/third_party/mesa3d/src/imgui/
Dimgui_internal.h216 static inline float ImFmod(float x, float y) { return fmodf(x, y… in ImFmod() function
217 static inline double ImFmod(double x, double y) { return fmod(x, y)… in ImFmod() function
/third_party/skia/third_party/externals/imgui/
Dimgui_internal.h389 #define ImFmod(X, Y) fmodf((X), (Y)) macro