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

include/effects/SkRectShaderImageFilter.h
src/core/SkRegion_path.cpp
tests/DrawBitmapRectTest.cpp
tests/PathTest.cpp

index 9a2913c..650a583 100644 (file)
@@ -17,7 +17,7 @@ class SK_API SkRectShaderImageFilter : public SkImageFilter {
 public:
     /** Create a new image filter which fills the given rectangle with pixels
      *  produced by the given SkShader. If no rectangle is specified, an output
-     *  is produced with the same bounds as the input primitive (even though 
+     *  is produced with the same bounds as the input primitive (even though
      *  the input primitive's pixels are not used for processing).
      *  @param s     Shader to call for processing. Cannot be NULL. Will be
      *               ref'ed by the new image filter.
index 65fe25f..ec4d9f0 100644 (file)
@@ -134,7 +134,7 @@ bool SkRgnBuilder::init(int maxHeight, int maxTransitions, bool pathIsInverse) {
     if (!size.is32() || size.isNeg()) {
         return false;
     }
-    
+
     fStorage = (SkRegion::RunType*)sk_malloc_flags(size.get32(), 0);
     if (NULL == fStorage) {
         return false;
index 964634c..119ad2f 100644 (file)
@@ -40,7 +40,7 @@ static void test_faulty_pixelref(skiatest::Reporter* reporter) {
     // construct a garbage data represent "bad" encoded data.
     SkAutoDataUnref data(SkData::NewFromMalloc(malloc(1000), 1000));
     SkAutoTUnref<SkPixelRef> pr(new SkLazyPixelRef(data, FailureDecoder, &cache));
-    
+
     SkBitmap bm;
     bm.setConfig(SkBitmap::kARGB_8888_Config, 100, 100);
     bm.setPixelRef(pr);
index 3aa24c3..61f06e0 100644 (file)
@@ -48,14 +48,14 @@ static void test_path_to_region(skiatest::Reporter* reporter) {
         make_path0,
         make_path1,
     };
-    
+
     SkRegion clip;
     clip.setRect(0, 0, 1255, 1925);
-    
+
     for (size_t i = 0; i < SK_ARRAY_COUNT(procs); ++i) {
         SkPath path;
         procs[i](&path);
-        
+
         SkRegion rgn;
         rgn.setPath(path, clip);
         path.toggleInverseFillType();