Sanitizing source files in Skia_Periodic_House_Keeping

git-svn-id: http://skia.googlecode.com/svn/trunk@8249 2bbb7eff-a529-9590-31e7-b0007b416f81
diff --git a/src/gpu/GrContext.cpp b/src/gpu/GrContext.cpp
index cf74c8e..4c18574 100644
--- a/src/gpu/GrContext.cpp
+++ b/src/gpu/GrContext.cpp
@@ -1044,7 +1044,7 @@
         return false;
     }
 
-    // we can draw circles 
+    // we can draw circles
     *isCircle = SkScalarNearlyEqual(oval.width(), oval.height())
                 && circleStaysCircle(this->getMatrix());
     // and axis-aligned ellipses only
@@ -1235,7 +1235,7 @@
         kEdgeEffectStage = GrPaint::kTotalStages,
     };
     drawState->setAttribBindings(GrDrawState::kDefault_AttribBindings);
-    
+
     GrEffectRef* effect = GrCircleEdgeEffect::Create(isStroked);
     static const int kCircleEdgeAttrIndex = 1;
     drawState->setEffect(kEdgeEffectStage, effect, kCircleEdgeAttrIndex)->unref();
diff --git a/src/gpu/GrDrawState.h b/src/gpu/GrDrawState.h
index 6ee6df5..2203e88 100644
--- a/src/gpu/GrDrawState.h
+++ b/src/gpu/GrDrawState.h
@@ -489,7 +489,7 @@
         fStages[stageIdx].setEffect(effect);
         return effect;
     }
-    
+
     const GrEffectRef* setEffect(int stageIdx, const GrEffectRef* effect,
                                  int attr0, int attr1 = -1) {
         fStages[stageIdx].setEffect(effect, attr0, attr1);
diff --git a/src/gpu/effects/GrCircleEdgeEffect.cpp b/src/gpu/effects/GrCircleEdgeEffect.cpp
index e430464..ba73502 100644
--- a/src/gpu/effects/GrCircleEdgeEffect.cpp
+++ b/src/gpu/effects/GrCircleEdgeEffect.cpp
@@ -28,7 +28,7 @@
                           const char* inputColor,
                           const TextureSamplerArray& samplers) SK_OVERRIDE {
         const GrCircleEdgeEffect& effect = GetEffectFromStage<GrCircleEdgeEffect>(stage);
-        
+
         const char *vsName, *fsName;
         builder->addVarying(kVec4f_GrSLType, "CircleEdge", &vsName, &fsName);
 
diff --git a/src/gpu/effects/GrCircleEdgeEffect.h b/src/gpu/effects/GrCircleEdgeEffect.h
index 6bd892e..0452705 100644
--- a/src/gpu/effects/GrCircleEdgeEffect.h
+++ b/src/gpu/effects/GrCircleEdgeEffect.h
@@ -14,7 +14,7 @@
 
 /**
  * The output of this effect is a modulation of the input color and coverage for a circle,
- * specified as center_x, center_y, x_radius, inner radius and outer radius in window space 
+ * specified as center_x, center_y, x_radius, inner radius and outer radius in window space
  * (y-down).
  */
 
@@ -26,7 +26,7 @@
                         CreateEffectRef(AutoEffectUnref(SkNEW_ARGS(GrCircleEdgeEffect, (true)))));
         static SkAutoTUnref<GrEffectRef> gCircleFillEdgeEffectRef(
                         CreateEffectRef(AutoEffectUnref(SkNEW_ARGS(GrCircleEdgeEffect, (false)))));
-        
+
         if (stroke) {
             gCircleStrokeEdgeEffectRef.get()->ref();
             return gCircleStrokeEdgeEffectRef;
@@ -45,7 +45,7 @@
     typedef GrGLCircleEdgeEffect GLEffect;
 
     virtual const GrBackendEffectFactory& getFactory() const SK_OVERRIDE;
-    
+
     inline bool isStroked() const { return fStroke; }
 
 private:
@@ -54,7 +54,7 @@
     virtual bool onIsEqual(const GrEffect& other) const SK_OVERRIDE {
         return true;
     }
-    
+
     bool fStroke;
 
     GR_DECLARE_EFFECT_TEST;
diff --git a/src/gpu/effects/GrEllipseEdgeEffect.cpp b/src/gpu/effects/GrEllipseEdgeEffect.cpp
index f4965f7..37432f0 100644
--- a/src/gpu/effects/GrEllipseEdgeEffect.cpp
+++ b/src/gpu/effects/GrEllipseEdgeEffect.cpp
@@ -26,7 +26,7 @@
                           const char* inputColor,
                           const TextureSamplerArray& samplers) SK_OVERRIDE {
         const GrEllipseEdgeEffect& effect = GetEffectFromStage<GrEllipseEdgeEffect>(stage);
-        
+
         const char *vsCenterName, *fsCenterName;
         const char *vsEdgeName, *fsEdgeName;
 
@@ -49,16 +49,16 @@
         builder->fsCodeAppend("\tfloat dOuter = length(outerOffset);\n");
         // compare outer lengths against xOuterRadius
         builder->fsCodeAppendf("\tfloat edgeAlpha = clamp(%s.x-dOuter, 0.0, 1.0);\n", fsEdgeName);
-        
+
         if (effect.isStroked()) {
             builder->fsCodeAppendf("\tinnerOffset.y *= %s.w;\n", fsEdgeName);
             builder->fsCodeAppend("\tfloat dInner = length(innerOffset);\n");
-        
+
             // compare inner lengths against xInnerRadius
             builder->fsCodeAppendf("\tfloat innerAlpha = clamp(dInner-%s.z, 0.0, 1.0);\n", fsEdgeName);
             builder->fsCodeAppend("\tedgeAlpha *= innerAlpha;\n");
         }
-        
+
         SkString modulate;
         GrGLSLModulate4f(&modulate, inputColor, "edgeAlpha");
         builder->fsCodeAppendf("\t%s = %s;\n", outputColor, modulate.c_str());
@@ -82,7 +82,7 @@
 GrEllipseEdgeEffect::GrEllipseEdgeEffect(bool stroke) : GrEffect() {
     this->addVertexAttrib(kVec2f_GrSLType);
     this->addVertexAttrib(kVec4f_GrSLType);
-    
+
     fStroke = stroke;
 }
 
diff --git a/src/gpu/effects/GrEllipseEdgeEffect.h b/src/gpu/effects/GrEllipseEdgeEffect.h
index 5eada2c..cb335c8 100644
--- a/src/gpu/effects/GrEllipseEdgeEffect.h
+++ b/src/gpu/effects/GrEllipseEdgeEffect.h
@@ -25,7 +25,7 @@
                         CreateEffectRef(AutoEffectUnref(SkNEW_ARGS(GrEllipseEdgeEffect, (true)))));
         static SkAutoTUnref<GrEffectRef> gEllipseFillEdgeEffectRef(
                         CreateEffectRef(AutoEffectUnref(SkNEW_ARGS(GrEllipseEdgeEffect, (false)))));
-        
+
         if (stroke) {
             gEllipseStrokeEdgeEffectRef.get()->ref();
             return gEllipseStrokeEdgeEffectRef;
@@ -46,7 +46,7 @@
     virtual const GrBackendEffectFactory& getFactory() const SK_OVERRIDE;
 
     inline bool isStroked() const { return fStroke; }
-    
+
 private:
     GrEllipseEdgeEffect(bool stroke);