blob: 92b812c1973f845ebd7663e9071f22666171965f [file] [log] [blame]
reed@google.com603dbed2012-11-20 19:00:28 +00001/*
2 * Copyright 2012 Google Inc.
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
7
8#include "gm.h"
Mike Klein33d20552017-03-22 13:47:51 -04009#include "sk_tool_utils.h"
reed@google.com603dbed2012-11-20 19:00:28 +000010#include "SkCanvas.h"
11#include "SkPath.h"
12
13#define STROKE_WIDTH SkIntToScalar(20)
14
reed@google.com99033952012-11-20 21:32:30 +000015static void draw_path(SkCanvas* canvas, const SkPath& path, const SkRect& rect,
16 SkPaint::Join join, int doFill) {
reed@google.com603dbed2012-11-20 19:00:28 +000017 SkPaint paint;
18 paint.setAntiAlias(true);
reed@google.com99033952012-11-20 21:32:30 +000019 paint.setStyle(doFill ? SkPaint::kStrokeAndFill_Style : SkPaint::kStroke_Style);
reed@google.com603dbed2012-11-20 19:00:28 +000020
caryclarkf597c422015-07-28 10:37:53 -070021 paint.setColor(sk_tool_utils::color_to_565(SK_ColorGRAY));
reed@google.com603dbed2012-11-20 19:00:28 +000022 paint.setStrokeWidth(STROKE_WIDTH);
23 paint.setStrokeJoin(join);
24 canvas->drawRect(rect, paint);
25
reed@google.com99033952012-11-20 21:32:30 +000026 paint.setStyle(SkPaint::kStroke_Style);
reed@google.com603dbed2012-11-20 19:00:28 +000027 paint.setStrokeWidth(0);
28 paint.setColor(SK_ColorRED);
29 canvas->drawPath(path, paint);
30
31 paint.setStrokeWidth(3);
32 paint.setStrokeJoin(SkPaint::kMiter_Join);
33 int n = path.countPoints();
34 SkAutoTArray<SkPoint> points(n);
35 path.getPoints(points.get(), n);
36 canvas->drawPoints(SkCanvas::kPoints_PointMode, n, points.get(), paint);
37}
38
39/*
40 * Test calling SkStroker for rectangles. Cases to cover:
41 *
42 * geometry: normal, small (smaller than stroke-width), empty, inverted
43 * joint-type for the corners
44 */
45class StrokeRectGM : public skiagm::GM {
46public:
47 StrokeRectGM() {}
48
49protected:
commit-bot@chromium.orga90c6802014-04-30 13:20:45 +000050
mtklein36352bf2015-03-25 18:17:31 -070051 SkString onShortName() override {
reed@google.com603dbed2012-11-20 19:00:28 +000052 return SkString("strokerect");
53 }
54
mtklein36352bf2015-03-25 18:17:31 -070055 SkISize onISize() override {
bsalomon9c673812016-07-06 06:30:36 -070056 return SkISize::Make(1400, 740);
reed@google.com603dbed2012-11-20 19:00:28 +000057 }
58
mtklein36352bf2015-03-25 18:17:31 -070059 void onDraw(SkCanvas* canvas) override {
reed@google.com603dbed2012-11-20 19:00:28 +000060 canvas->drawColor(SK_ColorWHITE);
61 canvas->translate(STROKE_WIDTH*3/2, STROKE_WIDTH*3/2);
62
63 SkPaint paint;
64 paint.setStyle(SkPaint::kStroke_Style);
65 paint.setStrokeWidth(STROKE_WIDTH);
66
mtkleindbfd7ab2016-09-01 11:24:54 -070067 constexpr SkPaint::Join gJoins[] = {
reed@google.com603dbed2012-11-20 19:00:28 +000068 SkPaint::kMiter_Join, SkPaint::kRound_Join, SkPaint::kBevel_Join
69 };
70
mtkleindbfd7ab2016-09-01 11:24:54 -070071 constexpr SkScalar W = 80;
72 constexpr SkScalar H = 80;
73 constexpr SkRect gRects[] = {
reed@google.com603dbed2012-11-20 19:00:28 +000074 { 0, 0, W, H },
75 { W, 0, 0, H },
76 { 0, H, W, 0 },
77 { 0, 0, STROKE_WIDTH, H },
78 { 0, 0, W, STROKE_WIDTH },
79 { 0, 0, STROKE_WIDTH/2, STROKE_WIDTH/2 },
80 { 0, 0, W, 0 },
81 { 0, 0, 0, H },
82 { 0, 0, 0, 0 },
caryclarkc53b82e2015-12-22 07:50:16 -080083 { 0, 0, W, FLT_EPSILON },
84 { 0, 0, FLT_EPSILON, H },
85 { 0, 0, FLT_EPSILON, FLT_EPSILON },
reed@google.com603dbed2012-11-20 19:00:28 +000086 };
reed@google.com603dbed2012-11-20 19:00:28 +000087
reed@google.com99033952012-11-20 21:32:30 +000088 for (int doFill = 0; doFill <= 1; ++doFill) {
89 for (size_t i = 0; i < SK_ARRAY_COUNT(gJoins); ++i) {
90 SkPaint::Join join = gJoins[i];
91 paint.setStrokeJoin(join);
reed@google.com603dbed2012-11-20 19:00:28 +000092
reed@google.com99033952012-11-20 21:32:30 +000093 SkAutoCanvasRestore acr(canvas, true);
94 for (size_t j = 0; j < SK_ARRAY_COUNT(gRects); ++j) {
95 const SkRect& r = gRects[j];
reed@google.com603dbed2012-11-20 19:00:28 +000096
reed@google.com99033952012-11-20 21:32:30 +000097 SkPath path, fillPath;
98 path.addRect(r);
99 paint.getFillPath(path, &fillPath);
100 draw_path(canvas, fillPath, r, join, doFill);
101
102 canvas->translate(W + 2 * STROKE_WIDTH, 0);
103 }
104 acr.restore();
105 canvas->translate(0, H + 2 * STROKE_WIDTH);
reed@google.com603dbed2012-11-20 19:00:28 +0000106 }
reed@google.com99033952012-11-20 21:32:30 +0000107 paint.setStyle(SkPaint::kStrokeAndFill_Style);
reed@google.com603dbed2012-11-20 19:00:28 +0000108 }
109 }
110
111private:
112 typedef GM INHERITED;
113};
reed81511032016-06-10 13:21:07 -0700114DEF_GM(return new StrokeRectGM;)
reed@google.com603dbed2012-11-20 19:00:28 +0000115
116///////////////////////////////////////////////////////////////////////////////////////////////////
117
reed81511032016-06-10 13:21:07 -0700118/*
119 * Exercise rect-stroking (which is specialized from paths) when the resulting stroke-width is
120 * non-square. See https://bugs.chromium.org/p/skia/issues/detail?id=5408
121 */
122DEF_SIMPLE_GM(strokerect_anisotropic_5408, canvas, 200, 50) {
123 SkPaint p;
124 p.setStyle(SkPaint::kStroke_Style);
125 p.setStrokeWidth(6);
126
127 canvas->scale(10, 1);
128 SkRect r = SkRect::MakeXYWH(5, 20, 10, 10);
129 canvas->drawRect(r, p);
130}