| 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" | 8 #include "Test.h" |
| 9 #include "TestClassDef.h" | |
| 10 #include "SkPaint.h" | 9 #include "SkPaint.h" |
| 11 #include "SkPath.h" | 10 #include "SkPath.h" |
| 12 #include "SkRect.h" | 11 #include "SkRect.h" |
| 13 #include "SkStroke.h" | 12 #include "SkStroke.h" |
| 14 | 13 |
| 15 static bool equal(const SkRect& a, const SkRect& b) { | 14 static bool equal(const SkRect& a, const SkRect& b) { |
| 16 return SkScalarNearlyEqual(a.left(), b.left()) && | 15 return SkScalarNearlyEqual(a.left(), b.left()) && |
| 17 SkScalarNearlyEqual(a.top(), b.top()) && | 16 SkScalarNearlyEqual(a.top(), b.top()) && |
| 18 SkScalarNearlyEqual(a.right(), b.right()) && | 17 SkScalarNearlyEqual(a.right(), b.right()) && |
| 19 SkScalarNearlyEqual(a.bottom(), b.bottom()); | 18 SkScalarNearlyEqual(a.bottom(), b.bottom()); |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 52 inner.inset(width/2, width/2); | 51 inner.inset(width/2, width/2); |
| 53 REPORTER_ASSERT(reporter, equal(nested[0], outer)); | 52 REPORTER_ASSERT(reporter, equal(nested[0], outer)); |
| 54 REPORTER_ASSERT(reporter, equal(nested[1], inner)); | 53 REPORTER_ASSERT(reporter, equal(nested[1], inner)); |
| 55 } | 54 } |
| 56 } | 55 } |
| 57 } | 56 } |
| 58 | 57 |
| 59 DEF_TEST(Stroke, reporter) { | 58 DEF_TEST(Stroke, reporter) { |
| 60 test_strokerect(reporter); | 59 test_strokerect(reporter); |
| 61 } | 60 } |
| OLD | NEW |