blob: 31dc1d46978ec1899f1d9ead749fb20219420265 [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 Kleinc0bd9f92019-04-23 12:05:21 -050017#include "include/core/SkPath.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
32static SkBitmap make_bmp(int w, int h) {
33 SkBitmap bmp;
34 bmp.allocN32Pixels(w, h, true);
35
36 SkCanvas canvas(bmp);
37 SkScalar wScalar = SkIntToScalar(w);
38 SkScalar hScalar = SkIntToScalar(h);
39
40 SkPoint pt = { wScalar / 2, hScalar / 2 };
41
42 SkScalar radius = 3 * SkMaxScalar(wScalar, hScalar);
43
Mike Kleinea3f0142019-03-20 11:12:10 -050044 SkColor colors[] = {SK_ColorDKGRAY,
45 ToolUtils::color_to_565(0xFF222255),
46 ToolUtils::color_to_565(0xFF331133),
47 ToolUtils::color_to_565(0xFF884422),
48 ToolUtils::color_to_565(0xFF000022),
49 SK_ColorWHITE,
50 ToolUtils::color_to_565(0xFFAABBCC)};
commit-bot@chromium.orga343c842014-01-31 14:48:58 +000051
52 SkScalar pos[] = {0,
53 SK_Scalar1 / 6,
54 2 * SK_Scalar1 / 6,
55 3 * SK_Scalar1 / 6,
56 4 * SK_Scalar1 / 6,
57 5 * SK_Scalar1 / 6,
58 SK_Scalar1};
59
60 SkPaint paint;
commit-bot@chromium.orga343c842014-01-31 14:48:58 +000061 SkRect rect = SkRect::MakeWH(wScalar, hScalar);
62 SkMatrix mat = SkMatrix::I();
63 for (int i = 0; i < 4; ++i) {
reed2ad1aa62016-03-09 09:50:50 -080064 paint.setShader(SkGradientShader::MakeRadial(
commit-bot@chromium.org9c9005a2014-04-28 14:55:39 +000065 pt, radius,
66 colors, pos,
67 SK_ARRAY_COUNT(colors),
Mike Reedfae8fce2019-04-03 10:27:45 -040068 SkTileMode::kRepeat,
reed2ad1aa62016-03-09 09:50:50 -080069 0, &mat));
commit-bot@chromium.orga343c842014-01-31 14:48:58 +000070 canvas.drawRect(rect, paint);
71 rect.inset(wScalar / 8, hScalar / 8);
72 mat.preTranslate(6 * wScalar, 6 * hScalar);
73 mat.postScale(SK_Scalar1 / 3, SK_Scalar1 / 3);
74 }
75
Mike Kleinea3f0142019-03-20 11:12:10 -050076 SkFont font(ToolUtils::create_portable_typeface(), wScalar / 2.2f);
Mike Reed4de2f1f2019-01-05 16:35:13 -050077
Ben Wagnera93a14a2017-08-28 10:34:05 -040078 paint.setShader(nullptr);
Mike Kleind46dce32018-08-16 10:17:03 -040079 paint.setColor(SK_ColorLTGRAY);
mtkleindbfd7ab2016-09-01 11:24:54 -070080 constexpr char kTxt[] = "Skia";
Mike Reed4de2f1f2019-01-05 16:35:13 -050081 SkPoint texPos = { wScalar / 17, hScalar / 2 + font.getSize() / 2.5f };
Ben Wagner51e15a62019-05-07 15:38:46 -040082 canvas.drawSimpleText(kTxt, SK_ARRAY_COUNT(kTxt)-1, SkTextEncoding::kUTF8,
Mike Reed4de2f1f2019-01-05 16:35:13 -050083 texPos.fX, texPos.fY, font, paint);
commit-bot@chromium.orga343c842014-01-31 14:48:58 +000084 paint.setColor(SK_ColorBLACK);
85 paint.setStyle(SkPaint::kStroke_Style);
86 paint.setStrokeWidth(SK_Scalar1);
Ben Wagner51e15a62019-05-07 15:38:46 -040087 canvas.drawSimpleText(kTxt, SK_ARRAY_COUNT(kTxt)-1, SkTextEncoding::kUTF8,
Mike Reed4de2f1f2019-01-05 16:35:13 -050088 texPos.fX, texPos.fY, font, paint);
commit-bot@chromium.orga343c842014-01-31 14:48:58 +000089 return bmp;
90}
91
92namespace skiagm {
93/**
94 * This GM tests convex polygon clips.
95 */
96class ConvexPolyClip : public GM {
97public:
98 ConvexPolyClip() {
99 this->setBGColor(0xFFFFFFFF);
100 }
101
102protected:
mtklein36352bf2015-03-25 18:17:31 -0700103 SkString onShortName() override {
commit-bot@chromium.orga343c842014-01-31 14:48:58 +0000104 return SkString("convex_poly_clip");
105 }
106
mtklein36352bf2015-03-25 18:17:31 -0700107 SkISize onISize() override {
commit-bot@chromium.orgb21fac12014-02-07 21:13:11 +0000108 // When benchmarking the saveLayer set of draws is skipped.
109 int w = 435;
110 if (kBench_Mode != this->getMode()) {
111 w *= 2;
112 }
tfarinaf5393182014-06-09 23:59:03 -0700113 return SkISize::Make(w, 540);
commit-bot@chromium.orga343c842014-01-31 14:48:58 +0000114 }
115
mtklein36352bf2015-03-25 18:17:31 -0700116 void onOnceBeforeDraw() override {
commit-bot@chromium.orga343c842014-01-31 14:48:58 +0000117 SkPath tri;
118 tri.moveTo(5.f, 5.f);
119 tri.lineTo(100.f, 20.f);
120 tri.lineTo(15.f, 100.f);
121
commit-bot@chromium.orgb511be52014-02-04 15:09:16 +0000122 fClips.addToTail()->setPath(tri);
commit-bot@chromium.orga343c842014-01-31 14:48:58 +0000123
124 SkPath hexagon;
mtkleindbfd7ab2016-09-01 11:24:54 -0700125 constexpr SkScalar kRadius = 45.f;
commit-bot@chromium.orga343c842014-01-31 14:48:58 +0000126 const SkPoint center = { kRadius, kRadius };
127 for (int i = 0; i < 6; ++i) {
128 SkScalar angle = 2 * SK_ScalarPI * i / 6;
Brian Osman4428f2c2019-04-02 10:59:28 -0400129 SkPoint point = { SkScalarCos(angle), SkScalarSin(angle) };
commit-bot@chromium.orga343c842014-01-31 14:48:58 +0000130 point.scale(kRadius);
131 point = center + point;
132 if (0 == i) {
133 hexagon.moveTo(point);
134 } else {
135 hexagon.lineTo(point);
136 }
137 }
commit-bot@chromium.orgb511be52014-02-04 15:09:16 +0000138 fClips.addToTail()->setPath(hexagon);
commit-bot@chromium.orga343c842014-01-31 14:48:58 +0000139
140 SkMatrix scaleM;
141 scaleM.setScale(1.1f, 0.4f, kRadius, kRadius);
142 hexagon.transform(scaleM);
commit-bot@chromium.orgb511be52014-02-04 15:09:16 +0000143 fClips.addToTail()->setPath(hexagon);
144
145 fClips.addToTail()->setRect(SkRect::MakeXYWH(8.3f, 11.6f, 78.2f, 72.6f));
commit-bot@chromium.orga343c842014-01-31 14:48:58 +0000146
147 SkPath rotRect;
148 SkRect rect = SkRect::MakeLTRB(10.f, 12.f, 80.f, 86.f);
149 rotRect.addRect(rect);
150 SkMatrix rotM;
151 rotM.setRotate(23.f, rect.centerX(), rect.centerY());
152 rotRect.transform(rotM);
commit-bot@chromium.orgb511be52014-02-04 15:09:16 +0000153 fClips.addToTail()->setPath(rotRect);
skia.committer@gmail.com1dab4032014-02-05 03:01:48 +0000154
commit-bot@chromium.orga343c842014-01-31 14:48:58 +0000155 fBmp = make_bmp(100, 100);
156 }
157
mtklein36352bf2015-03-25 18:17:31 -0700158 void onDraw(SkCanvas* canvas) override {
commit-bot@chromium.orga343c842014-01-31 14:48:58 +0000159 SkScalar y = 0;
mtkleindbfd7ab2016-09-01 11:24:54 -0700160 constexpr SkScalar kMargin = 10.f;
commit-bot@chromium.orga343c842014-01-31 14:48:58 +0000161
162 SkPaint bgPaint;
163 bgPaint.setAlpha(0x15);
Mike Reed3661bc92017-02-22 13:21:42 -0500164 SkISize size = canvas->getBaseLayerSize();
reeda5517e22015-07-14 10:54:12 -0700165 canvas->drawBitmapRect(fBmp, SkRect::MakeIWH(size.fWidth, size.fHeight), &bgPaint);
commit-bot@chromium.orga343c842014-01-31 14:48:58 +0000166
mtkleindbfd7ab2016-09-01 11:24:54 -0700167 constexpr char kTxt[] = "Clip Me!";
Mike Kleinea3f0142019-03-20 11:12:10 -0500168 SkFont font(ToolUtils::create_portable_typeface(), 23);
Ben Wagner51e15a62019-05-07 15:38:46 -0400169 SkScalar textW = font.measureText(kTxt, SK_ARRAY_COUNT(kTxt)-1, SkTextEncoding::kUTF8);
commit-bot@chromium.orgb21fac12014-02-07 21:13:11 +0000170 SkPaint txtPaint;
Mike Kleind46dce32018-08-16 10:17:03 -0400171 txtPaint.setColor(SK_ColorDKGRAY);
commit-bot@chromium.orgb21fac12014-02-07 21:13:11 +0000172
173 SkScalar startX = 0;
174 int testLayers = kBench_Mode != this->getMode();
175 for (int doLayer = 0; doLayer <= testLayers; ++doLayer) {
bsalomonf045d602015-11-18 19:01:12 -0800176 for (ClipList::Iter iter(fClips, ClipList::Iter::kHead_IterStart);
bsalomon49f085d2014-09-05 13:34:00 -0700177 iter.get();
commit-bot@chromium.orgb21fac12014-02-07 21:13:11 +0000178 iter.next()) {
179 const Clip* clip = iter.get();
180 SkScalar x = startX;
181 for (int aa = 0; aa < 2; ++aa) {
182 if (doLayer) {
183 SkRect bounds;
184 clip->getBounds(&bounds);
185 bounds.outset(2, 2);
186 bounds.offset(x, y);
halcanary96fcdcc2015-08-27 07:41:13 -0700187 canvas->saveLayer(&bounds, nullptr);
commit-bot@chromium.orgb21fac12014-02-07 21:13:11 +0000188 } else {
189 canvas->save();
190 }
191 canvas->translate(x, y);
Mike Reedc1f77742016-12-09 09:00:50 -0500192 clip->setOnCanvas(canvas, kIntersect_SkClipOp, SkToBool(aa));
commit-bot@chromium.orgb21fac12014-02-07 21:13:11 +0000193 canvas->drawBitmap(fBmp, 0, 0);
194 canvas->restore();
195 x += fBmp.width() + kMargin;
196 }
197 for (int aa = 0; aa < 2; ++aa) {
198
199 SkPaint clipOutlinePaint;
200 clipOutlinePaint.setAntiAlias(true);
201 clipOutlinePaint.setColor(0x50505050);
202 clipOutlinePaint.setStyle(SkPaint::kStroke_Style);
203 clipOutlinePaint.setStrokeWidth(0);
204
205 if (doLayer) {
206 SkRect bounds;
207 clip->getBounds(&bounds);
208 bounds.outset(2, 2);
209 bounds.offset(x, y);
halcanary96fcdcc2015-08-27 07:41:13 -0700210 canvas->saveLayer(&bounds, nullptr);
commit-bot@chromium.orgb21fac12014-02-07 21:13:11 +0000211 } else {
212 canvas->save();
213 }
214 canvas->translate(x, y);
215 SkPath closedClipPath;
216 clip->asClosedPath(&closedClipPath);
217 canvas->drawPath(closedClipPath, clipOutlinePaint);
Mike Reedc1f77742016-12-09 09:00:50 -0500218 clip->setOnCanvas(canvas, kIntersect_SkClipOp, SkToBool(aa));
commit-bot@chromium.orgb21fac12014-02-07 21:13:11 +0000219 canvas->scale(1.f, 1.8f);
Ben Wagner51e15a62019-05-07 15:38:46 -0400220 canvas->drawSimpleText(kTxt, SK_ARRAY_COUNT(kTxt)-1, SkTextEncoding::kUTF8,
Mike Reed2e6db182018-12-15 13:45:33 -0500221 0, 1.5f * font.getSize(), font, txtPaint);
commit-bot@chromium.orgb21fac12014-02-07 21:13:11 +0000222 canvas->restore();
223 x += textW + 2 * kMargin;
224 }
225 y += fBmp.height() + kMargin;
commit-bot@chromium.orga343c842014-01-31 14:48:58 +0000226 }
commit-bot@chromium.orgb21fac12014-02-07 21:13:11 +0000227 y = 0;
228 startX += 2 * fBmp.width() + SkScalarCeilToInt(2 * textW) + 6 * kMargin;
commit-bot@chromium.orga343c842014-01-31 14:48:58 +0000229 }
230 }
231
mtklein36352bf2015-03-25 18:17:31 -0700232 bool runAsBench() const override { return true; }
mtkleincf5d9c92015-01-23 10:31:45 -0800233
commit-bot@chromium.orga343c842014-01-31 14:48:58 +0000234private:
commit-bot@chromium.orgb511be52014-02-04 15:09:16 +0000235 class Clip {
236 public:
237 enum ClipType {
238 kNone_ClipType,
239 kPath_ClipType,
240 kRect_ClipType
241 };
242
243 Clip () : fClipType(kNone_ClipType) {}
skia.committer@gmail.com1dab4032014-02-05 03:01:48 +0000244
Mike Reedc1f77742016-12-09 09:00:50 -0500245 void setOnCanvas(SkCanvas* canvas, SkClipOp op, bool aa) const {
commit-bot@chromium.orgb511be52014-02-04 15:09:16 +0000246 switch (fClipType) {
247 case kPath_ClipType:
248 canvas->clipPath(fPath, op, aa);
249 break;
250 case kRect_ClipType:
251 canvas->clipRect(fRect, op, aa);
252 break;
253 case kNone_ClipType:
254 SkDEBUGFAIL("Uninitialized Clip.");
255 break;
256 }
257 }
skia.committer@gmail.com1dab4032014-02-05 03:01:48 +0000258
commit-bot@chromium.orgb511be52014-02-04 15:09:16 +0000259 void asClosedPath(SkPath* path) const {
260 switch (fClipType) {
261 case kPath_ClipType:
262 *path = fPath;
263 path->close();
264 break;
265 case kRect_ClipType:
266 path->reset();
267 path->addRect(fRect);
268 break;
269 case kNone_ClipType:
270 SkDEBUGFAIL("Uninitialized Clip.");
271 break;
272 }
273 }
skia.committer@gmail.com1dab4032014-02-05 03:01:48 +0000274
commit-bot@chromium.orgb511be52014-02-04 15:09:16 +0000275 void setPath(const SkPath& path) {
276 fClipType = kPath_ClipType;
277 fPath = path;
278 }
skia.committer@gmail.com1dab4032014-02-05 03:01:48 +0000279
commit-bot@chromium.orgb511be52014-02-04 15:09:16 +0000280 void setRect(const SkRect& rect) {
281 fClipType = kRect_ClipType;
282 fRect = rect;
283 fPath.reset();
284 }
skia.committer@gmail.com1dab4032014-02-05 03:01:48 +0000285
commit-bot@chromium.orgb511be52014-02-04 15:09:16 +0000286 ClipType getType() const { return fClipType; }
skia.committer@gmail.com1dab4032014-02-05 03:01:48 +0000287
commit-bot@chromium.orgb21fac12014-02-07 21:13:11 +0000288 void getBounds(SkRect* bounds) const {
289 switch (fClipType) {
290 case kPath_ClipType:
291 *bounds = fPath.getBounds();
292 break;
293 case kRect_ClipType:
294 *bounds = fRect;
295 break;
296 case kNone_ClipType:
297 SkDEBUGFAIL("Uninitialized Clip.");
298 break;
299 }
300 }
301
commit-bot@chromium.orgb511be52014-02-04 15:09:16 +0000302 private:
303 ClipType fClipType;
304 SkPath fPath;
305 SkRect fRect;
306 };
skia.committer@gmail.com1dab4032014-02-05 03:01:48 +0000307
bsalomonf045d602015-11-18 19:01:12 -0800308 typedef SkTLList<Clip, 1> ClipList;
309 ClipList fClips;
commit-bot@chromium.orga343c842014-01-31 14:48:58 +0000310 SkBitmap fBmp;
311
312 typedef GM INHERITED;
313};
314
halcanary385fe4d2015-08-26 13:07:48 -0700315DEF_GM(return new ConvexPolyClip;)
commit-bot@chromium.orga343c842014-01-31 14:48:58 +0000316}