From 7a03d86a3d9adcb13432fbd82039725149487c97 Mon Sep 17 00:00:00 2001 From: "skia.committer@gmail.com" Date: Tue, 18 Dec 2012 02:03:03 +0000 Subject: Sanitizing source files in Skia_Periodic_House_Keeping git-svn-id: http://skia.googlecode.com/svn/trunk@6872 2bbb7eff-a529-9590-31e7-b0007b416f81 --- src/core/SkPath.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/core/SkPath.cpp') diff --git a/src/core/SkPath.cpp b/src/core/SkPath.cpp index b9f3286fed..89150a3f88 100644 --- a/src/core/SkPath.cpp +++ b/src/core/SkPath.cpp @@ -1035,9 +1035,9 @@ void SkPath::addRoundRect(const SkRect& rect, SkScalar rx, SkScalar ry, static void add_corner_arc(SkPath* path, const SkRect& rect, SkScalar rx, SkScalar ry, int startAngle, SkPath::Direction dir, bool forceMoveTo) { - // These two asserts are not sufficient, since really we want to know - // that the pair of radii (e.g. left and right, or top and bottom) sum - // to <= dimension, but we don't have that data here, so we just have + // These two asserts are not sufficient, since really we want to know + // that the pair of radii (e.g. left and right, or top and bottom) sum + // to <= dimension, but we don't have that data here, so we just have // these conservative asserts. SkASSERT(0 <= rx && rx <= rect.width()); SkASSERT(0 <= ry && ry <= rect.height()); -- cgit v1.2.3