aboutsummaryrefslogtreecommitdiffhomepage
path: root/samplecode/SampleRegion.cpp
diff options
context:
space:
mode:
authorGravatar bungeman <bungeman@google.com>2015-07-21 14:14:30 -0700
committerGravatar Commit bot <commit-bot@chromium.org>2015-07-21 14:14:30 -0700
commitb7069e9c1f65d11f9581be0adbffa968257afc33 (patch)
tree81affa184b4364bff0020c8fed2e6a902984bc7c /samplecode/SampleRegion.cpp
parent7a787b47437043aacc2d476beab2f531bc02fe9d (diff)
Compile with VS2015.
Visual Studio 2015 has additional warnings around noexcept and disabling exceptions, which can be worked around with the (undocumented) _HAS_EXCEPTIONS macro. Visual Studio 2013 and 2015 have roundf in math.h, so use it to avoid extra work and casts. We avoid using cmath, as it undefs isfinite on gcc, but Visual Studio 2015 no longer provides overloads of copysign from math.h (which is actually correct). As a result, use copysignf (which is available in math.h in 2013 and 2015) directly. Review URL: https://codereview.chromium.org/1244173005
Diffstat (limited to 'samplecode/SampleRegion.cpp')
-rw-r--r--samplecode/SampleRegion.cpp8
1 files changed, 2 insertions, 6 deletions
diff --git a/samplecode/SampleRegion.cpp b/samplecode/SampleRegion.cpp
index 3c5fc2e35c..8047844307 100644
--- a/samplecode/SampleRegion.cpp
+++ b/samplecode/SampleRegion.cpp
@@ -1,4 +1,3 @@
-
/*
* Copyright 2011 Google Inc.
*
@@ -15,6 +14,8 @@
#include "SkUtils.h"
#include "SkImageDecoder.h"
+#include <math.h>
+
static void test_strokerect(SkCanvas* canvas) {
int width = 100;
int height = 100;
@@ -115,11 +116,6 @@ static void test_text(SkCanvas* canvas) {
drawFadingText(canvas, str, len, x, y, paint);
}
-#ifdef SK_BUILD_FOR_WIN
-// windows doesn't have roundf
-inline float roundf(float x) { return (x-floor(x))>0.5 ? ceil(x) : floor(x); }
-#endif
-
#ifdef SK_DEBUG
static void make_rgn(SkRegion* rgn, int left, int top, int right, int bottom,
int count, int32_t runs[]) {