Sanitizing source files in Skia_Periodic_House_Keeping
authorskia.committer@gmail.com <skia.committer@gmail.com@2bbb7eff-a529-9590-31e7-b0007b416f81>
Tue, 16 Apr 2013 07:01:17 +0000 (07:01 +0000)
committerskia.committer@gmail.com <skia.committer@gmail.com@2bbb7eff-a529-9590-31e7-b0007b416f81>
Tue, 16 Apr 2013 07:01:17 +0000 (07:01 +0000)
git-svn-id: http://skia.googlecode.com/svn/trunk@8693 2bbb7eff-a529-9590-31e7-b0007b416f81

include/core/SkGeometry.h
src/core/SkGeometry.cpp
src/gpu/GrDrawTarget.cpp
tests/PathOpsAngleTest.cpp

index 909aeb9ade3963c33a825fc886a72d78624c41ef..2a935cbab4087de493d263235b114bac18c8dfb8 100644 (file)
@@ -219,7 +219,7 @@ struct SkRationalQuad {
     void evalAt(SkScalar t, SkPoint* pt) const;
     void chopAt(SkScalar t, SkRationalQuad dst[2]) const;
     void chop(SkRationalQuad dst[2]) const;
-    
+
     int computeQuadPOW2(SkScalar tol) const;
     int chopIntoQuadsPOW2(SkPoint pts[], int pow2) const;
 };
index a96e35b0f599c3e789104c17458b44098382f12a..e5487e687f9ac9a693a563266b534f6a97fe886e 100644 (file)
@@ -1493,7 +1493,7 @@ int SkRationalQuad::computeQuadPOW2(SkScalar tol) const {
     if (fW <= SK_ScalarNearlyZero) {
         return 0;   // treat as a line
     }
-    
+
     tol = SkScalarAbs(tol);
     SkScalar w = fW;
     int i = 0;
@@ -1542,4 +1542,3 @@ int SkRationalQuad::chopIntoQuadsPOW2(SkPoint pts[], int pow2) const {
     SkASSERT(endPts - pts == (2 * (1 << pow2) + 1));
     return 1 << pow2;
 }
-
index e875f0f93c45f810342738a3f739b6c906dcdbaa..4e8ae7d56c077a36a3610a480b1d1fc678421c20 100644 (file)
@@ -445,7 +445,7 @@ bool GrDrawTarget::setupDstReadIfNecessary(DrawInfo* info) {
     SkIPoint dstPoint = {0, 0};
     if (this->copySurface(ast.texture(), rt, copyRect, dstPoint)) {
         info->fDstCopy.setTexture(ast.texture());
-        info->fDstCopy.setOffset(copyRect.fLeft, copyRect.fTop);    
+        info->fDstCopy.setOffset(copyRect.fLeft, copyRect.fTop);
         return true;
     } else {
         return false;
index e594bb65bf91eff17f49ccaef678817d75ef566f..650b99666b54773320f15f6e8d9b2843ad3655df 100644 (file)
@@ -46,7 +46,7 @@ static const SortSetTests tests[] = {
     { set2, SK_ARRAY_COUNT(set2) }
 };
 
-static void setup(const SortSet* set, const size_t idx, SkPoint const ** data, 
+static void setup(const SortSet* set, const size_t idx, SkPoint const ** data,
         SkPoint* reverse, SkOpSegment* seg) {
     SkPoint start, end;
     if (set[idx].ptCount == 2) {