aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--src/core/SkDraw.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/core/SkDraw.cpp b/src/core/SkDraw.cpp
index 68a0e4d76a..4595fdf326 100644
--- a/src/core/SkDraw.cpp
+++ b/src/core/SkDraw.cpp
@@ -680,8 +680,14 @@ static inline SkPoint* as_rightbottom(SkRect* r) {
}
static bool easy_rect_join(const SkPaint& paint) {
+#if 0
return SkPaint::kMiter_Join == paint.getStrokeJoin() &&
paint.getStrokeMiter() >= SK_ScalarSqrt2;
+#else
+ // return false until we handle non-square scaling in the matrix, where
+ // the horizontal and vertical widths may differ.
+ return false;
+#endif
}
enum RectType {