Sanitizing source files in Housekeeper-Nightly
authorskia.committer@gmail.com <skia.committer@gmail.com@2bbb7eff-a529-9590-31e7-b0007b416f81>
Thu, 29 Aug 2013 07:01:20 +0000 (07:01 +0000)
committerskia.committer@gmail.com <skia.committer@gmail.com@2bbb7eff-a529-9590-31e7-b0007b416f81>
Thu, 29 Aug 2013 07:01:20 +0000 (07:01 +0000)
git-svn-id: http://skia.googlecode.com/svn/trunk@10992 2bbb7eff-a529-9590-31e7-b0007b416f81

src/core/SkDeviceLooper.cpp
src/core/SkDeviceLooper.h
src/core/SkDraw.cpp
src/opts/SkBlitRow_opts_arm.cpp
src/opts/SkBlitRow_opts_none.cpp

index 4122fd7..882c1f1 100644 (file)
@@ -58,7 +58,7 @@ void SkDeviceLooper::mapMatrix(SkMatrix* dst, const SkMatrix& src) const {
 
 bool SkDeviceLooper::computeCurrBitmapAndClip() {
     SkASSERT(kComplex_State == fState);
-    
+
     SkIRect r = SkIRect::MakeXYWH(fCurrOffset.x(), fCurrOffset.y(),
                                   fDelta, fDelta);
     if (!fBaseBitmap.extractSubset(&fSubsetBitmap, r)) {
@@ -66,10 +66,10 @@ bool SkDeviceLooper::computeCurrBitmapAndClip() {
         return false;
     }
     fSubsetBitmap.lockPixels();
-    
+
     fBaseRC.translate(-r.left(), -r.top(), &fSubsetRC);
     (void)fSubsetRC.op(SkIRect::MakeWH(fDelta, fDelta), SkRegion::kIntersect_Op);
-    
+
     fCurrBitmap = &fSubsetBitmap;
     fCurrRC = &fSubsetRC;
     return true;
@@ -81,7 +81,7 @@ bool SkDeviceLooper::next() {
             // in theory, we should not get called here, since we must have
             // previously returned false, but we check anyway.
             break;
-    
+
         case kSimple_State:
             // first time for simple
             if (NULL == fCurrBitmap) {
@@ -96,7 +96,7 @@ bool SkDeviceLooper::next() {
         case kComplex_State:
             // need to propogate fCurrOffset through clippedbounds
             // left to right, until we wrap around and move down
-            
+
             if (fCurrOffset.x() + fDelta < fClippedBounds.right()) {
                 fCurrOffset.fX += fDelta;
                 return this->computeCurrBitmapAndClip();
@@ -108,7 +108,7 @@ bool SkDeviceLooper::next() {
             }
             break;
     }
-    
+
     fState = kDone_State;
     return false;
 }
index 405173d..a218345 100644 (file)
@@ -51,7 +51,7 @@ public:
 
     /**
      *  Call next to setup the looper to return a valid coordinate chunk.
-     *  Each time this returns true, it is safe to call mapRect() and 
+     *  Each time this returns true, it is safe to call mapRect() and
      *  mapMatrix(), to convert from "global" coordinate values to ones that
      *  are local to this chunk.
      *
@@ -89,7 +89,7 @@ private:
     bool fitsInDelta(const SkIRect& r) const {
         return r.right() < fDelta && r.bottom() < fDelta;
     }
-    
+
     bool computeCurrBitmapAndClip();
 };
 
index a9d5fbb..d2d6180 100644 (file)
@@ -2833,4 +2833,3 @@ bool SkDraw::DrawToMask(const SkPath& devPath, const SkIRect* clipBounds,
 
     return true;
 }
-
index cfd3f70..e8e544e 100644 (file)
@@ -376,4 +376,3 @@ SkBlitRow::Proc32 SkBlitRow::PlatformProcs32(unsigned flags) {
 SkBlitRow::ColorProc SkBlitRow::PlatformColorProc() {
     return SK_ARM_NEON_WRAP(Color32_arm);
 }
-
index 9ea2526..64066f2 100644 (file)
@@ -24,4 +24,3 @@ SkBlitRow::ColorProc SkBlitRow::PlatformColorProc() {
 SkBlitRow::ColorRectProc PlatformColorRectProcFactory() {
     return NULL;
 }
-