| 444 | static inline float ImPow(float x, float y) { return powf(x, y); } // DragBehaviorT/SliderBehaviorT uses ImPow with either float/double and need the precision |
| 445 | static inline double ImPow(double x, double y) { return pow(x, y); } |
| 446 | static inline float ImLog(float x) { return logf(x); } // DragBehaviorT/SliderBehaviorT uses ImLog with either float/double and need the precision |
| 447 | static inline double ImLog(double x) { return log(x); } |
| 448 | static inline int ImAbs(int x) { return x < 0 ? -x : x; } |
| 449 | static inline float ImAbs(float x) { return fabsf(x); } |
no test coverage detected