| 422 | //#define ImFloorStd(X) floorf(X) // We use our own, see ImFloor() and ImFloorSigned() |
| 423 | #define ImCeil(X) ceilf(X) |
| 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); } |
no outgoing calls
no test coverage detected