aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/core
diff options
context:
space:
mode:
authorGravatar reed <reed@google.com>2014-10-21 12:33:21 -0700
committerGravatar Commit bot <commit-bot@chromium.org>2014-10-21 12:33:21 -0700
commit39393e3ac309d4bedbc18bae98d3ebcb762501dd (patch)
treee8c984efb79c6e08474c0f52e8260597664a59b4 /include/core
parentc7f7f467df07be73b22dbee38a59762997eb19bc (diff)
add round/ceil/etc. for SkMScalar
BUG=skia: TBR= Review URL: https://codereview.chromium.org/645793006
Diffstat (limited to 'include/core')
-rw-r--r--include/core/SkFloatingPoint.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/include/core/SkFloatingPoint.h b/include/core/SkFloatingPoint.h
index f85c456aa8..1003b80b4f 100644
--- a/include/core/SkFloatingPoint.h
+++ b/include/core/SkFloatingPoint.h
@@ -116,6 +116,13 @@ static inline float sk_float_copysign(float x, float y) {
#define sk_float_ceil2int(x) (int)sk_float_ceil(x)
#endif
+#define sk_double_floor(x) floor(x)
+#define sk_double_round(x) floor((x) + 0.5)
+#define sk_double_ceil(x) ceil(x)
+#define sk_double_floor2int(x) (int)floor(x)
+#define sk_double_round2int(x) (int)floor((x) + 0.5f)
+#define sk_double_ceil2int(x) (int)ceil(x)
+
extern const uint32_t gIEEENotANumber;
extern const uint32_t gIEEEInfinity;
extern const uint32_t gIEEENegativeInfinity;