blob: 680bb271e180e69b2a88fab1730c9f93d72dcfbf [file] [log] [blame]
robertphillips@google.com6670ab92013-05-09 19:03:48 +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 */
7
Mike Kleinc0bd9f92019-04-23 12:05:21 -05008#include "bench/Benchmark.h"
9#include "include/core/SkBitmap.h"
10#include "include/core/SkCanvas.h"
Mike Reed46f5c5f2020-02-20 15:42:29 -050011#include "include/core/SkM44.h"
Mike Kleinc0bd9f92019-04-23 12:05:21 -050012#include "include/core/SkPaint.h"
13#include "include/core/SkShader.h"
14#include "include/core/SkString.h"
15#include "include/core/SkVertices.h"
16#include "include/utils/SkRandom.h"
robertphillips@google.com6670ab92013-05-09 19:03:48 +000017
robertphillips@google.com6670ab92013-05-09 19:03:48 +000018// This bench simulates the calls Skia sees from various HTML5 canvas
19// game bench marks
tfarinaf168b862014-06-19 12:32:29 -070020class GameBench : public Benchmark {
robertphillips@google.com6670ab92013-05-09 19:03:48 +000021public:
22 enum Type {
skia.committer@gmail.com0f20a3f2013-05-10 07:01:04 +000023 kScale_Type,
24 kTranslate_Type,
robertphillips@google.com6670ab92013-05-09 19:03:48 +000025 kRotate_Type
26 };
27
robertphillips@google.comf865be32013-05-31 13:27:02 +000028 enum Clear {
29 kFull_Clear,
30 kPartial_Clear
31 };
32
mtklein@google.com410e6e82013-09-13 19:52:27 +000033 GameBench(Type type, Clear clear,
robertphillips@google.com631a59b2013-07-31 14:57:53 +000034 bool aligned = false, bool useAtlas = false,
35 bool useDrawVertices = false)
mtklein@google.com410e6e82013-09-13 19:52:27 +000036 : fType(type)
robertphillips@google.comf865be32013-05-31 13:27:02 +000037 , fClear(clear)
robertphillips@google.com347fd4e2013-05-15 14:18:32 +000038 , fAligned(aligned)
robertphillips@google.comf865be32013-05-31 13:27:02 +000039 , fUseAtlas(useAtlas)
robertphillips@google.com631a59b2013-07-31 14:57:53 +000040 , fUseDrawVertices(useDrawVertices)
robertphillips@google.com6670ab92013-05-09 19:03:48 +000041 , fName("game")
42 , fNumSaved(0)
43 , fInitialized(false) {
44
45 switch (fType) {
46 case kScale_Type:
47 fName.append("_scale");
48 break;
49 case kTranslate_Type:
50 fName.append("_trans");
51 break;
52 case kRotate_Type:
53 fName.append("_rot");
54 break;
Brian Salomon23356442018-11-30 15:33:19 -050055 }
robertphillips@google.com6670ab92013-05-09 19:03:48 +000056
robertphillips@google.com347fd4e2013-05-15 14:18:32 +000057 if (aligned) {
58 fName.append("_aligned");
59 }
60
robertphillips@google.comf865be32013-05-31 13:27:02 +000061 if (kPartial_Clear == clear) {
robertphillips@google.com6670ab92013-05-09 19:03:48 +000062 fName.append("_partial");
63 } else {
64 fName.append("_full");
65 }
66
robertphillips@google.comf865be32013-05-31 13:27:02 +000067 if (useAtlas) {
68 fName.append("_atlas");
69 }
70
robertphillips@google.com631a59b2013-07-31 14:57:53 +000071 if (useDrawVertices) {
72 fName.append("_drawVerts");
73 }
74
robertphillips@google.com6670ab92013-05-09 19:03:48 +000075 // It's HTML 5 canvas, so always AA
76 fName.append("_aa");
77 }
78
79protected:
mtklein36352bf2015-03-25 18:17:31 -070080 const char* onGetName() override {
robertphillips@google.comf865be32013-05-31 13:27:02 +000081 return fName.c_str();
robertphillips@google.com6670ab92013-05-09 19:03:48 +000082 }
83
joshualitt8a6697a2015-09-30 12:11:07 -070084 void onDelayedSetup() override {
robertphillips@google.com6670ab92013-05-09 19:03:48 +000085 if (!fInitialized) {
86 this->makeCheckerboard();
robertphillips@google.comf865be32013-05-31 13:27:02 +000087 this->makeAtlas();
robertphillips@google.com6670ab92013-05-09 19:03:48 +000088 fInitialized = true;
89 }
90 }
91
mtkleina1ebeb22015-10-01 09:43:39 -070092 void onDraw(int loops, SkCanvas* canvas) override {
commit-bot@chromium.orge0e7cfe2013-09-09 20:09:12 +000093 SkRandom scaleRand;
94 SkRandom transRand;
95 SkRandom rotRand;
robertphillips@google.com6670ab92013-05-09 19:03:48 +000096
robertphillips@google.comf865be32013-05-31 13:27:02 +000097 int width, height;
98 if (fUseAtlas) {
99 width = kAtlasCellWidth;
100 height = kAtlasCellHeight;
101 } else {
102 width = kCheckerboardWidth;
103 height = kCheckerboardHeight;
104 }
105
robertphillips@google.com6670ab92013-05-09 19:03:48 +0000106 SkPaint clearPaint;
107 clearPaint.setColor(0xFF000000);
108 clearPaint.setAntiAlias(true);
109
Mike Reed3661bc92017-02-22 13:21:42 -0500110 SkISize size = canvas->getBaseLayerSize();
robertphillips@google.com6670ab92013-05-09 19:03:48 +0000111
112 SkScalar maxTransX, maxTransY;
113
114 if (kScale_Type == fType) {
robertphillips@google.comf865be32013-05-31 13:27:02 +0000115 maxTransX = size.fWidth - (1.5f * width);
116 maxTransY = size.fHeight - (1.5f * height);
robertphillips@google.com6670ab92013-05-09 19:03:48 +0000117 } else if (kTranslate_Type == fType) {
robertphillips@google.comf865be32013-05-31 13:27:02 +0000118 maxTransX = SkIntToScalar(size.fWidth - width);
119 maxTransY = SkIntToScalar(size.fHeight - height);
robertphillips@google.com6670ab92013-05-09 19:03:48 +0000120 } else {
121 SkASSERT(kRotate_Type == fType);
122 // Yes, some rotations will be off the top and left sides
robertphillips@google.comf865be32013-05-31 13:27:02 +0000123 maxTransX = size.fWidth - SK_ScalarSqrt2 * height;
124 maxTransY = size.fHeight - SK_ScalarSqrt2 * height;
robertphillips@google.com6670ab92013-05-09 19:03:48 +0000125 }
126
127 SkMatrix mat;
robertphillips@google.comf865be32013-05-31 13:27:02 +0000128 SkRect dst = { 0, 0, SkIntToScalar(width), SkIntToScalar(height) };
129 SkRect clearRect = { -1.0f, -1.0f, width+1.0f, height+1.0f };
robertphillips@google.com631a59b2013-07-31 14:57:53 +0000130 SkPoint verts[4] = { // for drawVertices path
131 { 0, 0 },
132 { 0, SkIntToScalar(height) },
133 { SkIntToScalar(width), SkIntToScalar(height) },
134 { SkIntToScalar(width), 0 }
135 };
136 uint16_t indices[6] = { 0, 1, 2, 0, 2, 3 };
robertphillips@google.com6670ab92013-05-09 19:03:48 +0000137
138 SkPaint p;
139 p.setColor(0xFF000000);
reed93a12152015-03-16 10:08:34 -0700140 p.setFilterQuality(kLow_SkFilterQuality);
robertphillips@google.com6670ab92013-05-09 19:03:48 +0000141
robertphillips@google.com631a59b2013-07-31 14:57:53 +0000142 SkPaint p2; // for drawVertices path
143 p2.setColor(0xFF000000);
reed93a12152015-03-16 10:08:34 -0700144 p2.setFilterQuality(kLow_SkFilterQuality);
Mike Reed50acf8f2019-04-08 13:20:23 -0400145 p2.setShader(fAtlas.makeShader());
robertphillips@google.com631a59b2013-07-31 14:57:53 +0000146
commit-bot@chromium.org33614712013-12-03 18:17:16 +0000147 for (int i = 0; i < loops; ++i, ++fNumSaved) {
robertphillips@google.com6670ab92013-05-09 19:03:48 +0000148 if (0 == i % kNumBeforeClear) {
robertphillips@google.comf865be32013-05-31 13:27:02 +0000149 if (kPartial_Clear == fClear) {
robertphillips@google.com6670ab92013-05-09 19:03:48 +0000150 for (int j = 0; j < fNumSaved; ++j) {
151 canvas->setMatrix(SkMatrix::I());
152 mat.setTranslate(fSaved[j][0], fSaved[j][1]);
153
154 if (kScale_Type == fType) {
155 mat.preScale(fSaved[j][2], fSaved[j][2]);
156 } else if (kRotate_Type == fType) {
157 mat.preRotate(fSaved[j][2]);
158 }
159
160 canvas->concat(mat);
161 canvas->drawRect(clearRect, clearPaint);
162 }
163 } else {
164 canvas->clear(0xFF000000);
165 }
166
167 fNumSaved = 0;
168 }
169
170 SkASSERT(fNumSaved < kNumBeforeClear);
171
172 canvas->setMatrix(SkMatrix::I());
173
174 fSaved[fNumSaved][0] = transRand.nextRangeScalar(0.0f, maxTransX);
175 fSaved[fNumSaved][1] = transRand.nextRangeScalar(0.0f, maxTransY);
robertphillips@google.com347fd4e2013-05-15 14:18:32 +0000176 if (fAligned) {
177 // make the translations integer aligned
178 fSaved[fNumSaved][0] = SkScalarFloorToScalar(fSaved[fNumSaved][0]);
179 fSaved[fNumSaved][1] = SkScalarFloorToScalar(fSaved[fNumSaved][1]);
180 }
robertphillips@google.com6670ab92013-05-09 19:03:48 +0000181
182 mat.setTranslate(fSaved[fNumSaved][0], fSaved[fNumSaved][1]);
183
184 if (kScale_Type == fType) {
185 fSaved[fNumSaved][2] = scaleRand.nextRangeScalar(0.5f, 1.5f);
186 mat.preScale(fSaved[fNumSaved][2], fSaved[fNumSaved][2]);
187 } else if (kRotate_Type == fType) {
188 fSaved[fNumSaved][2] = rotRand.nextRangeScalar(0.0f, 360.0f);
189 mat.preRotate(fSaved[fNumSaved][2]);
190 }
191
192 canvas->concat(mat);
skia.committer@gmail.com26da7f02013-06-01 07:01:39 +0000193 if (fUseAtlas) {
commit-bot@chromium.org44e3f712014-05-07 17:12:55 +0000194 const int curCell = i % (kNumAtlasedX * kNumAtlasedY);
robertphillips@google.com631a59b2013-07-31 14:57:53 +0000195 SkIRect src = fAtlasRects[curCell % (kNumAtlasedX)][curCell / (kNumAtlasedX)];
robertphillips@google.com631a59b2013-07-31 14:57:53 +0000196
197 if (fUseDrawVertices) {
skia.committer@gmail.com5d4b7732013-08-01 07:01:05 +0000198 SkPoint uvs[4] = {
robertphillips@google.com631a59b2013-07-31 14:57:53 +0000199 { SkIntToScalar(src.fLeft), SkIntToScalar(src.fBottom) },
200 { SkIntToScalar(src.fLeft), SkIntToScalar(src.fTop) },
201 { SkIntToScalar(src.fRight), SkIntToScalar(src.fTop) },
202 { SkIntToScalar(src.fRight), SkIntToScalar(src.fBottom) },
203 };
Mike Reed887cdf12017-04-03 11:11:09 -0400204 canvas->drawVertices(SkVertices::MakeCopy(SkVertices::kTriangles_VertexMode,
205 4, verts, uvs, nullptr, 6, indices),
206 SkBlendMode::kModulate, p2);
robertphillips@google.com631a59b2013-07-31 14:57:53 +0000207 } else {
reed84984ef2015-07-17 07:09:43 -0700208 canvas->drawBitmapRect(fAtlas, src, dst, &p,
209 SkCanvas::kFast_SrcRectConstraint);
robertphillips@google.com631a59b2013-07-31 14:57:53 +0000210 }
robertphillips@google.comf865be32013-05-31 13:27:02 +0000211 } else {
reed84984ef2015-07-17 07:09:43 -0700212 canvas->drawBitmapRect(fCheckerboard, dst, &p);
robertphillips@google.comf865be32013-05-31 13:27:02 +0000213 }
robertphillips@google.com6670ab92013-05-09 19:03:48 +0000214 }
215 }
216
217private:
218 static const int kCheckerboardWidth = 64;
219 static const int kCheckerboardHeight = 128;
robertphillips@google.comf865be32013-05-31 13:27:02 +0000220
221 static const int kAtlasCellWidth = 48;
222 static const int kAtlasCellHeight = 36;
223 static const int kNumAtlasedX = 5;
224 static const int kNumAtlasedY = 5;
225 static const int kAtlasSpacer = 2;
226 static const int kTotAtlasWidth = kNumAtlasedX * kAtlasCellWidth +
227 (kNumAtlasedX+1) * kAtlasSpacer;
228 static const int kTotAtlasHeight = kNumAtlasedY * kAtlasCellHeight +
229 (kNumAtlasedY+1) * kAtlasSpacer;
mtklein@google.comc2897432013-09-10 19:23:38 +0000230 static const int kNumBeforeClear = 100;
robertphillips@google.com6670ab92013-05-09 19:03:48 +0000231
232 Type fType;
robertphillips@google.comf865be32013-05-31 13:27:02 +0000233 Clear fClear;
robertphillips@google.com347fd4e2013-05-15 14:18:32 +0000234 bool fAligned;
robertphillips@google.comf865be32013-05-31 13:27:02 +0000235 bool fUseAtlas;
robertphillips@google.com631a59b2013-07-31 14:57:53 +0000236 bool fUseDrawVertices;
robertphillips@google.com6670ab92013-05-09 19:03:48 +0000237 SkString fName;
238 int fNumSaved; // num draws stored in 'fSaved'
239 bool fInitialized;
240
241 // 0 & 1 are always x & y translate. 2 is either scale or rotate.
242 SkScalar fSaved[kNumBeforeClear][3];
robertphillips@google.comf865be32013-05-31 13:27:02 +0000243
robertphillips@google.com6670ab92013-05-09 19:03:48 +0000244 SkBitmap fCheckerboard;
robertphillips@google.comf865be32013-05-31 13:27:02 +0000245 SkBitmap fAtlas;
246 SkIRect fAtlasRects[kNumAtlasedX][kNumAtlasedY];
robertphillips@google.com6670ab92013-05-09 19:03:48 +0000247
248 // Note: the resulting checker board has transparency
249 void makeCheckerboard() {
robertphillips@google.com6d58ad32013-05-09 19:08:57 +0000250 static int kCheckSize = 16;
robertphillips@google.com6670ab92013-05-09 19:03:48 +0000251
reed6c225732014-06-09 19:52:07 -0700252 fCheckerboard.allocN32Pixels(kCheckerboardWidth, kCheckerboardHeight);
robertphillips@google.com6d58ad32013-05-09 19:08:57 +0000253 for (int y = 0; y < kCheckerboardHeight; ++y) {
robertphillips@google.com6670ab92013-05-09 19:03:48 +0000254 int even = (y / kCheckSize) % 2;
255
256 SkPMColor* scanline = fCheckerboard.getAddr32(0, y);
257
robertphillips@google.com6d58ad32013-05-09 19:08:57 +0000258 for (int x = 0; x < kCheckerboardWidth; ++x) {
robertphillips@google.com6670ab92013-05-09 19:03:48 +0000259 if (even == (x / kCheckSize) % 2) {
260 *scanline++ = 0xFFFF0000;
261 } else {
262 *scanline++ = 0x00000000;
263 }
264 }
265 }
266 }
267
robertphillips@google.comf865be32013-05-31 13:27:02 +0000268 // Note: the resulting atlas has transparency
269 void makeAtlas() {
commit-bot@chromium.orge0e7cfe2013-09-09 20:09:12 +0000270 SkRandom rand;
robertphillips@google.comf865be32013-05-31 13:27:02 +0000271
272 SkColor colors[kNumAtlasedX][kNumAtlasedY];
273
274 for (int y = 0; y < kNumAtlasedY; ++y) {
275 for (int x = 0; x < kNumAtlasedX; ++x) {
276 colors[x][y] = rand.nextU() | 0xff000000;
277 fAtlasRects[x][y] = SkIRect::MakeXYWH(kAtlasSpacer + x * (kAtlasCellWidth + kAtlasSpacer),
278 kAtlasSpacer + y * (kAtlasCellHeight + kAtlasSpacer),
279 kAtlasCellWidth,
280 kAtlasCellHeight);
281 }
282 }
283
reed6c225732014-06-09 19:52:07 -0700284 fAtlas.allocN32Pixels(kTotAtlasWidth, kTotAtlasHeight);
robertphillips@google.comf865be32013-05-31 13:27:02 +0000285
286 for (int y = 0; y < kTotAtlasHeight; ++y) {
287 int colorY = y / (kAtlasCellHeight + kAtlasSpacer);
288 bool inColorY = (y % (kAtlasCellHeight + kAtlasSpacer)) >= kAtlasSpacer;
289
290 SkPMColor* scanline = fAtlas.getAddr32(0, y);
291
292 for (int x = 0; x < kTotAtlasWidth; ++x, ++scanline) {
293 int colorX = x / (kAtlasCellWidth + kAtlasSpacer);
294 bool inColorX = (x % (kAtlasCellWidth + kAtlasSpacer)) >= kAtlasSpacer;
295
296 if (inColorX && inColorY) {
297 SkASSERT(colorX < kNumAtlasedX && colorY < kNumAtlasedY);
298 *scanline = colors[colorX][colorY];
299 } else {
300 *scanline = 0x00000000;
301 }
302 }
303 }
304 }
305
tfarinaf168b862014-06-19 12:32:29 -0700306 typedef Benchmark INHERITED;
robertphillips@google.com6670ab92013-05-09 19:03:48 +0000307};
308
309// Partial clear
halcanary385fe4d2015-08-26 13:07:48 -0700310DEF_BENCH(return new GameBench(GameBench::kScale_Type, GameBench::kPartial_Clear);)
311DEF_BENCH(return new GameBench(GameBench::kTranslate_Type, GameBench::kPartial_Clear);)
312DEF_BENCH(return new GameBench(GameBench::kTranslate_Type, GameBench::kPartial_Clear, true);)
313DEF_BENCH(return new GameBench(GameBench::kRotate_Type, GameBench::kPartial_Clear);)
robertphillips@google.com6670ab92013-05-09 19:03:48 +0000314
315// Full clear
halcanary385fe4d2015-08-26 13:07:48 -0700316DEF_BENCH(return new GameBench(GameBench::kScale_Type, GameBench::kFull_Clear);)
317DEF_BENCH(return new GameBench(GameBench::kTranslate_Type, GameBench::kFull_Clear);)
318DEF_BENCH(return new GameBench(GameBench::kTranslate_Type, GameBench::kFull_Clear, true);)
319DEF_BENCH(return new GameBench(GameBench::kRotate_Type, GameBench::kFull_Clear);)
robertphillips@google.comf865be32013-05-31 13:27:02 +0000320
321// Atlased
halcanary385fe4d2015-08-26 13:07:48 -0700322DEF_BENCH(return new GameBench(GameBench::kTranslate_Type, GameBench::kFull_Clear, false, true);)
323DEF_BENCH(return new GameBench(
324 GameBench::kTranslate_Type, GameBench::kFull_Clear, false, true, true);)
Mike Reed77cf4302019-12-30 10:21:29 -0500325
326
327class CanvasMatrixBench : public Benchmark {
328 SkString fName;
329public:
330 enum Type {
331 kTranslate_Type,
332 kScale_Type,
333 k2x3_Type,
334 k3x3_Type,
Mike Reed064c7f92020-01-08 17:33:04 -0500335 k4x4_Type,
Mike Reed77cf4302019-12-30 10:21:29 -0500336 };
337 Type fType;
338
339 CanvasMatrixBench(Type t) : fType(t) {
340 fName.set("canvas_matrix");
341 switch (fType) {
342 case kTranslate_Type: fName.append("_trans"); break;
343 case kScale_Type: fName.append("_scale"); break;
344 case k2x3_Type: fName.append("_2x3"); break;
345 case k3x3_Type: fName.append("_3x3"); break;
Mike Reed064c7f92020-01-08 17:33:04 -0500346 case k4x4_Type: fName.append("_4x4"); break;
Mike Reed77cf4302019-12-30 10:21:29 -0500347 }
348 }
349
350protected:
351 const char* onGetName() override {
352 return fName.c_str();
353 }
354
355 void onDraw(int loops, SkCanvas* canvas) override {
356 SkMatrix m;
357 m.setRotate(1);
358 if (fType == k3x3_Type) {
359 m[7] = 0.0001f;
360 }
Mike Reedb26b4e72020-01-22 14:31:21 -0500361 SkM44 m4(m);
Mike Reed77cf4302019-12-30 10:21:29 -0500362
363 for (int i = 0; i < loops; ++i) {
364 canvas->save();
365 for (int j = 0; j < 10000; ++j) {
366 switch (fType) {
367 case kTranslate_Type: canvas->translate(0.0001f, 0.0001f); break;
368 case kScale_Type: canvas->scale(1.0001f, 0.9999f); break;
369 case k2x3_Type: canvas->concat(m); break;
370 case k3x3_Type: canvas->concat(m); break;
Mike Reed3ef77dd2020-04-06 10:41:09 -0400371 case k4x4_Type: canvas->concat(m4); break;
Mike Reed77cf4302019-12-30 10:21:29 -0500372 }
373 }
374 canvas->restore();
375 }
376 }
377
378private:
379 typedef Benchmark INHERITED;
380};
381
382DEF_BENCH(return new CanvasMatrixBench(CanvasMatrixBench::kTranslate_Type));
383DEF_BENCH(return new CanvasMatrixBench(CanvasMatrixBench::kScale_Type));
384DEF_BENCH(return new CanvasMatrixBench(CanvasMatrixBench::k2x3_Type));
385DEF_BENCH(return new CanvasMatrixBench(CanvasMatrixBench::k3x3_Type));
Mike Reed064c7f92020-01-08 17:33:04 -0500386DEF_BENCH(return new CanvasMatrixBench(CanvasMatrixBench::k4x4_Type));