Sanitizing source files in Skia_Periodic_House_Keeping
authorskia.committer@gmail.com <skia.committer@gmail.com@2bbb7eff-a529-9590-31e7-b0007b416f81>
Thu, 1 Nov 2012 02:01:27 +0000 (02:01 +0000)
committerskia.committer@gmail.com <skia.committer@gmail.com@2bbb7eff-a529-9590-31e7-b0007b416f81>
Thu, 1 Nov 2012 02:01:27 +0000 (02:01 +0000)
git-svn-id: http://skia.googlecode.com/svn/trunk@6228 2bbb7eff-a529-9590-31e7-b0007b416f81

include/gpu/SkGpuDevice.h
src/gpu/GrResourceCache.cpp
src/gpu/GrResourceCache.h
src/image/SkSurface_Gpu.cpp
src/image/SkSurface_Picture.cpp

index 0a5f36e65bd8c3c79b6bdb68066d19ab8c133222..1e78b4a2b99e0e684945567d74bd4cc69ff5b7af 100644 (file)
@@ -29,8 +29,8 @@ class SK_API SkGpuDevice : public SkDevice {
 public:
     /**
      *  New device that will create an offscreen renderTarget based on the
-     *  config, width, height, and sampleCount. The device's storage will not 
-     *  count against the GrContext's texture cache budget. The device's pixels 
+     *  config, width, height, and sampleCount. The device's storage will not
+     *  count against the GrContext's texture cache budget. The device's pixels
      *  will be uninitialized.
      */
     SkGpuDevice(GrContext*, SkBitmap::Config, int width, int height, int sampleCount = 0);
index 825b122bfaff145c3997a3da6aa0c689a8300311..a1f1d794e5bcb7ea65fb78533bb159224349fb77 100644 (file)
@@ -176,7 +176,7 @@ void GrResourceCache::attachToHead(GrResourceEntry* entry,
 // is relying on the texture.
 class GrTFindUnreffedFunctor {
 public:
-    bool operator()(const GrResourceEntry* entry) const { 
+    bool operator()(const GrResourceEntry* entry) const {
         return 1 == entry->resource()->getRefCnt();
     }
 };
@@ -213,7 +213,7 @@ bool GrResourceCache::hasKey(const GrResourceKey& key) const {
     return NULL != fCache.find(key);
 }
 
-void GrResourceCache::addResource(const GrResourceKey& key, 
+void GrResourceCache::addResource(const GrResourceKey& key,
                                   GrResource* resource,
                                   uint32_t ownershipFlags) {
     GrAssert(NULL == resource->getCacheEntry());
@@ -275,8 +275,8 @@ void GrResourceCache::makeNonExclusive(GrResourceEntry* entry) {
 #endif
 
     if (entry->resource()->isValid()) {
-        // Since scratch textures still count against the cache budget even 
-        // when they have been removed from the cache, re-adding them doesn't 
+        // Since scratch textures still count against the cache budget even
+        // when they have been removed from the cache, re-adding them doesn't
         // alter the budget information.
         attachToHead(entry, kIgnore_BudgetBehavior);
         fCache.insert(entry->key(), entry);
index 4ee7015d11930262144a1ad1779114030296df8a..c56edf6a5d0863df20f8d78721e8208a0de6b988 100644 (file)
@@ -230,7 +230,7 @@ public:
     /**
      *  Search for an entry with the same Key. If found, return it.
      *  If not found, return null.
-     *  If ownershipFlags includes kNoOtherOwners and a resource is returned 
+     *  If ownershipFlags includes kNoOtherOwners and a resource is returned
      *  then that resource has no other refs to it.
      *  If ownershipFlags includes kHide and a resource is returned then that
      *  resource will not be returned from future 'find' calls until it is
@@ -238,21 +238,21 @@ public:
      *  For a resource to be completely exclusive to a caller both kNoOtherOwners
      *  and kHide must be specified.
      */
-    GrResource* find(const GrResourceKey& key, 
+    GrResource* find(const GrResourceKey& key,
                      uint32_t ownershipFlags = 0);
 
     /**
-     *  Add the new resource to the cache (by creating a new cache entry based 
-     *  on the provided key and resource). 
+     *  Add the new resource to the cache (by creating a new cache entry based
+     *  on the provided key and resource).
      *
      *  Ownership of the resource is transferred to the resource cache,
      *  which will unref() it when it is purged or deleted.
      *
      *  If ownershipFlags includes kHide, subsequent calls to 'find' will not
-     *  return 'resource' until it is 'freed' (and recycled) or makeNonExclusive 
+     *  return 'resource' until it is 'freed' (and recycled) or makeNonExclusive
      *  is called.
      */
-    void addResource(const GrResourceKey& key, 
+    void addResource(const GrResourceKey& key,
                      GrResource* resource,
                      uint32_t ownershipFlags = 0);
 
index 90d2e274d1c1f3d81a381507d16b5adcb860d338..3c1842a4643c1861965aecdd7073c7df1a01c97f 100644 (file)
@@ -97,7 +97,7 @@ void SkSurface_Gpu::onCopyOnWrite(SkImage* image, SkCanvas* canvas) {
             SkTextureImageSetTexture(image, NULL);
             return;
         }
-    
+
         fDevice->context()->copyTexture(rt->asTexture(), tex->asRenderTarget());
 
         SkTextureImageSetTexture(image, tex);
@@ -135,7 +135,7 @@ SkSurface* SkSurface::NewRenderTarget(GrContext* ctx, const SkImage::Info& info,
     if (NULL == tex) {
         return NULL;
     }
-    
+
     return SkNEW_ARGS(SkSurface_Gpu, (ctx, tex->asRenderTarget()));
 }
 
index 3f82634b314c79531c5025ecb8957c15c8a48119..80fc1f45f66acdf05cc0064d8ae4379be47e9e4b 100644 (file)
@@ -77,7 +77,7 @@ void SkSurface_Picture::onDraw(SkCanvas* canvas, SkScalar x, SkScalar y,
 }
 
 void SkSurface_Picture::onCopyOnWrite(SkImage* cachedImage, SkCanvas*) {
-    // We always spawn a copy of the recording picture when we 
+    // We always spawn a copy of the recording picture when we
     // are asked for a snapshot, so we never need to do anything here.
 }