aboutsummaryrefslogtreecommitdiffhomepage
path: root/gm/strokerect.cpp
diff options
context:
space:
mode:
authorGravatar reed <reed@google.com>2016-06-10 13:21:07 -0700
committerGravatar Commit bot <commit-bot@chromium.org>2016-06-10 13:21:07 -0700
commit8151103535bab8639dab2cb308b1b9c04651b632 (patch)
tree715fe0f5b7f1e9289adc213801a3ec584bc142ee /gm/strokerect.cpp
parent7df9e4a87d84415391c167ea54cd389d4b423c2d (diff)
fix non-square stroke rects (non-aa)
Diffstat (limited to 'gm/strokerect.cpp')
-rw-r--r--gm/strokerect.cpp15
1 files changed, 14 insertions, 1 deletions
diff --git a/gm/strokerect.cpp b/gm/strokerect.cpp
index f7e36057df..a1c8bb8d9a 100644
--- a/gm/strokerect.cpp
+++ b/gm/strokerect.cpp
@@ -110,7 +110,20 @@ protected:
private:
typedef GM INHERITED;
};
+DEF_GM(return new StrokeRectGM;)
///////////////////////////////////////////////////////////////////////////////////////////////////
-DEF_GM(return new StrokeRectGM;)
+/*
+ * Exercise rect-stroking (which is specialized from paths) when the resulting stroke-width is
+ * non-square. See https://bugs.chromium.org/p/skia/issues/detail?id=5408
+ */
+DEF_SIMPLE_GM(strokerect_anisotropic_5408, canvas, 200, 50) {
+ SkPaint p;
+ p.setStyle(SkPaint::kStroke_Style);
+ p.setStrokeWidth(6);
+
+ canvas->scale(10, 1);
+ SkRect r = SkRect::MakeXYWH(5, 20, 10, 10);
+ canvas->drawRect(r, p);
+}