blob: 518ff82b15e5274465f18fa50af610c64927b136 [file] [log] [blame]
reed@google.com57c49572011-10-31 14:33:35 +00001/*
2 * Copyright 2011 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 "bench/Benchmark.h"
9#include "include/core/SkCanvas.h"
10#include "include/core/SkPath.h"
11#include "include/core/SkRegion.h"
12#include "include/core/SkString.h"
13#include "include/utils/SkRandom.h"
14#include "src/core/SkAAClip.h"
15#include "src/core/SkClipOpPriv.h"
robertphillips@google.com6d62df42012-05-07 18:07:36 +000016
17////////////////////////////////////////////////////////////////////////////////
18// This bench tests out AA/BW clipping via canvas' clipPath and clipRect calls
tfarinaf168b862014-06-19 12:32:29 -070019class AAClipBench : public Benchmark {
robertphillips@google.com6d62df42012-05-07 18:07:36 +000020 SkString fName;
21 SkPath fClipPath;
22 SkRect fClipRect;
23 SkRect fDrawRect;
24 bool fDoPath;
25 bool fDoAA;
26
robertphillips@google.com6d62df42012-05-07 18:07:36 +000027public:
mtklein@google.com410e6e82013-09-13 19:52:27 +000028 AAClipBench(bool doPath, bool doAA)
29 : fDoPath(doPath)
robertphillips@google.com6bb99e32012-05-09 15:48:31 +000030 , fDoAA(doAA) {
robertphillips@google.com6d62df42012-05-07 18:07:36 +000031
32 fName.printf("aaclip_%s_%s",
33 doPath ? "path" : "rect",
34 doAA ? "AA" : "BW");
35
Mike Reed92b33352019-08-24 19:39:13 -040036 fClipRect.setLTRB(10.5f, 10.5f, 50.5f, 50.5f);
Mike Reed4241f5e2019-09-14 19:13:23 +000037 fClipPath.addRoundRect(fClipRect, SkIntToScalar(10), SkIntToScalar(10));
Mike Reed92b33352019-08-24 19:39:13 -040038 fDrawRect.setWH(100, 100);
robertphillips@google.com6d62df42012-05-07 18:07:36 +000039
40 SkASSERT(fClipPath.isConvex());
41 }
42
43protected:
Brian Salomond0072812020-07-21 17:03:56 -040044 const char* onGetName() override { return fName.c_str(); }
45 void onDraw(int loops, SkCanvas* canvas) override {
robertphillips@google.com6d62df42012-05-07 18:07:36 +000046
47 SkPaint paint;
48 this->setupPaint(&paint);
49
commit-bot@chromium.org33614712013-12-03 18:17:16 +000050 for (int i = 0; i < loops; ++i) {
robertphillips@google.com6d62df42012-05-07 18:07:36 +000051 // jostle the clip regions each time to prevent caching
52 fClipRect.offset((i % 2) == 0 ? SkIntToScalar(10) : SkIntToScalar(-10), 0);
53 fClipPath.reset();
Mike Reed4241f5e2019-09-14 19:13:23 +000054 fClipPath.addRoundRect(fClipRect,
55 SkIntToScalar(5), SkIntToScalar(5));
robertphillips@google.com6d62df42012-05-07 18:07:36 +000056 SkASSERT(fClipPath.isConvex());
57
58 canvas->save();
59#if 1
60 if (fDoPath) {
Michael Ludwige4b79692020-09-16 13:55:05 -040061 canvas->clipPath(fClipPath, SkClipOp::kIntersect, fDoAA);
robertphillips@google.com6d62df42012-05-07 18:07:36 +000062 } else {
Michael Ludwige4b79692020-09-16 13:55:05 -040063 canvas->clipRect(fClipRect, SkClipOp::kIntersect, fDoAA);
robertphillips@google.com6d62df42012-05-07 18:07:36 +000064 }
65
66 canvas->drawRect(fDrawRect, paint);
67#else
68 // this path tests out directly draw the clip primitive
69 // use it to comparing just drawing the clip vs. drawing using
70 // the clip
71 if (fDoPath) {
72 canvas->drawPath(fClipPath, paint);
73 } else {
74 canvas->drawRect(fClipRect, paint);
75 }
76#endif
77 canvas->restore();
78 }
79 }
80private:
John Stiles7571f9e2020-09-02 22:42:33 -040081 using INHERITED = Benchmark;
robertphillips@google.com6d62df42012-05-07 18:07:36 +000082};
83
84////////////////////////////////////////////////////////////////////////////////
robertphillips@google.com6bb99e32012-05-09 15:48:31 +000085// This bench tests out nested clip stacks. It is intended to simulate
86// how WebKit nests clips.
tfarinaf168b862014-06-19 12:32:29 -070087class NestedAAClipBench : public Benchmark {
robertphillips@google.com6bb99e32012-05-09 15:48:31 +000088 SkString fName;
89 bool fDoAA;
90 SkRect fDrawRect;
commit-bot@chromium.orge0e7cfe2013-09-09 20:09:12 +000091 SkRandom fRandom;
robertphillips@google.com6bb99e32012-05-09 15:48:31 +000092
robertphillips@google.comb1af07a2012-05-09 16:27:10 +000093 static const int kNestingDepth = 3;
robertphillips@google.com6bb99e32012-05-09 15:48:31 +000094 static const int kImageSize = 400;
95
96 SkPoint fSizes[kNestingDepth+1];
97
98public:
mtklein@google.com410e6e82013-09-13 19:52:27 +000099 NestedAAClipBench(bool doAA) : fDoAA(doAA) {
robertphillips@google.com6bb99e32012-05-09 15:48:31 +0000100 fName.printf("nested_aaclip_%s", doAA ? "AA" : "BW");
101
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000102 fDrawRect = SkRect::MakeLTRB(0, 0,
103 SkIntToScalar(kImageSize),
robertphillips@google.com6bb99e32012-05-09 15:48:31 +0000104 SkIntToScalar(kImageSize));
105
106 fSizes[0].set(SkIntToScalar(kImageSize), SkIntToScalar(kImageSize));
107
108 for (int i = 1; i < kNestingDepth+1; ++i) {
109 fSizes[i].set(fSizes[i-1].fX/2, fSizes[i-1].fY/2);
110 }
111 }
112
113protected:
Brian Salomond0072812020-07-21 17:03:56 -0400114 const char* onGetName() override { return fName.c_str(); }
robertphillips@google.com6bb99e32012-05-09 15:48:31 +0000115
116
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000117 void recurse(SkCanvas* canvas,
robertphillips@google.com6bb99e32012-05-09 15:48:31 +0000118 int depth,
119 const SkPoint& offset) {
120
121 canvas->save();
122
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000123 SkRect temp = SkRect::MakeLTRB(0, 0,
robertphillips@google.com6bb99e32012-05-09 15:48:31 +0000124 fSizes[depth].fX, fSizes[depth].fY);
125 temp.offset(offset);
126
127 SkPath path;
128 path.addRoundRect(temp, SkIntToScalar(3), SkIntToScalar(3));
129 SkASSERT(path.isConvex());
130
Michael Ludwige4b79692020-09-16 13:55:05 -0400131 canvas->clipPath(path, SkClipOp::kIntersect, fDoAA);
robertphillips@google.com6bb99e32012-05-09 15:48:31 +0000132
133 if (kNestingDepth == depth) {
134 // we only draw the draw rect at the lowest nesting level
135 SkPaint paint;
136 paint.setColor(0xff000000 | fRandom.nextU());
137 canvas->drawRect(fDrawRect, paint);
138 } else {
139 SkPoint childOffset = offset;
140 this->recurse(canvas, depth+1, childOffset);
141
142 childOffset += fSizes[depth+1];
143 this->recurse(canvas, depth+1, childOffset);
144
145 childOffset.fX = offset.fX + fSizes[depth+1].fX;
146 childOffset.fY = offset.fY;
147 this->recurse(canvas, depth+1, childOffset);
148
149 childOffset.fX = offset.fX;
150 childOffset.fY = offset.fY + fSizes[depth+1].fY;
151 this->recurse(canvas, depth+1, childOffset);
152 }
153
154 canvas->restore();
155 }
156
Brian Salomond0072812020-07-21 17:03:56 -0400157 void onDraw(int loops, SkCanvas* canvas) override {
robertphillips@google.com6bb99e32012-05-09 15:48:31 +0000158
commit-bot@chromium.org33614712013-12-03 18:17:16 +0000159 for (int i = 0; i < loops; ++i) {
robertphillips@google.com6bb99e32012-05-09 15:48:31 +0000160 SkPoint offset = SkPoint::Make(0, 0);
161 this->recurse(canvas, 0, offset);
162 }
163 }
164
165private:
John Stiles7571f9e2020-09-02 22:42:33 -0400166 using INHERITED = Benchmark;
robertphillips@google.com6bb99e32012-05-09 15:48:31 +0000167};
168
169////////////////////////////////////////////////////////////////////////////////
tfarinaf168b862014-06-19 12:32:29 -0700170class AAClipBuilderBench : public Benchmark {
reed@google.com57c49572011-10-31 14:33:35 +0000171 SkString fName;
172 SkPath fPath;
173 SkRect fRect;
174 SkRegion fRegion;
175 bool fDoPath;
176 bool fDoAA;
177
reed@google.com57c49572011-10-31 14:33:35 +0000178public:
mtklein@google.com410e6e82013-09-13 19:52:27 +0000179 AAClipBuilderBench(bool doPath, bool doAA) {
reed@google.com57c49572011-10-31 14:33:35 +0000180 fDoPath = doPath;
181 fDoAA = doAA;
182
183 fName.printf("aaclip_build_%s_%s", doPath ? "path" : "rect",
184 doAA ? "AA" : "BW");
185
Mike Reed92b33352019-08-24 19:39:13 -0400186 fRegion.setRect({0, 0, 640, 480});
reed@google.com57c49572011-10-31 14:33:35 +0000187 fRect.set(fRegion.getBounds());
188 fRect.inset(SK_Scalar1/4, SK_Scalar1/4);
189 fPath.addRoundRect(fRect, SkIntToScalar(20), SkIntToScalar(20));
190 }
191
192protected:
Brian Salomond0072812020-07-21 17:03:56 -0400193 const char* onGetName() override { return fName.c_str(); }
194 void onDraw(int loops, SkCanvas*) override {
reed@google.com57c49572011-10-31 14:33:35 +0000195 SkPaint paint;
196 this->setupPaint(&paint);
197
commit-bot@chromium.org33614712013-12-03 18:17:16 +0000198 for (int i = 0; i < loops; ++i) {
reed@google.com57c49572011-10-31 14:33:35 +0000199 SkAAClip clip;
200 if (fDoPath) {
201 clip.setPath(fPath, &fRegion, fDoAA);
202 } else {
203 clip.setRect(fRect, fDoAA);
204 }
205 }
206 }
207private:
John Stiles7571f9e2020-09-02 22:42:33 -0400208 using INHERITED = Benchmark;
reed@google.com57c49572011-10-31 14:33:35 +0000209};
210
robertphillips@google.com6d62df42012-05-07 18:07:36 +0000211////////////////////////////////////////////////////////////////////////////////
tfarinaf168b862014-06-19 12:32:29 -0700212class AAClipRegionBench : public Benchmark {
reed@google.coma069c8f2011-11-28 19:54:56 +0000213public:
mtklein@google.com410e6e82013-09-13 19:52:27 +0000214 AAClipRegionBench() {
reed@google.coma069c8f2011-11-28 19:54:56 +0000215 SkPath path;
216 // test conversion of a complex clip to a aaclip
217 path.addCircle(0, 0, SkIntToScalar(200));
218 path.addCircle(0, 0, SkIntToScalar(180));
219 // evenodd means we've constructed basically a stroked circle
Mike Reed7d34dc72019-11-26 12:17:17 -0500220 path.setFillType(SkPathFillType::kEvenOdd);
reed@google.coma069c8f2011-11-28 19:54:56 +0000221
222 SkIRect bounds;
223 path.getBounds().roundOut(&bounds);
224 fRegion.setPath(path, SkRegion(bounds));
225 }
226
227protected:
Brian Salomond0072812020-07-21 17:03:56 -0400228 const char* onGetName() override { return "aaclip_setregion"; }
229 void onDraw(int loops, SkCanvas*) override {
commit-bot@chromium.org33614712013-12-03 18:17:16 +0000230 for (int i = 0; i < loops; ++i) {
reed@google.coma069c8f2011-11-28 19:54:56 +0000231 SkAAClip clip;
232 clip.setRegion(fRegion);
233 }
234 }
235
236private:
reed@google.coma069c8f2011-11-28 19:54:56 +0000237 SkRegion fRegion;
John Stiles7571f9e2020-09-02 22:42:33 -0400238 using INHERITED = Benchmark;
reed@google.coma069c8f2011-11-28 19:54:56 +0000239};
240
robertphillips@google.com6d62df42012-05-07 18:07:36 +0000241////////////////////////////////////////////////////////////////////////////////
reed@google.com57c49572011-10-31 14:33:35 +0000242
halcanary385fe4d2015-08-26 13:07:48 -0700243DEF_BENCH(return new AAClipBuilderBench(false, false);)
244DEF_BENCH(return new AAClipBuilderBench(false, true);)
245DEF_BENCH(return new AAClipBuilderBench(true, false);)
246DEF_BENCH(return new AAClipBuilderBench(true, true);)
247DEF_BENCH(return new AAClipRegionBench();)
248DEF_BENCH(return new AAClipBench(false, false);)
249DEF_BENCH(return new AAClipBench(false, true);)
250DEF_BENCH(return new AAClipBench(true, false);)
251DEF_BENCH(return new AAClipBench(true, true);)
252DEF_BENCH(return new NestedAAClipBench(false);)
253DEF_BENCH(return new NestedAAClipBench(true);)