aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests
diff options
context:
space:
mode:
authorGravatar bsalomon@google.com <bsalomon@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2012-02-23 14:54:49 +0000
committerGravatar bsalomon@google.com <bsalomon@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2012-02-23 14:54:49 +0000
commit53aab7813ca20360426524361941cf43567fc7ae (patch)
tree638bd50d77bb61eddab39876dac27523c5340c8b /tests
parent17aa07df01a97ed22858012d4ca625d1e907f992 (diff)
Fix line endings.
git-svn-id: http://skia.googlecode.com/svn/trunk@3234 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'tests')
-rw-r--r--tests/PathTest.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/tests/PathTest.cpp b/tests/PathTest.cpp
index 12f0f585a8..868ce318b1 100644
--- a/tests/PathTest.cpp
+++ b/tests/PathTest.cpp
@@ -92,11 +92,11 @@ static void test_direction(skiatest::Reporter* reporter) {
// triangle with one point really far from the origin.
path.reset();
// the first point is roughly 1.05e10, 1.05e10
- path.moveTo(SkFloatToScalar(SkBits2Float(0x501c7652)), SkFloatToScalar(SkBits2Float(0x501c7652)));
- path.lineTo(110 * SK_Scalar1, -10 * SK_Scalar1);
- path.lineTo(-10 * SK_Scalar1, 60 * SK_Scalar1);
- check_direction(&path, SkPath::kCCW_Direction, reporter);
-#endif
+ path.moveTo(SkFloatToScalar(SkBits2Float(0x501c7652)), SkFloatToScalar(SkBits2Float(0x501c7652)));
+ path.lineTo(110 * SK_Scalar1, -10 * SK_Scalar1);
+ path.lineTo(-10 * SK_Scalar1, 60 * SK_Scalar1);
+ check_direction(&path, SkPath::kCCW_Direction, reporter);
+#endif
}
static void add_rect(SkPath* path, const SkRect& r) {