Sanitizing source files in Housekeeper-Nightly
authorskia.committer@gmail.com <skia.committer@gmail.com@2bbb7eff-a529-9590-31e7-b0007b416f81>
Sat, 25 Jan 2014 07:01:49 +0000 (07:01 +0000)
committerskia.committer@gmail.com <skia.committer@gmail.com@2bbb7eff-a529-9590-31e7-b0007b416f81>
Sat, 25 Jan 2014 07:01:49 +0000 (07:01 +0000)
git-svn-id: http://skia.googlecode.com/svn/trunk@13181 2bbb7eff-a529-9590-31e7-b0007b416f81

include/core/SkBitmap.h
include/gpu/GrTextContext.h
src/core/SkBitmap.cpp
src/core/SkMallocPixelRef.cpp
src/gpu/SkGpuDevice.cpp

index af0c8b8..5d6e3ba 100644 (file)
@@ -257,7 +257,7 @@ public:
      *  On failure, the bitmap will be set to empty and return false.
      */
     bool allocPixels(const SkImageInfo&, SkPixelRefFactory*, SkColorTable*);
-    
+
     /**
      *  Allocate a pixelref to match the specified image info, using the default
      *  allocator.
@@ -267,7 +267,7 @@ public:
     bool allocPixels(const SkImageInfo& info) {
         return this->allocPixels(info, NULL, NULL);
     }
-    
+
     /**
      *  Install a pixelref that wraps the specified pixels and rowBytes, and
      *  optional ReleaseProc and context. When the pixels are no longer
@@ -278,7 +278,7 @@ public:
     bool installPixels(const SkImageInfo&, void* pixels, size_t rowBytes,
                        void (*ReleaseProc)(void* addr, void* context),
                        void* context);
-    
+
     /**
      *  If the bitmap's config can be represented as SkImageInfo, return true,
      *  and if info is not-null, set it to the bitmap's info. If it cannot be
index e2d7d9b..1539df0 100644 (file)
@@ -55,7 +55,7 @@ private:
     class ManagedTextContext : public TextContextClass {
     public:
         ~ManagedTextContext() {}
-        
+
         ManagedTextContext(GrContext* context,
                            const GrPaint& grPaint,
                            const SkPaint& skPaint,
@@ -77,7 +77,7 @@ private:
 
         GrTTextContextManager<TextContextClass>* fManager;
     };
-    
+
 public:
     GrTTextContextManager() {
         fAllocation = sk_malloc_throw(sizeof(ManagedTextContext));
index 9227906..f4a001a 100644 (file)
@@ -488,7 +488,7 @@ void SkBitmap::setPixels(void* p, SkColorTable* ctable) {
 
 bool SkBitmap::allocPixels(Allocator* allocator, SkColorTable* ctable) {
     HeapAllocator stdalloc;
-    
+
     if (NULL == allocator) {
         allocator = &stdalloc;
     }
@@ -515,7 +515,7 @@ bool SkBitmap::allocPixels(const SkImageInfo& info, SkPixelRefFactory* factory,
     if (NULL == factory) {
         factory = &defaultFactory;
     }
-    
+
     SkPixelRef* pr = factory->create(info, ctable);
     if (NULL == pr) {
         return reset_return_false(this);
index fae10c4..9adcd34 100644 (file)
@@ -245,4 +245,3 @@ SkPixelRef* SkMallocPixelRef::PRFactory::create(const SkImageInfo& info,
                                                 SkColorTable* ctable) {
     return SkMallocPixelRef::NewAllocate(info, info.minRowBytes(), ctable);
 }
-
index 0e91182..73eb65b 100644 (file)
@@ -291,7 +291,7 @@ SkGpuDevice::~SkGpuDevice() {
     if (fDrawProcs) {
         delete fDrawProcs;
     }
-    
+
     delete fTextContextManager;
 
     // The GrContext takes a ref on the target. We don't want to cause the render
@@ -1880,11 +1880,11 @@ void SkGpuDevice::drawPosText(const SkDraw& draw, const void* text,
         SkAutoTDelete<GrTextContext> context(fTextContextManager->create(fContext, grPaint, paint));
         GrDistanceFieldTextContext* dfContext =
                                             static_cast<GrDistanceFieldTextContext*>(context.get());
-        
+
         SkAutoGlyphCache    autoCache(dfContext->getSkPaint(), &this->fLeakyProperties, NULL);
         SkGlyphCache*       cache = autoCache.getCache();
         GrFontScaler*       fontScaler = get_gr_font_scaler(cache);
-        
+
         dfContext->drawPosText((const char *)text, byteLength, pos, constY, scalarsPerPos,
                             cache, fontScaler);
 #endif