Sanitizing source files in Skia_Periodic_House_Keeping
authorskia.committer@gmail.com <skia.committer@gmail.com@2bbb7eff-a529-9590-31e7-b0007b416f81>
Fri, 18 Jan 2013 07:07:28 +0000 (07:07 +0000)
committerskia.committer@gmail.com <skia.committer@gmail.com@2bbb7eff-a529-9590-31e7-b0007b416f81>
Fri, 18 Jan 2013 07:07:28 +0000 (07:07 +0000)
git-svn-id: http://skia.googlecode.com/svn/trunk@7268 2bbb7eff-a529-9590-31e7-b0007b416f81

bench/TileBench.cpp
experimental/Intersection/CubicIntersection.cpp
experimental/Intersection/CubicIntersection_Test.cpp
experimental/Intersection/DataTypes.h
experimental/Intersection/Intersections.h
experimental/Intersection/QuadraticImplicit.cpp
experimental/Intersection/QuadraticUtilities.h
experimental/Intersection/Simplify.cpp
experimental/Intersection/SimplifyNew_Test.cpp
src/core/SkPath.cpp

index 661be9abea6447107d95f113210157b646452078..41d19298dbc4e9e745b05e4b7aac35d290d493a9 100644 (file)
@@ -38,11 +38,11 @@ class ConstXTileBench : public SkBenchmark {
     static const int kHeight = 300;
 
 public:
-    ConstXTileBench(void* param, 
+    ConstXTileBench(void* param,
                     SkShader::TileMode xTile,
                     SkShader::TileMode yTile,
                     bool doFilter,
-                    bool doTrans) 
+                    bool doTrans)
         : INHERITED(param)
         , fDoFilter(doFilter)
         , fDoTrans(doTrans) {
index d5a5bdef780b0a66ad5be74d3bfe78b00d76b7de..be3e088b2559ae6985a276716586297ac43322d5 100644 (file)
@@ -164,7 +164,7 @@ bool intersect(const Cubic& c1, const Cubic& c2, Intersections& i) {
 // this flavor approximates the cubics with quads to find the intersecting ts
 // OPTIMIZE: if this strategy proves successful, the quad approximations, or the ts used
 // to create the approximations, could be stored in the cubic segment
-// fixme: this strategy needs to add short line segments on either end, or similarly extend the 
+// fixme: this strategy needs to add short line segments on either end, or similarly extend the
 // initial and final quadratics
 bool intersect2(const Cubic& c1, const Cubic& c2, Intersections& i) {
     SkTDArray<double> ts1;
index 7d27bf40b4ca1c6ca3223be02f67abf6b202f86c..61031087b36df3f8651619329ebb30a203199402 100644 (file)
@@ -62,7 +62,7 @@ static void oneOff(const Cubic& cubic1, const Cubic& cubic2) {
     cubic_to_quadratics(cubic1, calcPrecision(cubic1), quads1);
     for (int index = 0; index < quads1.count(); ++index) {
         const Quadratic& q = quads1[index];
-        SkDebugf("{{%1.9g,%1.9g}, {%1.9g,%1.9g}, {%1.9g,%1.9g}},\n", q[0].x, q[0].y, 
+        SkDebugf("{{%1.9g,%1.9g}, {%1.9g,%1.9g}, {%1.9g,%1.9g}},\n", q[0].x, q[0].y,
                  q[1].x, q[1].y,  q[2].x, q[2].y);
     }
     SkDebugf("\n");
@@ -70,7 +70,7 @@ static void oneOff(const Cubic& cubic1, const Cubic& cubic2) {
     cubic_to_quadratics(cubic2, calcPrecision(cubic2), quads2);
     for (int index = 0; index < quads2.count(); ++index) {
         const Quadratic& q = quads2[index];
-        SkDebugf("{{%1.9g,%1.9g}, {%1.9g,%1.9g}, {%1.9g,%1.9g}},\n", q[0].x, q[0].y, 
+        SkDebugf("{{%1.9g,%1.9g}, {%1.9g,%1.9g}, {%1.9g,%1.9g}},\n", q[0].x, q[0].y,
                  q[1].x, q[1].y,  q[2].x, q[2].y);
     }
     SkDebugf("\n");
index 56931d49bd088950cb54898903e041d979d0432b..84c3b66201f1ff9c5cf5c3946ae41e87aa0318a1 100644 (file)
@@ -155,7 +155,7 @@ struct _Point {
         return AlmostEqualUlps((float) x, (float) a.x)
                 && AlmostEqualUlps((float) y, (float) a.y);
     }
-    
+
     double dot(const _Point& a) {
         return x * a.x + y * a.y;
     }
index 618c2c1b56064653fd58e6e1b5e6d6cd70cc8aa4..c8a142a19b99c9988bf9d6fad3bbe19c20e25365 100644 (file)
@@ -85,7 +85,7 @@ public:
     void swap() {
         fSwap ^= true;
     }
-    
+
     void swapPts() {
         int index;
         for (index = 0; index < fUsed; ++index) {
index 72a418620380fe0f313fec5853afd94be13110a6..6e465571460ac827b1f4742f1e78ae9099834489 100644 (file)
@@ -21,7 +21,7 @@
  * then
  * 0 = A(at^2+bt+c)(at^2+bt+c)+B(at^2+bt+c)(dt^2+et+f)+C(dt^2+et+f)(dt^2+et+f)+D(at^2+bt+c)+E(dt^2+et+f)+F
  */
+
 #if SK_DEBUG
 #define QUARTIC_DEBUG 1
 #else
@@ -160,7 +160,7 @@ static bool pointInTriangle(const _Point& pt, const _Line* testLines[]) {
     const _Point& B = (*testLines[1])[0];
     const _Point& C = (*testLines[2])[0];
 
-// Compute vectors        
+// Compute vectors
     _Point v0 = C - A;
     _Point v1 = B - A;
     _Point v2 = pt - A;
@@ -243,7 +243,7 @@ static bool isLinearInner(const Quadratic& q1, double t1s, double t1e, const Qua
     bool startInTriangle = pointInTriangle(end, testLines);
     if (startInTriangle) {
         tMin = t2s;
-    } 
+    }
     xy_at_t(q2, t2e, end.x, end.y);
     bool endInTriangle = pointInTriangle(end, testLines);
     if (endInTriangle) {
@@ -261,7 +261,7 @@ static bool isLinearInner(const Quadratic& q1, double t1s, double t1e, const Qua
                 break;
             }
         }
-        
+
     }
     if (split == 0) { // there's one point
         if (addIntercept(q1, q2, tMin, tMax, i)) {
index 3230e9beb57c9d88f68ff82475f41d2844dec0a0..e2f94e7f9fade2f10e6fb69f2c63e9163f45e638 100644 (file)
@@ -4,7 +4,7 @@
  * Use of this source code is governed by a BSD-style license that can be
  * found in the LICENSE file.
  */
+
 #if !defined QUADRATIC_UTILITIES_H
 #define QUADRATIC_UTILITIES_H
 
index 5fd0fd522384773c6dab1c30f31c67d9008a16d2..19390fb45951fd186cd46ffcd7ce852737d81d93 100644 (file)
@@ -1678,7 +1678,7 @@ public:
             other.addCancelOutsides(tStart, oStart, *this, endT);
         }
     }
-    
+
     int addUnsortableT(double newT, Segment* other, bool start) {
         int result = addT(newT, other);
         Span* span = &fTs[result];
index b6cc26e1597c16ce4728f8cb7cb00e7f0fe93800..823693c7e3ca9f6a873ac132a7a0c156affe2660 100644 (file)
@@ -4032,7 +4032,7 @@ static void testOp8d() {
     pathB.cubicTo(10.7082f, -116.596f, 262.057f, 45.6468f, 294.694f, 1.96237f);
     pathB.close();
     testShapeOp(path, pathB, kDifference_Op);
-}    
+}
 
 static const size_t testCount = sizeof(tests) / sizeof(tests[0]);
 
index 66908d8346547cef1d6ff14b59680dec70f9bfa7..c3ddf604f7f74d07396a9c01924d28fbe01e7087 100644 (file)
@@ -2121,7 +2121,7 @@ static void append_params(SkString* str, const char label[], const SkPoint pts[]
                           int count) {
     str->append(label);
     str->append("(");
-    
+
     const SkScalar* values = &pts[0].fX;
     count *= 2;