blob: 8669c3e6f87e0bb44b4148ecb03b84fe53188396 [file] [log] [blame]
bsalomon@google.com632151b2012-02-13 15:18:34 +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 */
Mike Kleinc0bd9f92019-04-23 12:05:21 -05007#include "gm/gm.h"
8#include "include/core/SkCanvas.h"
9#include "include/core/SkPaint.h"
10#include "include/effects/Sk1DPathEffect.h"
11#include "include/effects/Sk2DPathEffect.h"
12#include "include/effects/SkCornerPathEffect.h"
13#include "include/effects/SkDashPathEffect.h"
14#include "include/effects/SkDiscretePathEffect.h"
bsalomon@google.com632151b2012-02-13 15:18:34 +000015
16namespace skiagm {
17
18static void compose_pe(SkPaint* paint) {
19 SkPathEffect* pe = paint->getPathEffect();
reeda4393342016-03-18 11:22:57 -070020 sk_sp<SkPathEffect> corner = SkCornerPathEffect::Make(25);
21 sk_sp<SkPathEffect> compose;
bsalomon@google.com632151b2012-02-13 15:18:34 +000022 if (pe) {
Mike Reeda07741a2017-02-25 22:34:32 -050023 compose = SkPathEffect::MakeCompose(sk_ref_sp(pe), corner);
bsalomon@google.com632151b2012-02-13 15:18:34 +000024 } else {
25 compose = corner;
26 }
reeda4393342016-03-18 11:22:57 -070027 paint->setPathEffect(compose);
bsalomon@google.com632151b2012-02-13 15:18:34 +000028}
29
30static void hair_pe(SkPaint* paint) {
31 paint->setStrokeWidth(0);
32}
33
34static void hair2_pe(SkPaint* paint) {
35 paint->setStrokeWidth(0);
36 compose_pe(paint);
37}
38
39static void stroke_pe(SkPaint* paint) {
40 paint->setStrokeWidth(12);
41 compose_pe(paint);
42}
43
44static void dash_pe(SkPaint* paint) {
45 SkScalar inter[] = { 20, 10, 10, 10 };
46 paint->setStrokeWidth(12);
reeda4393342016-03-18 11:22:57 -070047 paint->setPathEffect(SkDashPathEffect::Make(inter, SK_ARRAY_COUNT(inter), 0));
bsalomon@google.com632151b2012-02-13 15:18:34 +000048 compose_pe(paint);
49}
50
mtkleindbfd7ab2016-09-01 11:24:54 -070051constexpr int gXY[] = {
bsalomon@google.com632151b2012-02-13 15:18:34 +0000524, 0, 0, -4, 8, -4, 12, 0, 8, 4, 0, 4
53};
54
55static void scale(SkPath* path, SkScalar scale) {
56 SkMatrix m;
57 m.setScale(scale, scale);
58 path->transform(m);
59}
60
61static void one_d_pe(SkPaint* paint) {
62 SkPath path;
63 path.moveTo(SkIntToScalar(gXY[0]), SkIntToScalar(gXY[1]));
64 for (unsigned i = 2; i < SK_ARRAY_COUNT(gXY); i += 2)
65 path.lineTo(SkIntToScalar(gXY[i]), SkIntToScalar(gXY[i+1]));
66 path.close();
67 path.offset(SkIntToScalar(-6), 0);
caryclark@google.com13130862012-06-06 12:10:45 +000068 scale(&path, 1.5f);
rmistry@google.comae933ce2012-08-23 18:19:56 +000069
reeda4393342016-03-18 11:22:57 -070070 paint->setPathEffect(SkPath1DPathEffect::Make(path, SkIntToScalar(21), 0,
71 SkPath1DPathEffect::kRotate_Style));
bsalomon@google.com632151b2012-02-13 15:18:34 +000072 compose_pe(paint);
73}
74
75typedef void (*PE_Proc)(SkPaint*);
mtkleindbfd7ab2016-09-01 11:24:54 -070076constexpr PE_Proc gPE[] = { hair_pe, hair2_pe, stroke_pe, dash_pe, one_d_pe };
bsalomon@google.com632151b2012-02-13 15:18:34 +000077
78static void fill_pe(SkPaint* paint) {
79 paint->setStyle(SkPaint::kFill_Style);
halcanary96fcdcc2015-08-27 07:41:13 -070080 paint->setPathEffect(nullptr);
bsalomon@google.com632151b2012-02-13 15:18:34 +000081}
82
83static void discrete_pe(SkPaint* paint) {
reeda4393342016-03-18 11:22:57 -070084 paint->setPathEffect(SkDiscretePathEffect::Make(10, 4));
bsalomon@google.com632151b2012-02-13 15:18:34 +000085}
86
reeda4393342016-03-18 11:22:57 -070087static sk_sp<SkPathEffect> MakeTileEffect() {
bsalomon@google.com632151b2012-02-13 15:18:34 +000088 SkMatrix m;
89 m.setScale(SkIntToScalar(12), SkIntToScalar(12));
90
91 SkPath path;
92 path.addCircle(0, 0, SkIntToScalar(5));
rmistry@google.comae933ce2012-08-23 18:19:56 +000093
reeda4393342016-03-18 11:22:57 -070094 return SkPath2DPathEffect::Make(m, path);
bsalomon@google.com632151b2012-02-13 15:18:34 +000095}
96
97static void tile_pe(SkPaint* paint) {
reeda4393342016-03-18 11:22:57 -070098 paint->setPathEffect(MakeTileEffect());
bsalomon@google.com632151b2012-02-13 15:18:34 +000099}
100
mtkleindbfd7ab2016-09-01 11:24:54 -0700101constexpr PE_Proc gPE2[] = { fill_pe, discrete_pe, tile_pe };
bsalomon@google.com632151b2012-02-13 15:18:34 +0000102
103class PathEffectGM : public GM {
104public:
105 PathEffectGM() {}
106
107protected:
commit-bot@chromium.orga90c6802014-04-30 13:20:45 +0000108
mtklein36352bf2015-03-25 18:17:31 -0700109 SkString onShortName() override {
bsalomon@google.com632151b2012-02-13 15:18:34 +0000110 return SkString("patheffect");
111 }
112
mtklein36352bf2015-03-25 18:17:31 -0700113 SkISize onISize() override { return SkISize::Make(800, 600); }
bsalomon@google.com632151b2012-02-13 15:18:34 +0000114
mtklein36352bf2015-03-25 18:17:31 -0700115 void onDraw(SkCanvas* canvas) override {
bsalomon@google.com632151b2012-02-13 15:18:34 +0000116 SkPaint paint;
117 paint.setAntiAlias(true);
118 paint.setStyle(SkPaint::kStroke_Style);
119
120 SkPath path;
121 path.moveTo(20, 20);
122 path.lineTo(70, 120);
123 path.lineTo(120, 30);
124 path.lineTo(170, 80);
125 path.lineTo(240, 50);
126
bsalomon@google.com632151b2012-02-13 15:18:34 +0000127 canvas->save();
Robert Phillips20390c32018-08-17 11:01:03 -0400128 for (size_t i = 0; i < SK_ARRAY_COUNT(gPE); i++) {
bsalomon@google.com632151b2012-02-13 15:18:34 +0000129 gPE[i](&paint);
130 canvas->drawPath(path, paint);
131 canvas->translate(0, 75);
132 }
133 canvas->restore();
134
135 path.reset();
136 SkRect r = { 0, 0, 250, 120 };
137 path.addOval(r, SkPath::kCW_Direction);
138 r.inset(50, 50);
139 path.addRect(r, SkPath::kCCW_Direction);
140
141 canvas->translate(320, 20);
Robert Phillips20390c32018-08-17 11:01:03 -0400142 for (size_t i = 0; i < SK_ARRAY_COUNT(gPE2); i++) {
bsalomon@google.com632151b2012-02-13 15:18:34 +0000143 gPE2[i](&paint);
144 canvas->drawPath(path, paint);
145 canvas->translate(0, 160);
146 }
bsalomon@google.com22f42b72012-03-26 14:36:55 +0000147
Robert Phillips20390c32018-08-17 11:01:03 -0400148 const SkIRect rect = SkIRect::MakeXYWH(20, 20, 60, 60);
149 for (size_t i = 0; i < SK_ARRAY_COUNT(gPE); i++) {
bsalomon@google.com22f42b72012-03-26 14:36:55 +0000150 SkPaint p;
151 p.setAntiAlias(true);
152 p.setStyle(SkPaint::kFill_Style);
153 gPE[i](&p);
154 canvas->drawIRect(rect, p);
155 canvas->translate(75, 0);
156 }
bsalomon@google.com632151b2012-02-13 15:18:34 +0000157 }
158
159private:
160 typedef GM INHERITED;
161};
162
Hal Canarye964c182019-01-23 10:22:01 -0500163DEF_GM( return new PathEffectGM; )
bsalomon@google.com632151b2012-02-13 15:18:34 +0000164
165}
Mike Reed0ef539a2018-07-18 13:28:42 -0400166
167//////////////////////////////////////////////////////////////////////////////
Mike Kleinc0bd9f92019-04-23 12:05:21 -0500168#include "include/effects/SkOpPathEffect.h"
Mike Reed0ef539a2018-07-18 13:28:42 -0400169
170class ComboPathEfectsGM : public skiagm::GM {
171public:
172 ComboPathEfectsGM() {}
173
174protected:
175
176 SkString onShortName() override {
177 return SkString("combo-patheffects");
178 }
179
180 SkISize onISize() override { return SkISize::Make(360, 630); }
181
182 void onDraw(SkCanvas* canvas) override {
183 SkPath path0, path1, path2;
184 path0.addCircle(100, 100, 60);
185 path1.moveTo(20, 20); path1.cubicTo(20, 180, 140, 0, 140, 140);
186
187 sk_sp<SkPathEffect> effects[] = {
188 nullptr,
189 SkStrokePathEffect::Make(20, SkPaint::kRound_Join, SkPaint::kRound_Cap, 0),
Mike Reed310f44d2018-07-19 13:47:44 -0400190 SkMergePathEffect::Make(nullptr,
191 SkStrokePathEffect::Make(20, SkPaint::kRound_Join,
192 SkPaint::kRound_Cap, 0),
193 kDifference_SkPathOp),
194 SkMergePathEffect::Make(SkMatrixPathEffect::MakeTranslate(50, 30),
195 SkStrokePathEffect::Make(20, SkPaint::kRound_Join,
196 SkPaint::kRound_Cap, 0),
197 kReverseDifference_SkPathOp),
Mike Reed0ef539a2018-07-18 13:28:42 -0400198 };
199
200 SkPaint wireframe;
201 wireframe.setStyle(SkPaint::kStroke_Style);
202 wireframe.setAntiAlias(true);
203
204 SkPaint paint;
205 paint.setColor(0xFF8888FF);
206 paint.setAntiAlias(true);
207
208 for (auto& path : { path0, path1 }) {
209 canvas->save();
210 for (auto pe : effects) {
211 paint.setPathEffect(pe);
212 canvas->drawPath(path, paint);
213 canvas->drawPath(path, wireframe);
214
215 canvas->translate(0, 150);
216 }
217 canvas->restore();
218 canvas->translate(180, 0);
219 }
220 }
221
222private:
223 typedef GM INHERITED;
224};
225DEF_GM(return new ComboPathEfectsGM;)
226