Index: src/core/SkStrokeRec.cpp |
diff --git a/src/core/SkStrokeRec.cpp b/src/core/SkStrokeRec.cpp |
index a4c73af2c5acdc014daaf03f3e8384e293c7fa62..22f0562fe2b8a2ab223045cb2f79dae183b5d07d 100644 |
--- a/src/core/SkStrokeRec.cpp |
+++ b/src/core/SkStrokeRec.cpp |
@@ -108,6 +108,9 @@ bool SkStrokeRec::applyToPath(SkPath* dst, const SkPath& src) const { |
stroker.setMiterLimit(fMiterLimit); |
stroker.setWidth(fWidth); |
stroker.setDoFill(fStrokeAndFill); |
+#if QUAD_STROKE_APPROXIMATION |
+ stroker.setError(1); |
+#endif |
stroker.strokePath(src, dst); |
return true; |
} |