Index: src/core/SkDraw.cpp |
diff --git a/src/core/SkDraw.cpp b/src/core/SkDraw.cpp |
index 9396fa7943b5b60323c79b11ff00a769e3874830..e205ee45c07dec544b10020ec41a6b80c658d7f5 100644 |
--- a/src/core/SkDraw.cpp |
+++ b/src/core/SkDraw.cpp |
@@ -1146,9 +1146,6 @@ void SkDraw::drawPath(const SkPath& origSrcPath, const SkPaint& origPaint, |
proc SK_INIT_TO_AVOID_WARNING; |
SkDEBUGFAIL("unknown paint cap type"); |
} |
-#ifdef SK_SUPPORT_LEGACY_HAIR_IGNORES_CAPS |
- proc = SkScan::AntiHairPath; |
-#endif |
} else { |
switch (paint->getStrokeCap()) { |
case SkPaint::kButt_Cap: |
@@ -1164,9 +1161,6 @@ void SkDraw::drawPath(const SkPath& origSrcPath, const SkPaint& origPaint, |
proc SK_INIT_TO_AVOID_WARNING; |
SkDEBUGFAIL("unknown paint cap type"); |
} |
-#ifdef SK_SUPPORT_LEGACY_HAIR_IGNORES_CAPS |
- proc = SkScan::HairPath; |
-#endif |
} |
} |
proc(*devPathPtr, *fRC, blitter); |