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

bench/DashBench.cpp
experimental/Intersection/CubicIntersection.cpp
experimental/Intersection/CubicUtilities.cpp
experimental/Intersection/DataTypes.h
experimental/Intersection/QuadraticUtilities.cpp
experimental/Intersection/QuarticRoot.h
gyp/SampleApp.gyp
include/core/SkDraw.h
src/core/SkDraw.cpp
src/effects/SkDashPathEffect.cpp
tests/SortTest.cpp

index 930688f4f675c29acb36a8a975cf613c23b9e5cb..e62fb532536308213c285109ffb846bb005e1923 100644 (file)
@@ -318,7 +318,7 @@ class GiantDashBench : public SkBenchmark {
     SkScalar fStrokeWidth;
     SkPoint  fPts[2];
     SkAutoTUnref<SkPathEffect> fPathEffect;
-    
+
 public:
     enum LineType {
         kHori_LineType,
@@ -345,7 +345,7 @@ public:
         SkScalar cx = 640 / 2;  // center X
         SkScalar cy = 480 / 2;  // center Y
         SkMatrix matrix;
-    
+
         switch (lt) {
             case kHori_LineType:
                 matrix.setIdentity();
@@ -357,19 +357,19 @@ public:
                 matrix.setRotate(45, cx, cy);
                 break;
         }
-        
+
         const SkScalar overshoot = 100*1000;
         const SkPoint pts[2] = {
             { -overshoot, cy }, { 640 + overshoot, cy }
         };
         matrix.mapPoints(fPts, pts, 2);
     }
-    
+
 protected:
     virtual const char* onGetName() SK_OVERRIDE {
         return fName.c_str();
     }
-    
+
     virtual void onDraw(SkCanvas* canvas) SK_OVERRIDE {
         SkPaint p;
         this->setupPaint(&p);
@@ -379,7 +379,7 @@ protected:
 
         canvas->drawPoints(SkCanvas::kLines_PointMode, 2, fPts, p);
     }
-    
+
 private:
     typedef SkBenchmark INHERITED;
 };
index a5b4261dfe12d8a9a0ee024c28229fdfe3572588..8de63986220fe0776ed868e8ba41c4f275083bdb 100644 (file)
@@ -284,7 +284,7 @@ static bool intersect2(const Cubic& cubic1, double t1s, double t1e, const Cubic&
                             cubic1, SkTMax(to1 - dt1, 0.), SkTMin(to1 + dt1, 1.), i);
                     i.swap();
                     --debugDepth;
-                    
+
                 }
             }
             t2Start = t2;
index 3e2f474d7c448b1593e306f030b8d9e69054807c..70f10c17a42ab30c4c298b125739419b9baf1e98 100644 (file)
@@ -162,7 +162,7 @@ int cubicRootsReal(double A, double B, double C, double D, double s[3]) {
             *roots++ = -u - adiv3;
         }
     }
-    else 
+    else
 #endif
     if (R2MinusQ3 < 0)   // we have 3 real roots
     {
index de763edcc2f83162f9cec21676412b42f828c2a6..a6516fa0fc160fd60c505b2a38a583ad4ba3f4bb 100644 (file)
@@ -63,7 +63,7 @@ inline bool approximately_equal(double x, double y) {
     return approximately_zero(x - y);
 #else
 // see http://visualstudiomagazine.com/blogs/tool-tracker/2011/11/compare-floating-point-numbers.aspx
-// this allows very small (e.g. degenerate) values to compare unequally, but in this case, 
+// this allows very small (e.g. degenerate) values to compare unequally, but in this case,
 // AlmostEqualUlps should be used instead.
     if (x == y) {
         return true;
index 475ec13b7d3ad0c5c12f9349138b117efd9bcd9c..c1fab05822b6b6f698cd456d8fa5a82e0ece4599 100644 (file)
@@ -21,7 +21,7 @@ and using the roots
 
 */
 
-    
+
 int add_valid_ts(double s[], int realRoots, double* t) {
     int foundRoots = 0;
     for (int index = 0; index < realRoots; ++index) {
index f76509e2f4f5c9aa013d61807822c7a12ca66f12..3692caa1b6d537d098cf58f6299030c0242c659e 100644 (file)
@@ -1,5 +1,5 @@
 int reducedQuarticRoots(const double t4, const double t3, const double t2, const double t1,
         const double t0, const bool oneHint, double s[4]);
-        
+
 int quarticRootsReal(const double A, const double B, const double C, const double D,
         const double E, double s[4]);
index b7b39a83ea2e64d05c52e6f40b4cb6dd49593c17..d63553581734ab80f71b331a254a4e32e474adb1 100644 (file)
@@ -5,7 +5,7 @@
       'type': 'executable',
       'mac_bundle' : 1,
       'include_dirs' : [
-        '../src/core', 
+        '../src/core',
         '../src/effects', #needed for BlurMask.h
         '../gm',       # needed to pull gm.h
         '../samplecode', # To pull SampleApp.h and SampleCode.h
index e671d7d12c41f8c68dc20287cdb87baf241cc491..fa02919422a281e0e1febc253a4187abaf33ac13 100644 (file)
@@ -114,7 +114,7 @@ private:
      */
     bool SK_WARN_UNUSED_RESULT
     computeConservativeLocalClipBounds(SkRect* bounds) const;
-    
+
 public:
     const SkBitmap* fBitmap;        // required
     const SkMatrix* fMatrix;        // required
index 87f117b8e7472e831d9835687b6c170589ec376c..fcaf4cf6986d5b750b74630084827f1d67d45c67 100644 (file)
@@ -686,7 +686,7 @@ void SkDraw::drawPoints(SkCanvas::PointMode mode, size_t count,
                     path.lineTo(pts[1]);
 
                     SkRect cullRect = SkRect::Make(fRC->getBounds());
-                    
+
                     if (paint.getPathEffect()->asPoints(&pointData, path, rec,
                                                         *fMatrix, &cullRect)) {
                         // 'asPoints' managed to find some fast path
index d1ce5260734e0d48a6db7fc8e8d67bef367037e6..c6ae6b22b487efb410018ccff983f8f9cfb72e19 100644 (file)
@@ -118,7 +118,7 @@ static bool cull_path(const SkPath& srcPath, const SkStrokeRec& rec,
 
     SkScalar dx = pts[1].x() - pts[0].x();
     SkScalar dy = pts[1].y() - pts[0].y();
-    
+
     // just do horizontal lines for now (lazy)
     if (dy) {
         return false;
@@ -126,11 +126,11 @@ static bool cull_path(const SkPath& srcPath, const SkStrokeRec& rec,
 
     SkScalar minX = pts[0].fX;
     SkScalar maxX = pts[1].fX;
-    
+
     if (maxX < bounds.fLeft || minX > bounds.fRight) {
         return false;
     }
-    
+
     if (dx < 0) {
         SkTSwap(minX, maxX);
     }
@@ -147,14 +147,14 @@ static bool cull_path(const SkPath& srcPath, const SkStrokeRec& rec,
         maxX = bounds.fRight + SkScalarMod(maxX - bounds.fRight,
                                            intervalLength);
     }
-    
+
     SkASSERT(maxX > minX);
     if (dx < 0) {
         SkTSwap(minX, maxX);
     }
     pts[0].fX = minX;
     pts[1].fX = maxX;
-    
+
     dstPath->moveTo(pts[0]);
     dstPath->lineTo(pts[1]);
     return true;
@@ -243,7 +243,7 @@ bool SkDashPathEffect::filterPath(SkPath* dst, const SkPath& src,
     if (cull_path(src, *rec, cullRect, fIntervalLength, &cullPathStorage)) {
         srcPtr = &cullPathStorage;
     }
-    
+
     SpecialLineRec lineRec;
     bool specialLine = lineRec.init(src, dst, rec, fCount >> 1, fIntervalLength);
 
index b9c32fdb812a8bd4ea0c17c10dc1137f73dd3b5b..28c6e682deb24e9988563da887cf139109a7e8d7 100644 (file)
@@ -45,7 +45,7 @@ static void TestSort(skiatest::Reporter* reporter) {
     for (int i = 0; i < 10000; i++) {
         int count = rand.nextRangeU(1, SK_ARRAY_COUNT(randomArray));
         rand_array(rand, randomArray, count);
+
         // Use qsort as the reference sort.
         memcpy(sortedArray, randomArray, sizeof(randomArray));
         qsort(sortedArray, count, sizeof(sortedArray[0]), compare_int);