| 424 | static inline float ImPow(float x, float y) { return powf(x, y); } // DragBehaviorT/SliderBehaviorT uses ImPow with either float/double and need the precision |
| 425 | static inline double ImPow(double x, double y) { return pow(x, y); } |
| 426 | static inline float ImLog(float x) { return logf(x); } // DragBehaviorT/SliderBehaviorT uses ImLog with either float/double and need the precision |
| 427 | static inline double ImLog(double x) { return log(x); } |
| 428 | static inline int ImAbs(int x) { return x < 0 ? -x : x; } |
| 429 | static inline float ImAbs(float x) { return fabsf(x); } |
no outgoing calls
no test coverage detected