Sanitizing source files in Skia_Periodic_House_Keeping
authorskia.committer@gmail.com <skia.committer@gmail.com@2bbb7eff-a529-9590-31e7-b0007b416f81>
Fri, 15 Feb 2013 07:16:57 +0000 (07:16 +0000)
committerskia.committer@gmail.com <skia.committer@gmail.com@2bbb7eff-a529-9590-31e7-b0007b416f81>
Fri, 15 Feb 2013 07:16:57 +0000 (07:16 +0000)
git-svn-id: http://skia.googlecode.com/svn/trunk@7746 2bbb7eff-a529-9590-31e7-b0007b416f81

15 files changed:
experimental/Intersection/CubicIntersection.cpp
experimental/Intersection/CubicIntersection_Test.cpp
experimental/Intersection/CubicUtilities.cpp
experimental/Intersection/DataTypes.h
experimental/Intersection/EdgeWalker_TestUtility.cpp
experimental/Intersection/Intersections.cpp
experimental/Intersection/Intersections.h
experimental/Intersection/LogoPlay.cpp
experimental/Intersection/LogoPlay.h
experimental/Intersection/Simplify.cpp
include/utils/SkDebugUtils.h
src/gpu/GrDrawState.cpp
src/gpu/GrDrawState.h
src/gpu/GrDrawTarget.h
src/gpu/gl/mac/SkNativeGLContext_mac.cpp

index 02310a3be78ebd9d6dfa4fe90615f12bd31c0976..f25a0468582b483a5ec11851863de003f114289f 100644 (file)
@@ -327,7 +327,7 @@ static bool intersectEnd(const Cubic& cubic1, bool start, const Cubic& cubic2, c
             cubic2, tMin, tMax, 1, i);
 }
 
-// this flavor centers potential intersections recursively. In contrast, '2' may inadvertently 
+// this flavor centers potential intersections recursively. In contrast, '2' may inadvertently
 // chase intersections near quadratic ends, requiring odd hacks to find them.
 static bool intersect3(const Cubic& cubic1, double t1s, double t1e, const Cubic& cubic2,
         double t2s, double t2e, double precisionScale, Intersections& i) {
index 381881cbf8a1894f77b1940f32a4dfd9bb1c312a..bdbf3de60f808776914bca29c507e4ad628423b8 100644 (file)
@@ -70,7 +70,7 @@ static const Cubic testSet[] = {
 {{0,1}, {1,2}, {1,0}, {6,1}},
 {{0,1}, {1,6}, {1,0}, {2,1}},
 
-{{0,1}, {0,5}, {1,0}, {4,0}}, 
+{{0,1}, {0,5}, {1,0}, {4,0}},
 {{0,1}, {0,4}, {1,0}, {5,0}},
 
 {{0,1}, {3,4}, {1,0}, {3,0}},
index 0c7f2c1cb5d656d879e024f6b8eafc6466c964b4..1c9b9e486c1707574c6b93a38de61db099b2ecee 100644 (file)
@@ -325,4 +325,3 @@ void xy_at_t(const Cubic& cubic, double t, double& x, double& y) {
         y = xy.y;
     }
 }
-
index 09c43785e1977a0072a7dcb435f0205b6323fefd..c6b24861e324ce00d4521f82558a13fab81390dd 100644 (file)
@@ -12,7 +12,7 @@
 
 #include "SkPoint.h"
 
-#define ONE_OFF_DEBUG 0 
+#define ONE_OFF_DEBUG 0
 
 // FIXME: move these into SkTypes.h
 template <typename T> inline T SkTMax(T a, T b) {
@@ -234,7 +234,7 @@ struct _Point {
         double inv = 1 / denom;
         return approximately_equal(x * inv, a.x * inv) && approximately_equal(y * inv, a.y * inv);
     }
-    
+
     bool approximatelyEqualHalf(const _Point& a) const {
         double denom = SkTMax(fabs(x), SkTMax(fabs(y), SkTMax(fabs(a.x), fabs(a.y))));
         if (denom == 0) {
@@ -248,7 +248,7 @@ struct _Point {
     bool approximatelyZero() const {
         return approximately_zero(x) && approximately_zero(y);
     }
-    
+
     SkPoint asSkPoint() const {
         SkPoint pt = {SkDoubleToScalar(x), SkDoubleToScalar(y)};
         return pt;
index 00d70116c6ae5974deb676c0ad46cae14e39ed82..8afc09f3cc939d09950bd8c11ff63c38bd214bd1 100644 (file)
@@ -259,7 +259,7 @@ int comparePaths(const SkPath& one, const SkPath& two, SkBitmap& bitmap) {
 }
 
 static void showShapeOpPath(const SkPath& one, const SkPath& two, const SkPath& a, const SkPath& b,
-        const SkPath& scaledOne, const SkPath& scaledTwo, const ShapeOp shapeOp, 
+        const SkPath& scaledOne, const SkPath& scaledTwo, const ShapeOp shapeOp,
         const SkMatrix& scale) {
     SkASSERT((unsigned) shapeOp < sizeof(opStrs) / sizeof(opStrs[0]));
     showPath(a, "minuend:");
index 01026df55a2d9a303da8752f2190e7b1dc82350d..26fcc3f728350d5e082b00fe46b47b886c859ea0 100644 (file)
@@ -48,7 +48,7 @@ void Intersections::insertCoincidentPair(double s1, double e1, double s2, double
         SkASSERT(iEnd2 < fUsed);
         double cs2 = fT[fSwap ^ 1][i2];
         double ce2 = fT[fSwap ^ 1][iEnd2];
-        bool s2in = between(cs2, s2, ce2) || startPt.approximatelyEqual(fPt[i2]) 
+        bool s2in = between(cs2, s2, ce2) || startPt.approximatelyEqual(fPt[i2])
                 || startPt.approximatelyEqual(fPt[iEnd2]);
         bool e2in = between(cs2, e2, ce2) || endPt.approximatelyEqual(fPt[i2])
                 || endPt.approximatelyEqual(fPt[iEnd2]);
index d339116b798058b742f322ae60f5f301be7d4896..449849c143a9002e9033e9ded68bf4f3a9507786 100644 (file)
@@ -63,7 +63,7 @@ public:
         fIsCoincident[0] |= bit;
         fIsCoincident[1] |= bit;
     }
-    
+
     void insertCoincidentPair(double s1, double e1, double s2, double e2,
             const _Point& startPt, const _Point& endPt);
 
@@ -74,7 +74,7 @@ public:
             return insert(one, two, pt);
         }
     }
-    
+
     bool intersected() const {
         return fUsed > 0;
     }
index 3c9b75d86a35fc337399d85876d256cf9c30c5c7..718da38bd35f5cb44036bdbb447164be401bd25e 100644 (file)
@@ -351,4 +351,3 @@ void parseSVG() {
         data += 3;
     }
 }
-
index 70e74da852cb00540541f923bb0ad28c1d01b8f2..75800b04ba8d9bdd7704c9cd9c90fb5a290966f0 100644 (file)
@@ -6,4 +6,3 @@
  *  Copyright 2013 __MyCompanyName__. All rights reserved.
  *
  */
-
index ed7c62e72424f1e61d578fc259252795e375dcbe..0a75f2a1e4e8387023f9f80ea2695778de06f578 100644 (file)
@@ -2255,7 +2255,7 @@ public:
     bool done(const Angle* angle) const {
         return done(SkMin32(angle->start(), angle->end()));
     }
-    
+
     SkPoint dxdy(int index) const {
         return (*SegmentDXDYAtT[fVerb])(fPts, fTs[index].fT);
     }
index 64e2935d765f521b34d292fdfe078e9ae7485a61..2fa6d413139939c366767ac885d2e53238cb916e 100644 (file)
@@ -12,7 +12,7 @@
 
 #include "SkTypes.h"
 
-// These functions dump 0, 1, and 2d arrays of data in a format that's 
+// These functions dump 0, 1, and 2d arrays of data in a format that's
 // compatible with Mathematica for quick visualization
 
 
@@ -21,7 +21,7 @@ inline void SkDebugDumpMathematica( const T val ) {
     SkDEBUGFAIL("Need to specialize SkDebugDumpMathematica for your type, sorry.");
 }
 
-template<class T> 
+template<class T>
 inline void SkDebugDumpMathematica(const char *name, const T *array, int size) {
     SkDebugf(name);
     SkDebugf(" = {");
@@ -32,7 +32,7 @@ inline void SkDebugDumpMathematica(const char *name, const T *array, int size) {
     SkDebugf("};\n");
 }
 
-template<class T> 
+template<class T>
 inline void SkDebugDumpMathematica(const char *name, const T *array, int width, int height) {
     SkDebugf(name);
     SkDebugf(" = {\n");
@@ -52,7 +52,7 @@ inline void SkDebugDumpMathematica(const char *name, const T *array, int width,
     SkDebugf("\n};\n");
 }
 
-template<class T> 
+template<class T>
 inline void SkDebugDumpMathematica( const char *name, const T val ) {
     SkDebugf(name);
     SkDebugf(" = ");
@@ -60,32 +60,32 @@ inline void SkDebugDumpMathematica( const char *name, const T val ) {
     SkDebugf(";\n");
 }
 
-template<> 
+template<>
 inline void SkDebugDumpMathematica<uint8_t>( const uint8_t val ) {
     SkDebugf("%u", val);
 }
 
-template<> 
+template<>
 inline void SkDebugDumpMathematica<unsigned int>( const unsigned int val ) {
     SkDebugf("%u", val);
 }
 
-template<> 
+template<>
 inline void SkDebugDumpMathematica<int>( const int val ) {
     SkDebugf("%d", val);
 }
 
-template<> 
+template<>
 inline void SkDebugDumpMathematica<size_t>( const size_t val ) {
     SkDebugf("%u", val);
 }
 
-template<> 
+template<>
 void SkDebugDumpMathematica<const char *>( const char * val ) {
     SkDebugf("%s", val);
 }
 
-template<> 
+template<>
 inline void SkDebugDumpMathematica<float>( float val ) {
     SkDebugf("%f", val);
 }
index 3ff8a97f55d2bdbaa38fccc55a58c768f8d0ae03..8c74c4a4bd9620edeb2e7080e3a0a0c252d7ecdc 100644 (file)
@@ -50,10 +50,10 @@ namespace {
 
 /**
  * This function generates a mask that we like to have known at compile
- * time. When the number of stages is bumped or the way bits are defined in 
- * GrDrawState.h changes this function should be rerun to generate the new mask. 
- * (We attempted to force the compiler to generate the mask using recursive 
- * templates but always wound up with static initializers under gcc, even if 
+ * time. When the number of stages is bumped or the way bits are defined in
+ * GrDrawState.h changes this function should be rerun to generate the new mask.
+ * (We attempted to force the compiler to generate the mask using recursive
+ * templates but always wound up with static initializers under gcc, even if
  * they were just a series of immediate->memory moves.)
  *
  */
@@ -97,7 +97,7 @@ size_t GrDrawState::VertexSize(GrVertexLayout vertexLayout) {
  *
  * Order of vertex components:
  * Position
- * Tex Coord 
+ * Tex Coord
  * Color
  * Coverage
  */
index ad31e0d5fcb8e2fb87ee89b963e6d8edc65991c7..05492a73aee5242bd932d74edbad522f184f9980 100644 (file)
@@ -113,16 +113,16 @@ public:
     /**
      * The format of vertices is represented as a bitfield of flags.
      * Flags that indicate the layout of vertex data. Vertices always contain
-     * positions and may also contain texture coordinates, per-vertex colors, 
+     * positions and may also contain texture coordinates, per-vertex colors,
      * and per-vertex coverage. Each stage can use any texture coordinates as
-     * its input texture coordinates or it may use the positions as texture 
+     * its input texture coordinates or it may use the positions as texture
      * coordinates.
      *
      * If no texture coordinates are specified for a stage then the stage is
      * disabled.
      *
-     * The order in memory is always (position, texture coords, color, coverage) 
-     * with any unused fields omitted. 
+     * The order in memory is always (position, texture coords, color, coverage)
+     * with any unused fields omitted.
      */
 
     /**
@@ -229,7 +229,7 @@ public:
 
     /**
      * Helper function to compute the size of each vertex and the offsets of
-     * texture coordinates and color. 
+     * texture coordinates and color.
      *
      * @param vertexLayout          the layout to query
      * @param texCoordOffset        after return it is the offset of the
index aad819c92bab3cdff495e086f3acd74544e7f8c9..a371a9bde21c124d12b7ea4662b3f7af13a21be3 100644 (file)
@@ -385,22 +385,22 @@ public:
      * have changed. They should be reestablished before the next drawIndexed
      * or drawNonIndexed. This cannot be called between reserving and releasing
      * geometry.
-     * 
+     *
      * A subclass may override this to perform more optimal rect rendering. Its
      * draws should be funneled through one of the public GrDrawTarget draw methods
      * (e.g. drawNonIndexed, drawIndexedInstances, ...). The base class draws a two
      * triangle fan using drawNonIndexed from reserved vertex space.
-     * 
+     *
      * @param rect      the rect to draw
      * @param matrix    optional matrix applied to rect (before viewMatrix)
      * @param srcRects  specifies rect for explicit texture coordinates.
      *                  if srcRect is non-NULL then that rect will be used
      *                  as the coordinates for the given stage.
      * @param srcMatrix   optional matrix applied to srcRect. If
-     *                    srcRect is non-NULL and srcMatrix is non-NULL 
-     *                    then srcRect will be transformed by srcMatrix. 
+     *                    srcRect is non-NULL and srcMatrix is non-NULL
+     *                    then srcRect will be transformed by srcMatrix.
      *                    srcMatrix can be NULL when no srcMatrix is desired.
-     * @param stage     the stage to be given explicit texture coordinates. 
+     * @param stage     the stage to be given explicit texture coordinates.
      *                  Ignored if srcRect is NULL.
      */
     virtual void drawRect(const GrRect& rect,
index bcdc7ab9f237316e689fe144e225f726d89a84a1..460fad7e26f8f5972c779129e162e34d6c35af0f 100644 (file)
@@ -33,7 +33,7 @@ void SkNativeGLContext::destroyGLContext() {
 
 const GrGLInterface* SkNativeGLContext::createGLContext() {
     SkASSERT(NULL == fContext);
-    
+
     CGLPixelFormatAttribute attributes[] = {
 #if 0
         kCGLPFAOpenGLProfile, kCGLOGLPVersion_3_2_Core,
@@ -42,22 +42,22 @@ const GrGLInterface* SkNativeGLContext::createGLContext() {
     };
     CGLPixelFormatObj pixFormat;
     GLint npix;
-    
+
     CGLChoosePixelFormat(attributes, &pixFormat, &npix);
-    
+
     if (NULL == pixFormat) {
         SkDebugf("CGLChoosePixelFormat failed.");
         return NULL;
     }
-    
+
     CGLCreateContext(pixFormat, NULL, &fContext);
     CGLReleasePixelFormat(pixFormat);
-    
+
     if (NULL == fContext) {
         SkDebugf("CGLCreateContext failed.");
         return NULL;
     }
-    
+
     CGLSetCurrentContext(fContext);
 
     const GrGLInterface* interface = GrGLCreateNativeInterface();