Home
last modified time | relevance | path

Searched defs:ImPow (Results 1 - 2 of 2) sorted by relevance

/third_party/skia/third_party/externals/imgui/
H A Dimgui_internal.h397 static inline float ImPow(float x, float y) { return powf(x, y); } // DragBehaviorT/SliderBehaviorT uses ImPow with either float/double and need the precision in ImPow() function
398 static inline double ImPow(double x, double y) { return pow(x, y); } in ImPow() function
/third_party/mesa3d/src/imgui/
H A Dimgui_internal.h214 static inline float ImPow(float x, float y) { return powf(x, y); } in ImPow() function
215 static inline double ImPow(double x, double y) { return pow(x, y); } in ImPow() function

Completed in 11 milliseconds