Sanitizing source files in Skia_Periodic_House_Keeping

git-svn-id: http://skia.googlecode.com/svn/trunk@7759 2bbb7eff-a529-9590-31e7-b0007b416f81
This commit is contained in:
skia.committer@gmail.com 2013-02-17 07:02:20 +00:00
parent 47d73daa7a
commit e7707c2931
3 changed files with 2 additions and 3 deletions

View File

@ -448,7 +448,7 @@ bool intersect2(const Cubic& c1, const Cubic& c2, Intersections& i) {
}
const double CLOSE_ENOUGH = 0.001;
static bool closeStart(const Cubic& cubic, int cubicIndex, Intersections& i, _Point& pt) {
if (i.fT[cubicIndex][0] != 0 || i.fT[cubicIndex][1] > CLOSE_ENOUGH) {
return false;

View File

@ -80,7 +80,7 @@ public:
}
void removeOne(int index);
// leaves flip, swap alone
void reset() {
fUsed = 0;

View File

@ -388,4 +388,3 @@ void QuadraticIntersection_IntersectionFinder() {
SkDebugf("%s p2=(%1.9g,%1.9g)<(%1.9g,%1.9g)<(%1.9g,%1.9g)\n", __FUNCTION__,
p20.x, p20.y, p2Seed.x, p2Seed.y, p22.x, p22.y);
}