disable cheap check while its being debugged



git-svn-id: http://skia.googlecode.com/svn/trunk@2998 2bbb7eff-a529-9590-31e7-b0007b416f81
diff --git a/src/core/SkStroke.cpp b/src/core/SkStroke.cpp
index 1ec3a57..a7452be 100644
--- a/src/core/SkStroke.cpp
+++ b/src/core/SkStroke.cpp
@@ -619,11 +619,15 @@
 #endif
 
     if (fDoFill) {
+#if 0 // while I debug this
         if (src.cheapIsDirection(SkPath::kCW_Direction)) {
             dst->reverseAddPath(src);
         } else {
             dst->addPath(src);
         }
+#else
+        dst->addPath(src);
+#endif
     } else {
         //  Seems like we can assume that a 2-point src would always result in
         //  a convex stroke, but testing has proved otherwise.