blob: ba1d66a42ef32344685e4ec46d138800e054f10d [file] [log] [blame]
reed@google.com4aa1a702012-05-04 16:37:45 +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 */
tfarinaf168b862014-06-19 12:32:29 -07007#include "Benchmark.h"
reed@google.com4aa1a702012-05-04 16:37:45 +00008#include "SkBitmap.h"
9#include "SkCanvas.h"
10#include "SkDashPathEffect.h"
11#include "SkPaint.h"
12#include "SkPath.h"
13#include "SkRandom.h"
14#include "SkString.h"
halcanary435657f2015-09-15 12:53:07 -070015#include "SkStrokeRec.h"
reed@google.com4aa1a702012-05-04 16:37:45 +000016#include "SkTDArray.h"
17
reed@google.comef85e3c2012-05-10 15:40:57 +000018
reed@google.com4aa1a702012-05-04 16:37:45 +000019/*
20 * Cases to consider:
21 *
22 * 1. antialiasing on/off (esp. width <= 1)
23 * 2. strokewidth == 0, 1, 2
24 * 3. hline, vline, diagonal, rect, oval
25 * 4. dots [1,1] ([N,N] where N=strokeWidth?) or arbitrary (e.g. [2,1] or [1,2,3,2])
26 */
27static void path_hline(SkPath* path) {
28 path->moveTo(SkIntToScalar(10), SkIntToScalar(10));
29 path->lineTo(SkIntToScalar(600), SkIntToScalar(10));
30}
31
tfarinaf168b862014-06-19 12:32:29 -070032class DashBench : public Benchmark {
reed@google.comef85e3c2012-05-10 15:40:57 +000033protected:
mike@reedtribe.org99a6ef42012-05-05 13:46:10 +000034 SkString fName;
reed@google.com4aa1a702012-05-04 16:37:45 +000035 SkTDArray<SkScalar> fIntervals;
mike@reedtribe.org99a6ef42012-05-05 13:46:10 +000036 int fWidth;
reed@google.coma584aed2012-05-16 14:06:02 +000037 SkPoint fPts[2];
38 bool fDoClip;
reed@google.com4aa1a702012-05-04 16:37:45 +000039
reed@google.com4aa1a702012-05-04 16:37:45 +000040public:
mtklein@google.com410e6e82013-09-13 19:52:27 +000041 DashBench(const SkScalar intervals[], int count, int width,
42 bool doClip = false) {
reed@google.com4aa1a702012-05-04 16:37:45 +000043 fIntervals.append(count, intervals);
mike@reedtribe.org99a6ef42012-05-05 13:46:10 +000044 for (int i = 0; i < count; ++i) {
45 fIntervals[i] *= width;
46 }
47 fWidth = width;
reed@google.com4ad22752012-05-15 19:50:58 +000048 fName.printf("dash_%d_%s", width, doClip ? "clipped" : "noclip");
49 fDoClip = doClip;
rmistry@google.comfbfcd562012-08-23 18:09:54 +000050
reed@google.coma584aed2012-05-16 14:06:02 +000051 fPts[0].set(SkIntToScalar(10), SkIntToScalar(10));
52 fPts[1].set(SkIntToScalar(600), SkIntToScalar(10));
reed@google.com4aa1a702012-05-04 16:37:45 +000053 }
54
55 virtual void makePath(SkPath* path) {
56 path_hline(path);
57 }
58
59protected:
mtklein36352bf2015-03-25 18:17:31 -070060 const char* onGetName() override {
mike@reedtribe.org99a6ef42012-05-05 13:46:10 +000061 return fName.c_str();
reed@google.com4aa1a702012-05-04 16:37:45 +000062 }
63
mtkleina1ebeb22015-10-01 09:43:39 -070064 void onDraw(int loops, SkCanvas* canvas) override {
reed@google.com4aa1a702012-05-04 16:37:45 +000065 SkPaint paint;
66 this->setupPaint(&paint);
67 paint.setStyle(SkPaint::kStroke_Style);
mike@reedtribe.org99a6ef42012-05-05 13:46:10 +000068 paint.setStrokeWidth(SkIntToScalar(fWidth));
reed@google.com4aa1a702012-05-04 16:37:45 +000069 paint.setAntiAlias(false);
70
71 SkPath path;
72 this->makePath(&path);
73
reeda4393342016-03-18 11:22:57 -070074 paint.setPathEffect(SkDashPathEffect::Make(fIntervals.begin(), fIntervals.count(), 0));
reed@google.com4ad22752012-05-15 19:50:58 +000075
76 if (fDoClip) {
77 SkRect r = path.getBounds();
78 r.inset(-SkIntToScalar(20), -SkIntToScalar(20));
79 // now move it so we don't intersect
80 r.offset(0, r.height() * 3 / 2);
81 canvas->clipRect(r);
82 }
83
commit-bot@chromium.org33614712013-12-03 18:17:16 +000084 this->handlePath(canvas, path, paint, loops);
reed@google.comef85e3c2012-05-10 15:40:57 +000085 }
86
87 virtual void handlePath(SkCanvas* canvas, const SkPath& path,
88 const SkPaint& paint, int N) {
reed@google.com4aa1a702012-05-04 16:37:45 +000089 for (int i = 0; i < N; ++i) {
reed@google.coma584aed2012-05-16 14:06:02 +000090// canvas->drawPoints(SkCanvas::kLines_PointMode, 2, fPts, paint);
reed@google.com4aa1a702012-05-04 16:37:45 +000091 canvas->drawPath(path, paint);
92 }
93 }
94
95private:
tfarinaf168b862014-06-19 12:32:29 -070096 typedef Benchmark INHERITED;
reed@google.com4aa1a702012-05-04 16:37:45 +000097};
98
reed@google.comef85e3c2012-05-10 15:40:57 +000099class RectDashBench : public DashBench {
100public:
mtklein@google.com410e6e82013-09-13 19:52:27 +0000101 RectDashBench(const SkScalar intervals[], int count, int width)
102 : INHERITED(intervals, count, width) {
reed@google.comef85e3c2012-05-10 15:40:57 +0000103 fName.append("_rect");
104 }
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000105
reed@google.comef85e3c2012-05-10 15:40:57 +0000106protected:
107 virtual void handlePath(SkCanvas* canvas, const SkPath& path,
mtklein36352bf2015-03-25 18:17:31 -0700108 const SkPaint& paint, int N) override {
reed@google.comef85e3c2012-05-10 15:40:57 +0000109 SkPoint pts[2];
110 if (!path.isLine(pts) || pts[0].fY != pts[1].fY) {
111 this->INHERITED::handlePath(canvas, path, paint, N);
112 } else {
113 SkRect rect;
114 rect.fLeft = pts[0].fX;
115 rect.fTop = pts[0].fY - paint.getStrokeWidth() / 2;
116 rect.fRight = rect.fLeft + SkIntToScalar(fWidth);
117 rect.fBottom = rect.fTop + paint.getStrokeWidth();
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000118
reed@google.comef85e3c2012-05-10 15:40:57 +0000119 SkPaint p(paint);
120 p.setStyle(SkPaint::kFill_Style);
halcanary96fcdcc2015-08-27 07:41:13 -0700121 p.setPathEffect(nullptr);
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000122
reed@google.comef85e3c2012-05-10 15:40:57 +0000123 int count = SkScalarRoundToInt((pts[1].fX - pts[0].fX) / (2*fWidth));
124 SkScalar dx = SkIntToScalar(2 * fWidth);
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000125
reed@google.comef85e3c2012-05-10 15:40:57 +0000126 for (int i = 0; i < N*10; ++i) {
127 SkRect r = rect;
128 for (int j = 0; j < count; ++j) {
129 canvas->drawRect(r, p);
130 r.offset(dx, 0);
131 }
132 }
133 }
134 }
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000135
reed@google.comef85e3c2012-05-10 15:40:57 +0000136private:
137 typedef DashBench INHERITED;
138};
139
reed@google.comea6f6832012-05-18 18:32:54 +0000140static void make_unit_star(SkPath* path, int n) {
141 SkScalar rad = -SK_ScalarPI / 2;
142 const SkScalar drad = (n >> 1) * SK_ScalarPI * 2 / n;
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000143
reed@google.comea6f6832012-05-18 18:32:54 +0000144 path->moveTo(0, -SK_Scalar1);
145 for (int i = 1; i < n; i++) {
146 rad += drad;
147 SkScalar cosV, sinV = SkScalarSinCos(rad, &cosV);
148 path->lineTo(cosV, sinV);
149 }
150 path->close();
151}
152
153static void make_poly(SkPath* path) {
154 make_unit_star(path, 9);
robertphillips1d24b8d2015-03-26 19:57:08 -0700155 const SkMatrix matrix = SkMatrix::MakeScale(SkIntToScalar(100), SkIntToScalar(100));
reed@google.comea6f6832012-05-18 18:32:54 +0000156 path->transform(matrix);
157}
158
159static void make_quad(SkPath* path) {
160 SkScalar x0 = SkIntToScalar(10);
161 SkScalar y0 = SkIntToScalar(10);
162 path->moveTo(x0, y0);
163 path->quadTo(x0, y0 + 400 * SK_Scalar1,
164 x0 + 600 * SK_Scalar1, y0 + 400 * SK_Scalar1);
165}
166
167static void make_cubic(SkPath* path) {
168 SkScalar x0 = SkIntToScalar(10);
169 SkScalar y0 = SkIntToScalar(10);
170 path->moveTo(x0, y0);
171 path->cubicTo(x0, y0 + 400 * SK_Scalar1,
172 x0 + 600 * SK_Scalar1, y0 + 400 * SK_Scalar1,
173 x0 + 600 * SK_Scalar1, y0);
174}
175
tfarinaf168b862014-06-19 12:32:29 -0700176class MakeDashBench : public Benchmark {
reed@google.comea6f6832012-05-18 18:32:54 +0000177 SkString fName;
178 SkPath fPath;
reeda4393342016-03-18 11:22:57 -0700179 sk_sp<SkPathEffect> fPE;
skia.committer@gmail.com73bb3be2012-09-05 02:01:29 +0000180
reed@google.comea6f6832012-05-18 18:32:54 +0000181public:
mtklein@google.com410e6e82013-09-13 19:52:27 +0000182 MakeDashBench(void (*proc)(SkPath*), const char name[]) {
reed@google.comea6f6832012-05-18 18:32:54 +0000183 fName.printf("makedash_%s", name);
184 proc(&fPath);
skia.committer@gmail.com73bb3be2012-09-05 02:01:29 +0000185
reed@google.comea6f6832012-05-18 18:32:54 +0000186 SkScalar vals[] = { SkIntToScalar(4), SkIntToScalar(4) };
reeda4393342016-03-18 11:22:57 -0700187 fPE = SkDashPathEffect::Make(vals, 2, 0);
reed@google.comea6f6832012-05-18 18:32:54 +0000188 }
skia.committer@gmail.com73bb3be2012-09-05 02:01:29 +0000189
reed@google.comea6f6832012-05-18 18:32:54 +0000190protected:
mtklein36352bf2015-03-25 18:17:31 -0700191 const char* onGetName() override {
reed@google.comea6f6832012-05-18 18:32:54 +0000192 return fName.c_str();
193 }
skia.committer@gmail.com73bb3be2012-09-05 02:01:29 +0000194
mtkleina1ebeb22015-10-01 09:43:39 -0700195 void onDraw(int loops, SkCanvas*) override {
reed@google.comea6f6832012-05-18 18:32:54 +0000196 SkPath dst;
commit-bot@chromium.org33614712013-12-03 18:17:16 +0000197 for (int i = 0; i < loops; ++i) {
reed@google.comfd4be262012-05-25 01:04:12 +0000198 SkStrokeRec rec(SkStrokeRec::kHairline_InitStyle);
skia.committer@gmail.com73bb3be2012-09-05 02:01:29 +0000199
halcanary96fcdcc2015-08-27 07:41:13 -0700200 fPE->filterPath(&dst, fPath, &rec, nullptr);
reed@google.comea6f6832012-05-18 18:32:54 +0000201 dst.rewind();
202 }
203 }
skia.committer@gmail.com73bb3be2012-09-05 02:01:29 +0000204
reed@google.com31e9d642012-09-04 20:07:23 +0000205private:
tfarinaf168b862014-06-19 12:32:29 -0700206 typedef Benchmark INHERITED;
reed@google.com31e9d642012-09-04 20:07:23 +0000207};
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000208
reed@google.com5125d842012-09-04 20:19:35 +0000209/*
210 * We try to special case square dashes (intervals are equal to strokewidth).
211 */
tfarinaf168b862014-06-19 12:32:29 -0700212class DashLineBench : public Benchmark {
reed@google.com31e9d642012-09-04 20:07:23 +0000213 SkString fName;
reed@google.com5125d842012-09-04 20:19:35 +0000214 SkScalar fStrokeWidth;
215 bool fIsRound;
reeda4393342016-03-18 11:22:57 -0700216 sk_sp<SkPathEffect> fPE;
skia.committer@gmail.com73bb3be2012-09-05 02:01:29 +0000217
reed@google.com31e9d642012-09-04 20:07:23 +0000218public:
mtklein@google.com410e6e82013-09-13 19:52:27 +0000219 DashLineBench(SkScalar width, bool isRound) {
reed@google.com5125d842012-09-04 20:19:35 +0000220 fName.printf("dashline_%g_%s", SkScalarToFloat(width), isRound ? "circle" : "square");
221 fStrokeWidth = width;
222 fIsRound = isRound;
skia.committer@gmail.com73bb3be2012-09-05 02:01:29 +0000223
reed@google.com5125d842012-09-04 20:19:35 +0000224 SkScalar vals[] = { SK_Scalar1, SK_Scalar1 };
reeda4393342016-03-18 11:22:57 -0700225 fPE = SkDashPathEffect::Make(vals, 2, 0);
reed@google.com31e9d642012-09-04 20:07:23 +0000226 }
skia.committer@gmail.com73bb3be2012-09-05 02:01:29 +0000227
reed@google.com31e9d642012-09-04 20:07:23 +0000228protected:
mtklein36352bf2015-03-25 18:17:31 -0700229 const char* onGetName() override {
reed@google.com31e9d642012-09-04 20:07:23 +0000230 return fName.c_str();
231 }
skia.committer@gmail.com73bb3be2012-09-05 02:01:29 +0000232
mtkleina1ebeb22015-10-01 09:43:39 -0700233 void onDraw(int loops, SkCanvas* canvas) override {
reed@google.com31e9d642012-09-04 20:07:23 +0000234 SkPaint paint;
235 this->setupPaint(&paint);
reed@google.com5125d842012-09-04 20:19:35 +0000236 paint.setStrokeWidth(fStrokeWidth);
237 paint.setStrokeCap(fIsRound ? SkPaint::kRound_Cap : SkPaint::kSquare_Cap);
reed@google.com31e9d642012-09-04 20:07:23 +0000238 paint.setPathEffect(fPE);
commit-bot@chromium.org33614712013-12-03 18:17:16 +0000239 for (int i = 0; i < loops; ++i) {
reed@google.com5125d842012-09-04 20:19:35 +0000240 canvas->drawLine(10 * SK_Scalar1, 10 * SK_Scalar1,
241 640 * SK_Scalar1, 10 * SK_Scalar1, paint);
reed@google.com31e9d642012-09-04 20:07:23 +0000242 }
243 }
skia.committer@gmail.com73bb3be2012-09-05 02:01:29 +0000244
reed@google.comea6f6832012-05-18 18:32:54 +0000245private:
tfarinaf168b862014-06-19 12:32:29 -0700246 typedef Benchmark INHERITED;
reed@google.comea6f6832012-05-18 18:32:54 +0000247};
248
tfarinaf168b862014-06-19 12:32:29 -0700249class DrawPointsDashingBench : public Benchmark {
robertphillips@google.com935ad022012-12-05 19:07:21 +0000250 SkString fName;
251 int fStrokeWidth;
robertphillips@google.comca47aae2012-12-12 15:58:25 +0000252 bool fDoAA;
robertphillips@google.com935ad022012-12-05 19:07:21 +0000253
reeda4393342016-03-18 11:22:57 -0700254 sk_sp<SkPathEffect> fPathEffect;
robertphillips@google.com935ad022012-12-05 19:07:21 +0000255
robertphillips@google.com935ad022012-12-05 19:07:21 +0000256public:
mtklein@google.com410e6e82013-09-13 19:52:27 +0000257 DrawPointsDashingBench(int dashLength, int strokeWidth, bool doAA)
258 {
robertphillips@google.com935ad022012-12-05 19:07:21 +0000259 fName.printf("drawpointsdash_%d_%d%s", dashLength, strokeWidth, doAA ? "_aa" : "_bw");
260 fStrokeWidth = strokeWidth;
robertphillips@google.comca47aae2012-12-12 15:58:25 +0000261 fDoAA = doAA;
robertphillips@google.com935ad022012-12-05 19:07:21 +0000262
263 SkScalar vals[] = { SkIntToScalar(dashLength), SkIntToScalar(dashLength) };
reeda4393342016-03-18 11:22:57 -0700264 fPathEffect = SkDashPathEffect::Make(vals, 2, SK_Scalar1);
robertphillips@google.com935ad022012-12-05 19:07:21 +0000265 }
266
267protected:
mtklein36352bf2015-03-25 18:17:31 -0700268 const char* onGetName() override {
robertphillips@google.com935ad022012-12-05 19:07:21 +0000269 return fName.c_str();
270 }
271
mtkleina1ebeb22015-10-01 09:43:39 -0700272 void onDraw(int loops, SkCanvas* canvas) override {
robertphillips@google.com935ad022012-12-05 19:07:21 +0000273 SkPaint p;
274 this->setupPaint(&p);
275 p.setColor(SK_ColorBLACK);
276 p.setStyle(SkPaint::kStroke_Style);
277 p.setStrokeWidth(SkIntToScalar(fStrokeWidth));
278 p.setPathEffect(fPathEffect);
robertphillips@google.comca47aae2012-12-12 15:58:25 +0000279 p.setAntiAlias(fDoAA);
robertphillips@google.com935ad022012-12-05 19:07:21 +0000280
281 SkPoint pts[2] = {
282 { SkIntToScalar(10), 0 },
283 { SkIntToScalar(640), 0 }
284 };
285
commit-bot@chromium.org33614712013-12-03 18:17:16 +0000286 for (int i = 0; i < loops; ++i) {
robertphillips@google.com935ad022012-12-05 19:07:21 +0000287 pts[0].fY = pts[1].fY = SkIntToScalar(i % 480);
288 canvas->drawPoints(SkCanvas::kLines_PointMode, 2, pts, p);
289 }
290 }
291
292private:
tfarinaf168b862014-06-19 12:32:29 -0700293 typedef Benchmark INHERITED;
robertphillips@google.com935ad022012-12-05 19:07:21 +0000294};
reed@google.com996f64f2013-01-24 17:17:28 +0000295
reed@google.come5ceea92013-01-24 17:33:21 +0000296// Want to test how we handle dashing when 99% of the dash is clipped out
tfarinaf168b862014-06-19 12:32:29 -0700297class GiantDashBench : public Benchmark {
reed@google.com996f64f2013-01-24 17:17:28 +0000298 SkString fName;
reed@google.come5ceea92013-01-24 17:33:21 +0000299 SkScalar fStrokeWidth;
reed@google.com996f64f2013-01-24 17:17:28 +0000300 SkPoint fPts[2];
reeda4393342016-03-18 11:22:57 -0700301 sk_sp<SkPathEffect> fPathEffect;
skia.committer@gmail.com4024f322013-01-25 07:06:46 +0000302
reed@google.com996f64f2013-01-24 17:17:28 +0000303public:
304 enum LineType {
305 kHori_LineType,
306 kVert_LineType,
commit-bot@chromium.org5d7ca952013-04-22 20:26:44 +0000307 kDiag_LineType,
308 kLineTypeCount
reed@google.com996f64f2013-01-24 17:17:28 +0000309 };
310
311 static const char* LineTypeName(LineType lt) {
312 static const char* gNames[] = { "hori", "vert", "diag" };
bungeman99fe8222015-08-20 07:57:51 -0700313 static_assert(kLineTypeCount == SK_ARRAY_COUNT(gNames), "names_wrong_size");
reed@google.com996f64f2013-01-24 17:17:28 +0000314 return gNames[lt];
315 }
316
mtklein@google.com410e6e82013-09-13 19:52:27 +0000317 GiantDashBench(LineType lt, SkScalar width) {
reed@google.come5ceea92013-01-24 17:33:21 +0000318 fName.printf("giantdashline_%s_%g", LineTypeName(lt), width);
319 fStrokeWidth = width;
320
reed@google.com996f64f2013-01-24 17:17:28 +0000321 // deliberately pick intervals that won't be caught by asPoints(), so
322 // we can test the filterPath code-path.
commit-bot@chromium.orgae4976c2014-05-01 15:30:52 +0000323 const SkScalar intervals[] = { 20, 10, 10, 10 };
reeda4393342016-03-18 11:22:57 -0700324 fPathEffect = SkDashPathEffect::Make(intervals, SK_ARRAY_COUNT(intervals), 0);
reed@google.com996f64f2013-01-24 17:17:28 +0000325
326 SkScalar cx = 640 / 2; // center X
327 SkScalar cy = 480 / 2; // center Y
328 SkMatrix matrix;
skia.committer@gmail.com4024f322013-01-25 07:06:46 +0000329
reed@google.com996f64f2013-01-24 17:17:28 +0000330 switch (lt) {
331 case kHori_LineType:
332 matrix.setIdentity();
333 break;
334 case kVert_LineType:
335 matrix.setRotate(90, cx, cy);
336 break;
337 case kDiag_LineType:
338 matrix.setRotate(45, cx, cy);
339 break;
commit-bot@chromium.org5d7ca952013-04-22 20:26:44 +0000340 case kLineTypeCount:
341 // Not a real enum value.
342 break;
reed@google.com996f64f2013-01-24 17:17:28 +0000343 }
skia.committer@gmail.com4024f322013-01-25 07:06:46 +0000344
reed@google.come5ceea92013-01-24 17:33:21 +0000345 const SkScalar overshoot = 100*1000;
reed@google.com996f64f2013-01-24 17:17:28 +0000346 const SkPoint pts[2] = {
347 { -overshoot, cy }, { 640 + overshoot, cy }
348 };
349 matrix.mapPoints(fPts, pts, 2);
350 }
skia.committer@gmail.com4024f322013-01-25 07:06:46 +0000351
reed@google.com996f64f2013-01-24 17:17:28 +0000352protected:
mtklein36352bf2015-03-25 18:17:31 -0700353 const char* onGetName() override {
reed@google.com996f64f2013-01-24 17:17:28 +0000354 return fName.c_str();
355 }
skia.committer@gmail.com4024f322013-01-25 07:06:46 +0000356
mtkleina1ebeb22015-10-01 09:43:39 -0700357 void onDraw(int loops, SkCanvas* canvas) override {
reed@google.com996f64f2013-01-24 17:17:28 +0000358 SkPaint p;
359 this->setupPaint(&p);
360 p.setStyle(SkPaint::kStroke_Style);
reed@google.come5ceea92013-01-24 17:33:21 +0000361 p.setStrokeWidth(fStrokeWidth);
reed@google.com996f64f2013-01-24 17:17:28 +0000362 p.setPathEffect(fPathEffect);
363
commit-bot@chromium.org33614712013-12-03 18:17:16 +0000364 for (int i = 0; i < loops; i++) {
mtklein@google.comc2897432013-09-10 19:23:38 +0000365 canvas->drawPoints(SkCanvas::kLines_PointMode, 2, fPts, p);
366 }
reed@google.com996f64f2013-01-24 17:17:28 +0000367 }
skia.committer@gmail.com4024f322013-01-25 07:06:46 +0000368
reed@google.com996f64f2013-01-24 17:17:28 +0000369private:
tfarinaf168b862014-06-19 12:32:29 -0700370 typedef Benchmark INHERITED;
reed@google.com996f64f2013-01-24 17:17:28 +0000371};
372
egdaniel05bb6f12014-06-04 08:15:31 -0700373// Want to test how we draw a dashed grid (like what is used in spreadsheets) of many
374// small dashed lines switching back and forth between horizontal and vertical
tfarinaf168b862014-06-19 12:32:29 -0700375class DashGridBench : public Benchmark {
egdaniel05bb6f12014-06-04 08:15:31 -0700376 SkString fName;
377 int fStrokeWidth;
378 bool fDoAA;
379
reeda4393342016-03-18 11:22:57 -0700380 sk_sp<SkPathEffect> fPathEffect;
egdaniel05bb6f12014-06-04 08:15:31 -0700381
382public:
383 DashGridBench(int dashLength, int strokeWidth, bool doAA) {
384 fName.printf("dashgrid_%d_%d%s", dashLength, strokeWidth, doAA ? "_aa" : "_bw");
385 fStrokeWidth = strokeWidth;
386 fDoAA = doAA;
387
388 SkScalar vals[] = { SkIntToScalar(dashLength), SkIntToScalar(dashLength) };
reeda4393342016-03-18 11:22:57 -0700389 fPathEffect = SkDashPathEffect::Make(vals, 2, SK_Scalar1);
egdaniel05bb6f12014-06-04 08:15:31 -0700390 }
391
392protected:
mtklein36352bf2015-03-25 18:17:31 -0700393 const char* onGetName() override {
egdaniel05bb6f12014-06-04 08:15:31 -0700394 return fName.c_str();
395 }
396
mtkleina1ebeb22015-10-01 09:43:39 -0700397 void onDraw(int loops, SkCanvas* canvas) override {
egdaniel05bb6f12014-06-04 08:15:31 -0700398 SkPaint p;
399 this->setupPaint(&p);
400 p.setColor(SK_ColorBLACK);
401 p.setStyle(SkPaint::kStroke_Style);
402 p.setStrokeWidth(SkIntToScalar(fStrokeWidth));
403 p.setPathEffect(fPathEffect);
404 p.setAntiAlias(fDoAA);
405
406 SkPoint pts[4] = {
407 { SkIntToScalar(0), 20.5f },
408 { SkIntToScalar(20), 20.5f },
409 { 20.5f, SkIntToScalar(0) },
410 { 20.5f, SkIntToScalar(20) }
411 };
412
413 for (int i = 0; i < loops; ++i) {
414 for (int j = 0; j < 10; ++j) {
415 for (int k = 0; k < 10; ++k) {
416 // Horizontal line
417 SkPoint horPts[2];
418 horPts[0].fX = pts[0].fX + k * 22.f;
419 horPts[0].fY = pts[0].fY + j * 22.f;
420 horPts[1].fX = pts[1].fX + k * 22.f;
421 horPts[1].fY = pts[1].fY + j * 22.f;
422 canvas->drawPoints(SkCanvas::kLines_PointMode, 2, horPts, p);
423
424 // Vertical line
425 SkPoint vertPts[2];
426 vertPts[0].fX = pts[2].fX + k * 22.f;
427 vertPts[0].fY = pts[2].fY + j * 22.f;
428 vertPts[1].fX = pts[3].fX + k * 22.f;
429 vertPts[1].fY = pts[3].fY + j * 22.f;
430 canvas->drawPoints(SkCanvas::kLines_PointMode, 2, vertPts, p);
431 }
432 }
433 }
434 }
435
436private:
tfarinaf168b862014-06-19 12:32:29 -0700437 typedef Benchmark INHERITED;
egdaniel05bb6f12014-06-04 08:15:31 -0700438};
reed@google.com996f64f2013-01-24 17:17:28 +0000439
reed@google.com4aa1a702012-05-04 16:37:45 +0000440///////////////////////////////////////////////////////////////////////////////
441
442static const SkScalar gDots[] = { SK_Scalar1, SK_Scalar1 };
443
444#define PARAM(array) array, SK_ARRAY_COUNT(array)
445
mtklein@google.com410e6e82013-09-13 19:52:27 +0000446DEF_BENCH( return new DashBench(PARAM(gDots), 0); )
447DEF_BENCH( return new DashBench(PARAM(gDots), 1); )
448DEF_BENCH( return new DashBench(PARAM(gDots), 1, true); )
449DEF_BENCH( return new DashBench(PARAM(gDots), 4); )
450DEF_BENCH( return new MakeDashBench(make_poly, "poly"); )
451DEF_BENCH( return new MakeDashBench(make_quad, "quad"); )
452DEF_BENCH( return new MakeDashBench(make_cubic, "cubic"); )
453DEF_BENCH( return new DashLineBench(0, false); )
454DEF_BENCH( return new DashLineBench(SK_Scalar1, false); )
455DEF_BENCH( return new DashLineBench(2 * SK_Scalar1, false); )
456DEF_BENCH( return new DashLineBench(0, true); )
457DEF_BENCH( return new DashLineBench(SK_Scalar1, true); )
458DEF_BENCH( return new DashLineBench(2 * SK_Scalar1, true); )
reed@google.com4aa1a702012-05-04 16:37:45 +0000459
mtklein@google.com410e6e82013-09-13 19:52:27 +0000460DEF_BENCH( return new DrawPointsDashingBench(1, 1, false); )
461DEF_BENCH( return new DrawPointsDashingBench(1, 1, true); )
462DEF_BENCH( return new DrawPointsDashingBench(3, 1, false); )
463DEF_BENCH( return new DrawPointsDashingBench(3, 1, true); )
464DEF_BENCH( return new DrawPointsDashingBench(5, 5, false); )
465DEF_BENCH( return new DrawPointsDashingBench(5, 5, true); )
reed@google.com996f64f2013-01-24 17:17:28 +0000466
djsollen@google.com69feaca2013-07-18 17:22:30 +0000467/* Disable the GiantDashBench for Android devices until we can better control
468 * the memory usage. (https://code.google.com/p/skia/issues/detail?id=1430)
469 */
470#ifndef SK_BUILD_FOR_ANDROID
mtklein@google.com410e6e82013-09-13 19:52:27 +0000471DEF_BENCH( return new GiantDashBench(GiantDashBench::kHori_LineType, 0); )
472DEF_BENCH( return new GiantDashBench(GiantDashBench::kVert_LineType, 0); )
473DEF_BENCH( return new GiantDashBench(GiantDashBench::kDiag_LineType, 0); )
reed@google.come5ceea92013-01-24 17:33:21 +0000474
475// pass 2 to explicitly avoid any 1-is-the-same-as-hairline special casing
476
477// hori_2 is just too slow to enable at the moment
mtklein@google.com410e6e82013-09-13 19:52:27 +0000478DEF_BENCH( return new GiantDashBench(GiantDashBench::kHori_LineType, 2); )
479DEF_BENCH( return new GiantDashBench(GiantDashBench::kVert_LineType, 2); )
480DEF_BENCH( return new GiantDashBench(GiantDashBench::kDiag_LineType, 2); )
egdaniel05bb6f12014-06-04 08:15:31 -0700481
482DEF_BENCH( return new DashGridBench(1, 1, true); )
483DEF_BENCH( return new DashGridBench(1, 1, false); )
484DEF_BENCH( return new DashGridBench(3, 1, true); )
485DEF_BENCH( return new DashGridBench(3, 1, false); )
djsollen@google.com69feaca2013-07-18 17:22:30 +0000486#endif