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

src/core/SkFlattenableBuffers.cpp
src/core/SkRefCnt.cpp
src/gpu/GrTextContext.cpp
src/gpu/gl/GrGpuGL.cpp
src/pipe/SkGPipeRead.cpp

index 28cc76d..50a47d5 100644 (file)
@@ -54,4 +54,3 @@ void SkFlattenableWriteBuffer::writePaint(const SkPaint& paint) {
 void SkFlattenableWriteBuffer::flattenObject(SkFlattenable* obj, SkFlattenableWriteBuffer& buffer) {
     obj->flatten(buffer);
 }
-
index e9eaea9..78f9cb2 100644 (file)
@@ -16,4 +16,3 @@ SK_DEFINE_INST_COUNT(SkWeakRefCnt)
 SkRefCnt::SkRefCnt(const SkRefCnt&) { }
 SkRefCnt& SkRefCnt::operator=(const SkRefCnt&) { return *this; }
 #endif
-
index 363a817..9e91628 100644 (file)
@@ -25,4 +25,3 @@ GrTextContext::GrTextContext(GrContext* context, const GrPaint& paint) : fPaint(
 
     fDrawTarget = fContext->getTextTarget();
 }
-
index 0642fc4..1fd6f7d 100644 (file)
@@ -1448,7 +1448,7 @@ bool GrGpuGL::onReadPixels(GrRenderTarget* target,
     if (rowBytes != tightRowBytes) {
         if (this->glCaps().packRowLengthSupport()) {
             SkASSERT(!(rowBytes % sizeof(GrColor)));
-            GL_CALL(PixelStorei(GR_GL_PACK_ROW_LENGTH, 
+            GL_CALL(PixelStorei(GR_GL_PACK_ROW_LENGTH,
                                 static_cast<GrGLint>(rowBytes / sizeof(GrColor))));
             readDstRowBytes = rowBytes;
         } else {
index e76ec12..619e3fd 100644 (file)
@@ -39,7 +39,7 @@ static SkEffectType paintflat_to_effecttype(PaintFlats pf) {
         kShader_SkEffectType,
         kXfermode_SkEffectType,
     };
-    
+
     SkASSERT((size_t)pf < SK_ARRAY_COUNT(gEffectTypesInPaintFlatsOrder));
     return (SkEffectType)gEffectTypesInPaintFlatsOrder[pf];
 }