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

src/gpu/GrSurface.cpp

index e14987f..32213a1 100644 (file)
@@ -17,13 +17,13 @@ bool GrSurface::savePixels(const char* filename) {
     bm.setConfig(SkBitmap::kARGB_8888_Config, this->width(), this->height());
     bm.allocPixels();
 
-    bool result = readPixels(0, 0, this->width(), this->height(), kSkia8888_GrPixelConfig, 
+    bool result = readPixels(0, 0, this->width(), this->height(), kSkia8888_GrPixelConfig,
                              bm.getPixels());
     if (!result) {
         SkDebugf("------ failed to read pixels for %s\n", filename);
         return false;
     }
-    
+
     // remove any previous version of this file
     remove(filename);