diff options
author | caryclark <caryclark@google.com> | 2016-03-09 05:55:53 -0800 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-03-09 05:55:53 -0800 |
commit | 18bbd00190623fb6cdb119df4a118ac3c1aed52a (patch) | |
tree | 0510ab4de3f1d8d32f4870c2ef782d9f9df7fb11 /gm | |
parent | 6ac97b7eb99c06107bb4536e1a888fce7837213a (diff) |
don't create zero length intervals
Dashing a pattern without zero-length intervals should
not create them if the end of the on interval coincides
with the beginning of the initial dash offset.
R=reed@google.com
BUG=591993
GOLD_TRYBOT_URL= https://gold.skia.org/search2?unt=true&query=source_type%3Dgm&master=false&issue=1766243004
Review URL: https://codereview.chromium.org/1766243004
Diffstat (limited to 'gm')
-rw-r--r-- | gm/bug530095.cpp | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/gm/bug530095.cpp b/gm/bug530095.cpp index 690da3c9d0..76f6bc8f2e 100644 --- a/gm/bug530095.cpp +++ b/gm/bug530095.cpp @@ -46,3 +46,16 @@ DEF_SIMPLE_GM(bug530095, canvas, 900, 1200) { canvas->translate(4, 4); canvas->drawPath(path2, paint); } + +DEF_SIMPLE_GM(bug591993, canvas, 40, 140) { + SkPaint p; + p.setColor(SK_ColorRED); + p.setAntiAlias(true); + p.setStyle(SkPaint::kStroke_Style); + p.setStrokeCap(SkPaint::kRound_Cap); + p.setStrokeWidth(10); + SkScalar intervals[] = { 100, 100 }; + SkPathEffect* dash = SkDashPathEffect::Create(intervals, SK_ARRAY_COUNT(intervals), 100); + p.setPathEffect(dash)->unref(); + canvas->drawLine(20, 20, 120, 20, p); +} |