OLD | NEW |
1 /* | 1 /* |
2 * Copyright 2012 Google Inc. | 2 * Copyright 2012 Google Inc. |
3 * | 3 * |
4 * Use of this source code is governed by a BSD-style license that can be | 4 * Use of this source code is governed by a BSD-style license that can be |
5 * found in the LICENSE file. | 5 * found in the LICENSE file. |
6 */ | 6 */ |
7 | 7 |
8 #include "Test.h" | |
9 #include "SkPaint.h" | 8 #include "SkPaint.h" |
10 #include "SkPath.h" | 9 #include "SkPath.h" |
11 #include "SkRect.h" | 10 #include "SkRect.h" |
12 #include "SkStroke.h" | 11 #include "SkStroke.h" |
| 12 #include "Test.h" |
13 | 13 |
14 static bool equal(const SkRect& a, const SkRect& b) { | 14 static bool equal(const SkRect& a, const SkRect& b) { |
15 return SkScalarNearlyEqual(a.left(), b.left()) && | 15 return SkScalarNearlyEqual(a.left(), b.left()) && |
16 SkScalarNearlyEqual(a.top(), b.top()) && | 16 SkScalarNearlyEqual(a.top(), b.top()) && |
17 SkScalarNearlyEqual(a.right(), b.right()) && | 17 SkScalarNearlyEqual(a.right(), b.right()) && |
18 SkScalarNearlyEqual(a.bottom(), b.bottom()); | 18 SkScalarNearlyEqual(a.bottom(), b.bottom()); |
19 } | 19 } |
20 | 20 |
21 static void test_strokerect(skiatest::Reporter* reporter) { | 21 static void test_strokerect(skiatest::Reporter* reporter) { |
22 const SkScalar width = SkIntToScalar(10); | 22 const SkScalar width = SkIntToScalar(10); |
(...skipping 28 matching lines...) Expand all Loading... |
51 inner.inset(width/2, width/2); | 51 inner.inset(width/2, width/2); |
52 REPORTER_ASSERT(reporter, equal(nested[0], outer)); | 52 REPORTER_ASSERT(reporter, equal(nested[0], outer)); |
53 REPORTER_ASSERT(reporter, equal(nested[1], inner)); | 53 REPORTER_ASSERT(reporter, equal(nested[1], inner)); |
54 } | 54 } |
55 } | 55 } |
56 } | 56 } |
57 | 57 |
58 DEF_TEST(Stroke, reporter) { | 58 DEF_TEST(Stroke, reporter) { |
59 test_strokerect(reporter); | 59 test_strokerect(reporter); |
60 } | 60 } |
OLD | NEW |