blob: f46104e356030b66c8c9f4dd9fa9a8cf38f7c6bf [file] [log] [blame]
commit-bot@chromium.orga343c842014-01-31 14:48:58 +00001/*
2 * Copyright 2014 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
Mike Kleinc0bd9f92019-04-23 12:05:21 -05008#include "gm/gm.h"
Mike Kleinc0bd9f92019-04-23 12:05:21 -05009#include "include/core/SkBitmap.h"
Ben Wagner7fde8e12019-05-01 17:28:53 -040010#include "include/core/SkCanvas.h"
11#include "include/core/SkClipOp.h"
12#include "include/core/SkColor.h"
Mike Kleinc0bd9f92019-04-23 12:05:21 -050013#include "include/core/SkFont.h"
Ben Wagner7fde8e12019-05-01 17:28:53 -040014#include "include/core/SkFontTypes.h"
15#include "include/core/SkMatrix.h"
16#include "include/core/SkPaint.h"
Mike Reed92f6eb12020-08-25 11:48:41 -040017#include "include/core/SkPathBuilder.h"
Ben Wagner7fde8e12019-05-01 17:28:53 -040018#include "include/core/SkPoint.h"
19#include "include/core/SkRect.h"
20#include "include/core/SkScalar.h"
21#include "include/core/SkShader.h"
22#include "include/core/SkSize.h"
23#include "include/core/SkString.h"
24#include "include/core/SkTileMode.h"
25#include "include/core/SkTypeface.h"
26#include "include/core/SkTypes.h"
Mike Kleinc0bd9f92019-04-23 12:05:21 -050027#include "include/effects/SkGradientShader.h"
Ben Wagner7fde8e12019-05-01 17:28:53 -040028#include "src/core/SkClipOpPriv.h"
Mike Kleinc0bd9f92019-04-23 12:05:21 -050029#include "src/core/SkTLList.h"
Ben Wagner7fde8e12019-05-01 17:28:53 -040030#include "tools/ToolUtils.h"
commit-bot@chromium.orga343c842014-01-31 14:48:58 +000031
Mike Reed607a3822021-01-24 19:49:21 -050032static sk_sp<SkImage> make_img(int w, int h) {
33 auto surf = SkSurface::MakeRaster(SkImageInfo::MakeN32(w, h, kOpaque_SkAlphaType));
34 auto canvas = surf->getCanvas();
commit-bot@chromium.orga343c842014-01-31 14:48:58 +000035
commit-bot@chromium.orga343c842014-01-31 14:48:58 +000036 SkScalar wScalar = SkIntToScalar(w);
37 SkScalar hScalar = SkIntToScalar(h);
38
39 SkPoint pt = { wScalar / 2, hScalar / 2 };
40
Brian Osman116b33e2020-02-05 13:34:09 -050041 SkScalar radius = 3 * std::max(wScalar, hScalar);
commit-bot@chromium.orga343c842014-01-31 14:48:58 +000042
Mike Kleinea3f0142019-03-20 11:12:10 -050043 SkColor colors[] = {SK_ColorDKGRAY,
44 ToolUtils::color_to_565(0xFF222255),
45 ToolUtils::color_to_565(0xFF331133),
46 ToolUtils::color_to_565(0xFF884422),
47 ToolUtils::color_to_565(0xFF000022),
48 SK_ColorWHITE,
49 ToolUtils::color_to_565(0xFFAABBCC)};
commit-bot@chromium.orga343c842014-01-31 14:48:58 +000050
51 SkScalar pos[] = {0,
52 SK_Scalar1 / 6,
53 2 * SK_Scalar1 / 6,
54 3 * SK_Scalar1 / 6,
55 4 * SK_Scalar1 / 6,
56 5 * SK_Scalar1 / 6,
57 SK_Scalar1};
58
59 SkPaint paint;
commit-bot@chromium.orga343c842014-01-31 14:48:58 +000060 SkRect rect = SkRect::MakeWH(wScalar, hScalar);
61 SkMatrix mat = SkMatrix::I();
62 for (int i = 0; i < 4; ++i) {
reed2ad1aa62016-03-09 09:50:50 -080063 paint.setShader(SkGradientShader::MakeRadial(
commit-bot@chromium.org9c9005a2014-04-28 14:55:39 +000064 pt, radius,
65 colors, pos,
66 SK_ARRAY_COUNT(colors),
Mike Reedfae8fce2019-04-03 10:27:45 -040067 SkTileMode::kRepeat,
reed2ad1aa62016-03-09 09:50:50 -080068 0, &mat));
Mike Reed607a3822021-01-24 19:49:21 -050069 canvas->drawRect(rect, paint);
commit-bot@chromium.orga343c842014-01-31 14:48:58 +000070 rect.inset(wScalar / 8, hScalar / 8);
71 mat.preTranslate(6 * wScalar, 6 * hScalar);
72 mat.postScale(SK_Scalar1 / 3, SK_Scalar1 / 3);
73 }
74
Mike Kleinea3f0142019-03-20 11:12:10 -050075 SkFont font(ToolUtils::create_portable_typeface(), wScalar / 2.2f);
Mike Reed4de2f1f2019-01-05 16:35:13 -050076
Ben Wagnera93a14a2017-08-28 10:34:05 -040077 paint.setShader(nullptr);
Mike Kleind46dce32018-08-16 10:17:03 -040078 paint.setColor(SK_ColorLTGRAY);
mtkleindbfd7ab2016-09-01 11:24:54 -070079 constexpr char kTxt[] = "Skia";
Mike Reed4de2f1f2019-01-05 16:35:13 -050080 SkPoint texPos = { wScalar / 17, hScalar / 2 + font.getSize() / 2.5f };
Mike Reed607a3822021-01-24 19:49:21 -050081 canvas->drawSimpleText(kTxt, SK_ARRAY_COUNT(kTxt)-1, SkTextEncoding::kUTF8,
82 texPos.fX, texPos.fY, font, paint);
commit-bot@chromium.orga343c842014-01-31 14:48:58 +000083 paint.setColor(SK_ColorBLACK);
84 paint.setStyle(SkPaint::kStroke_Style);
85 paint.setStrokeWidth(SK_Scalar1);
Mike Reed607a3822021-01-24 19:49:21 -050086 canvas->drawSimpleText(kTxt, SK_ARRAY_COUNT(kTxt)-1, SkTextEncoding::kUTF8,
87 texPos.fX, texPos.fY, font, paint);
88 return surf->makeImageSnapshot();
commit-bot@chromium.orga343c842014-01-31 14:48:58 +000089}
90
91namespace skiagm {
92/**
93 * This GM tests convex polygon clips.
94 */
95class ConvexPolyClip : public GM {
96public:
97 ConvexPolyClip() {
98 this->setBGColor(0xFFFFFFFF);
99 }
100
101protected:
mtklein36352bf2015-03-25 18:17:31 -0700102 SkString onShortName() override {
commit-bot@chromium.orga343c842014-01-31 14:48:58 +0000103 return SkString("convex_poly_clip");
104 }
105
mtklein36352bf2015-03-25 18:17:31 -0700106 SkISize onISize() override {
commit-bot@chromium.orgb21fac12014-02-07 21:13:11 +0000107 // When benchmarking the saveLayer set of draws is skipped.
108 int w = 435;
109 if (kBench_Mode != this->getMode()) {
110 w *= 2;
111 }
tfarinaf5393182014-06-09 23:59:03 -0700112 return SkISize::Make(w, 540);
commit-bot@chromium.orga343c842014-01-31 14:48:58 +0000113 }
114
mtklein36352bf2015-03-25 18:17:31 -0700115 void onOnceBeforeDraw() override {
Mike Reed92f6eb12020-08-25 11:48:41 -0400116 fClips.addToTail()->setPath(SkPath::Polygon({
117 { 5.f, 5.f},
118 {100.f, 20.f},
119 { 15.f, 100.f},
120 }, false));
commit-bot@chromium.orga343c842014-01-31 14:48:58 +0000121
Mike Reed92f6eb12020-08-25 11:48:41 -0400122 SkPathBuilder hexagon;
mtkleindbfd7ab2016-09-01 11:24:54 -0700123 constexpr SkScalar kRadius = 45.f;
commit-bot@chromium.orga343c842014-01-31 14:48:58 +0000124 const SkPoint center = { kRadius, kRadius };
125 for (int i = 0; i < 6; ++i) {
126 SkScalar angle = 2 * SK_ScalarPI * i / 6;
Brian Osman4428f2c2019-04-02 10:59:28 -0400127 SkPoint point = { SkScalarCos(angle), SkScalarSin(angle) };
commit-bot@chromium.orga343c842014-01-31 14:48:58 +0000128 point.scale(kRadius);
129 point = center + point;
130 if (0 == i) {
131 hexagon.moveTo(point);
132 } else {
133 hexagon.lineTo(point);
134 }
135 }
Mike Reed92f6eb12020-08-25 11:48:41 -0400136 fClips.addToTail()->setPath(hexagon.snapshot());
commit-bot@chromium.orga343c842014-01-31 14:48:58 +0000137
138 SkMatrix scaleM;
139 scaleM.setScale(1.1f, 0.4f, kRadius, kRadius);
Mike Reed92f6eb12020-08-25 11:48:41 -0400140 fClips.addToTail()->setPath(hexagon.detach().makeTransform(scaleM));
commit-bot@chromium.orgb511be52014-02-04 15:09:16 +0000141
142 fClips.addToTail()->setRect(SkRect::MakeXYWH(8.3f, 11.6f, 78.2f, 72.6f));
commit-bot@chromium.orga343c842014-01-31 14:48:58 +0000143
commit-bot@chromium.orga343c842014-01-31 14:48:58 +0000144 SkRect rect = SkRect::MakeLTRB(10.f, 12.f, 80.f, 86.f);
commit-bot@chromium.orga343c842014-01-31 14:48:58 +0000145 SkMatrix rotM;
146 rotM.setRotate(23.f, rect.centerX(), rect.centerY());
Mike Reed92f6eb12020-08-25 11:48:41 -0400147 fClips.addToTail()->setPath(SkPath::Rect(rect).makeTransform(rotM));
skia.committer@gmail.com1dab4032014-02-05 03:01:48 +0000148
Mike Reed607a3822021-01-24 19:49:21 -0500149 fImg = make_img(100, 100);
commit-bot@chromium.orga343c842014-01-31 14:48:58 +0000150 }
151
mtklein36352bf2015-03-25 18:17:31 -0700152 void onDraw(SkCanvas* canvas) override {
commit-bot@chromium.orga343c842014-01-31 14:48:58 +0000153 SkScalar y = 0;
mtkleindbfd7ab2016-09-01 11:24:54 -0700154 constexpr SkScalar kMargin = 10.f;
commit-bot@chromium.orga343c842014-01-31 14:48:58 +0000155
156 SkPaint bgPaint;
157 bgPaint.setAlpha(0x15);
Mike Reed3661bc92017-02-22 13:21:42 -0500158 SkISize size = canvas->getBaseLayerSize();
Mike Reed607a3822021-01-24 19:49:21 -0500159 canvas->drawImageRect(fImg, SkRect::MakeIWH(size.fWidth, size.fHeight),
160 SkSamplingOptions(), &bgPaint);
commit-bot@chromium.orga343c842014-01-31 14:48:58 +0000161
mtkleindbfd7ab2016-09-01 11:24:54 -0700162 constexpr char kTxt[] = "Clip Me!";
Mike Kleinea3f0142019-03-20 11:12:10 -0500163 SkFont font(ToolUtils::create_portable_typeface(), 23);
Ben Wagner51e15a62019-05-07 15:38:46 -0400164 SkScalar textW = font.measureText(kTxt, SK_ARRAY_COUNT(kTxt)-1, SkTextEncoding::kUTF8);
commit-bot@chromium.orgb21fac12014-02-07 21:13:11 +0000165 SkPaint txtPaint;
Mike Kleind46dce32018-08-16 10:17:03 -0400166 txtPaint.setColor(SK_ColorDKGRAY);
commit-bot@chromium.orgb21fac12014-02-07 21:13:11 +0000167
168 SkScalar startX = 0;
169 int testLayers = kBench_Mode != this->getMode();
170 for (int doLayer = 0; doLayer <= testLayers; ++doLayer) {
bsalomonf045d602015-11-18 19:01:12 -0800171 for (ClipList::Iter iter(fClips, ClipList::Iter::kHead_IterStart);
bsalomon49f085d2014-09-05 13:34:00 -0700172 iter.get();
commit-bot@chromium.orgb21fac12014-02-07 21:13:11 +0000173 iter.next()) {
174 const Clip* clip = iter.get();
175 SkScalar x = startX;
176 for (int aa = 0; aa < 2; ++aa) {
177 if (doLayer) {
178 SkRect bounds;
179 clip->getBounds(&bounds);
180 bounds.outset(2, 2);
181 bounds.offset(x, y);
halcanary96fcdcc2015-08-27 07:41:13 -0700182 canvas->saveLayer(&bounds, nullptr);
commit-bot@chromium.orgb21fac12014-02-07 21:13:11 +0000183 } else {
184 canvas->save();
185 }
186 canvas->translate(x, y);
Mike Reedc1f77742016-12-09 09:00:50 -0500187 clip->setOnCanvas(canvas, kIntersect_SkClipOp, SkToBool(aa));
Mike Reed607a3822021-01-24 19:49:21 -0500188 canvas->drawImage(fImg, 0, 0);
commit-bot@chromium.orgb21fac12014-02-07 21:13:11 +0000189 canvas->restore();
Mike Reed607a3822021-01-24 19:49:21 -0500190 x += fImg->width() + kMargin;
commit-bot@chromium.orgb21fac12014-02-07 21:13:11 +0000191 }
192 for (int aa = 0; aa < 2; ++aa) {
193
194 SkPaint clipOutlinePaint;
195 clipOutlinePaint.setAntiAlias(true);
196 clipOutlinePaint.setColor(0x50505050);
197 clipOutlinePaint.setStyle(SkPaint::kStroke_Style);
198 clipOutlinePaint.setStrokeWidth(0);
199
200 if (doLayer) {
201 SkRect bounds;
202 clip->getBounds(&bounds);
203 bounds.outset(2, 2);
204 bounds.offset(x, y);
halcanary96fcdcc2015-08-27 07:41:13 -0700205 canvas->saveLayer(&bounds, nullptr);
commit-bot@chromium.orgb21fac12014-02-07 21:13:11 +0000206 } else {
207 canvas->save();
208 }
209 canvas->translate(x, y);
Mike Reedd849a752020-09-08 20:47:09 -0400210 SkPath closedClipPath = clip->asClosedPath();
commit-bot@chromium.orgb21fac12014-02-07 21:13:11 +0000211 canvas->drawPath(closedClipPath, clipOutlinePaint);
Mike Reedc1f77742016-12-09 09:00:50 -0500212 clip->setOnCanvas(canvas, kIntersect_SkClipOp, SkToBool(aa));
commit-bot@chromium.orgb21fac12014-02-07 21:13:11 +0000213 canvas->scale(1.f, 1.8f);
Ben Wagner51e15a62019-05-07 15:38:46 -0400214 canvas->drawSimpleText(kTxt, SK_ARRAY_COUNT(kTxt)-1, SkTextEncoding::kUTF8,
Mike Reed2e6db182018-12-15 13:45:33 -0500215 0, 1.5f * font.getSize(), font, txtPaint);
commit-bot@chromium.orgb21fac12014-02-07 21:13:11 +0000216 canvas->restore();
217 x += textW + 2 * kMargin;
218 }
Mike Reed607a3822021-01-24 19:49:21 -0500219 y += fImg->height() + kMargin;
commit-bot@chromium.orga343c842014-01-31 14:48:58 +0000220 }
commit-bot@chromium.orgb21fac12014-02-07 21:13:11 +0000221 y = 0;
Mike Reed607a3822021-01-24 19:49:21 -0500222 startX += 2 * fImg->width() + SkScalarCeilToInt(2 * textW) + 6 * kMargin;
commit-bot@chromium.orga343c842014-01-31 14:48:58 +0000223 }
224 }
225
mtklein36352bf2015-03-25 18:17:31 -0700226 bool runAsBench() const override { return true; }
mtkleincf5d9c92015-01-23 10:31:45 -0800227
commit-bot@chromium.orga343c842014-01-31 14:48:58 +0000228private:
commit-bot@chromium.orgb511be52014-02-04 15:09:16 +0000229 class Clip {
230 public:
231 enum ClipType {
232 kNone_ClipType,
233 kPath_ClipType,
234 kRect_ClipType
235 };
236
237 Clip () : fClipType(kNone_ClipType) {}
skia.committer@gmail.com1dab4032014-02-05 03:01:48 +0000238
Mike Reedc1f77742016-12-09 09:00:50 -0500239 void setOnCanvas(SkCanvas* canvas, SkClipOp op, bool aa) const {
commit-bot@chromium.orgb511be52014-02-04 15:09:16 +0000240 switch (fClipType) {
241 case kPath_ClipType:
Mike Reedd849a752020-09-08 20:47:09 -0400242 canvas->clipPath(fPathBuilder.snapshot(), op, aa);
commit-bot@chromium.orgb511be52014-02-04 15:09:16 +0000243 break;
244 case kRect_ClipType:
245 canvas->clipRect(fRect, op, aa);
246 break;
247 case kNone_ClipType:
248 SkDEBUGFAIL("Uninitialized Clip.");
249 break;
250 }
251 }
skia.committer@gmail.com1dab4032014-02-05 03:01:48 +0000252
Mike Reedd849a752020-09-08 20:47:09 -0400253 SkPath asClosedPath() const {
commit-bot@chromium.orgb511be52014-02-04 15:09:16 +0000254 switch (fClipType) {
255 case kPath_ClipType:
Mike Reedd849a752020-09-08 20:47:09 -0400256 return SkPathBuilder(fPathBuilder).close().detach();
commit-bot@chromium.orgb511be52014-02-04 15:09:16 +0000257 break;
258 case kRect_ClipType:
Mike Reedd849a752020-09-08 20:47:09 -0400259 return SkPath::Rect(fRect);
commit-bot@chromium.orgb511be52014-02-04 15:09:16 +0000260 case kNone_ClipType:
261 SkDEBUGFAIL("Uninitialized Clip.");
262 break;
263 }
Mike Reedd849a752020-09-08 20:47:09 -0400264 return SkPath();
commit-bot@chromium.orgb511be52014-02-04 15:09:16 +0000265 }
skia.committer@gmail.com1dab4032014-02-05 03:01:48 +0000266
commit-bot@chromium.orgb511be52014-02-04 15:09:16 +0000267 void setPath(const SkPath& path) {
268 fClipType = kPath_ClipType;
Mike Reedd849a752020-09-08 20:47:09 -0400269 fPathBuilder = path;
commit-bot@chromium.orgb511be52014-02-04 15:09:16 +0000270 }
skia.committer@gmail.com1dab4032014-02-05 03:01:48 +0000271
commit-bot@chromium.orgb511be52014-02-04 15:09:16 +0000272 void setRect(const SkRect& rect) {
273 fClipType = kRect_ClipType;
274 fRect = rect;
Mike Reedd849a752020-09-08 20:47:09 -0400275 fPathBuilder.reset();
commit-bot@chromium.orgb511be52014-02-04 15:09:16 +0000276 }
skia.committer@gmail.com1dab4032014-02-05 03:01:48 +0000277
commit-bot@chromium.orgb511be52014-02-04 15:09:16 +0000278 ClipType getType() const { return fClipType; }
skia.committer@gmail.com1dab4032014-02-05 03:01:48 +0000279
commit-bot@chromium.orgb21fac12014-02-07 21:13:11 +0000280 void getBounds(SkRect* bounds) const {
281 switch (fClipType) {
282 case kPath_ClipType:
Mike Reedd849a752020-09-08 20:47:09 -0400283 *bounds = fPathBuilder.computeBounds();
commit-bot@chromium.orgb21fac12014-02-07 21:13:11 +0000284 break;
285 case kRect_ClipType:
286 *bounds = fRect;
287 break;
288 case kNone_ClipType:
289 SkDEBUGFAIL("Uninitialized Clip.");
290 break;
291 }
292 }
293
commit-bot@chromium.orgb511be52014-02-04 15:09:16 +0000294 private:
295 ClipType fClipType;
Mike Reedd849a752020-09-08 20:47:09 -0400296 SkPathBuilder fPathBuilder;
commit-bot@chromium.orgb511be52014-02-04 15:09:16 +0000297 SkRect fRect;
298 };
skia.committer@gmail.com1dab4032014-02-05 03:01:48 +0000299
bsalomonf045d602015-11-18 19:01:12 -0800300 typedef SkTLList<Clip, 1> ClipList;
301 ClipList fClips;
Mike Reed607a3822021-01-24 19:49:21 -0500302 sk_sp<SkImage> fImg;;
commit-bot@chromium.orga343c842014-01-31 14:48:58 +0000303
John Stiles7571f9e2020-09-02 22:42:33 -0400304 using INHERITED = GM;
commit-bot@chromium.orga343c842014-01-31 14:48:58 +0000305};
306
halcanary385fe4d2015-08-26 13:07:48 -0700307DEF_GM(return new ConvexPolyClip;)
John Stilesa6841be2020-08-06 14:11:56 -0400308} // namespace skiagm