commit | 996d78b7cf9863a5b574fc1b64b1715cad4d0a23 | [log] [tgz] |
---|---|---|
author | caryclark@google.com <caryclark@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81> | Thu Mar 14 16:24:30 2013 +0000 |
committer | caryclark@google.com <caryclark@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81> | Thu Mar 14 16:24:30 2013 +0000 |
tree | 653783d10c8f0b00902f6b4268886cd599aed2da | |
parent | bda74d33f6947b91648a650cd89d53eee408214d [diff] [blame] |
shape ops work in progress cubic tests pass git-svn-id: http://skia.googlecode.com/svn/trunk@8161 2bbb7eff-a529-9590-31e7-b0007b416f81
diff --git a/experimental/Intersection/Intersections.cpp b/experimental/Intersection/Intersections.cpp index c5ff0ca..1877bd4 100644 --- a/experimental/Intersection/Intersections.cpp +++ b/experimental/Intersection/Intersections.cpp
@@ -90,7 +90,7 @@ } int Intersections::insert(double one, double two, const _Point& pt) { - SkASSERT(fUsed <= 1 || fT[0][0] < fT[0][1]); + SkASSERT(fUsed <= 1 || fT[0][0] <= fT[0][1]); int index; for (index = 0; index < fUsed; ++index) { double oldOne = fT[0][index];