blob: 681b823f0977073a10b5fc5692485a50c5b76b3a [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
tfarinaf168b862014-06-19 12:32:29 -07008#include "Benchmark.h"
robertphillips@google.com6670ab92013-05-09 19:03:48 +00009#include "SkCanvas.h"
10#include "SkPaint.h"
11#include "SkRandom.h"
robertphillips@google.com631a59b2013-07-31 14:57:53 +000012#include "SkShader.h"
robertphillips@google.com6670ab92013-05-09 19:03:48 +000013#include "SkString.h"
14
robertphillips@google.com6670ab92013-05-09 19:03:48 +000015// This bench simulates the calls Skia sees from various HTML5 canvas
16// game bench marks
tfarinaf168b862014-06-19 12:32:29 -070017class GameBench : public Benchmark {
robertphillips@google.com6670ab92013-05-09 19:03:48 +000018public:
19 enum Type {
skia.committer@gmail.com0f20a3f2013-05-10 07:01:04 +000020 kScale_Type,
21 kTranslate_Type,
robertphillips@google.com6670ab92013-05-09 19:03:48 +000022 kRotate_Type
23 };
24
robertphillips@google.comf865be32013-05-31 13:27:02 +000025 enum Clear {
26 kFull_Clear,
27 kPartial_Clear
28 };
29
mtklein@google.com410e6e82013-09-13 19:52:27 +000030 GameBench(Type type, Clear clear,
robertphillips@google.com631a59b2013-07-31 14:57:53 +000031 bool aligned = false, bool useAtlas = false,
32 bool useDrawVertices = false)
mtklein@google.com410e6e82013-09-13 19:52:27 +000033 : fType(type)
robertphillips@google.comf865be32013-05-31 13:27:02 +000034 , fClear(clear)
robertphillips@google.com347fd4e2013-05-15 14:18:32 +000035 , fAligned(aligned)
robertphillips@google.comf865be32013-05-31 13:27:02 +000036 , fUseAtlas(useAtlas)
robertphillips@google.com631a59b2013-07-31 14:57:53 +000037 , fUseDrawVertices(useDrawVertices)
robertphillips@google.com6670ab92013-05-09 19:03:48 +000038 , fName("game")
39 , fNumSaved(0)
40 , fInitialized(false) {
41
42 switch (fType) {
43 case kScale_Type:
44 fName.append("_scale");
45 break;
46 case kTranslate_Type:
47 fName.append("_trans");
48 break;
49 case kRotate_Type:
50 fName.append("_rot");
51 break;
52 };
53
robertphillips@google.com347fd4e2013-05-15 14:18:32 +000054 if (aligned) {
55 fName.append("_aligned");
56 }
57
robertphillips@google.comf865be32013-05-31 13:27:02 +000058 if (kPartial_Clear == clear) {
robertphillips@google.com6670ab92013-05-09 19:03:48 +000059 fName.append("_partial");
60 } else {
61 fName.append("_full");
62 }
63
robertphillips@google.comf865be32013-05-31 13:27:02 +000064 if (useAtlas) {
65 fName.append("_atlas");
66 }
67
robertphillips@google.com631a59b2013-07-31 14:57:53 +000068 if (useDrawVertices) {
69 fName.append("_drawVerts");
70 }
71
robertphillips@google.com6670ab92013-05-09 19:03:48 +000072 // It's HTML 5 canvas, so always AA
73 fName.append("_aa");
74 }
75
76protected:
mtklein36352bf2015-03-25 18:17:31 -070077 const char* onGetName() override {
robertphillips@google.comf865be32013-05-31 13:27:02 +000078 return fName.c_str();
robertphillips@google.com6670ab92013-05-09 19:03:48 +000079 }
80
joshualitt8a6697a2015-09-30 12:11:07 -070081 void onDelayedSetup() override {
robertphillips@google.com6670ab92013-05-09 19:03:48 +000082 if (!fInitialized) {
83 this->makeCheckerboard();
robertphillips@google.comf865be32013-05-31 13:27:02 +000084 this->makeAtlas();
robertphillips@google.com6670ab92013-05-09 19:03:48 +000085 fInitialized = true;
86 }
87 }
88
mtkleina1ebeb22015-10-01 09:43:39 -070089 void onDraw(int loops, SkCanvas* canvas) override {
commit-bot@chromium.orge0e7cfe2013-09-09 20:09:12 +000090 SkRandom scaleRand;
91 SkRandom transRand;
92 SkRandom rotRand;
robertphillips@google.com6670ab92013-05-09 19:03:48 +000093
robertphillips@google.comf865be32013-05-31 13:27:02 +000094 int width, height;
95 if (fUseAtlas) {
96 width = kAtlasCellWidth;
97 height = kAtlasCellHeight;
98 } else {
99 width = kCheckerboardWidth;
100 height = kCheckerboardHeight;
101 }
102
robertphillips@google.com6670ab92013-05-09 19:03:48 +0000103 SkPaint clearPaint;
104 clearPaint.setColor(0xFF000000);
105 clearPaint.setAntiAlias(true);
106
Mike Reed3661bc92017-02-22 13:21:42 -0500107 SkISize size = canvas->getBaseLayerSize();
robertphillips@google.com6670ab92013-05-09 19:03:48 +0000108
109 SkScalar maxTransX, maxTransY;
110
111 if (kScale_Type == fType) {
robertphillips@google.comf865be32013-05-31 13:27:02 +0000112 maxTransX = size.fWidth - (1.5f * width);
113 maxTransY = size.fHeight - (1.5f * height);
robertphillips@google.com6670ab92013-05-09 19:03:48 +0000114 } else if (kTranslate_Type == fType) {
robertphillips@google.comf865be32013-05-31 13:27:02 +0000115 maxTransX = SkIntToScalar(size.fWidth - width);
116 maxTransY = SkIntToScalar(size.fHeight - height);
robertphillips@google.com6670ab92013-05-09 19:03:48 +0000117 } else {
118 SkASSERT(kRotate_Type == fType);
119 // Yes, some rotations will be off the top and left sides
robertphillips@google.comf865be32013-05-31 13:27:02 +0000120 maxTransX = size.fWidth - SK_ScalarSqrt2 * height;
121 maxTransY = size.fHeight - SK_ScalarSqrt2 * height;
robertphillips@google.com6670ab92013-05-09 19:03:48 +0000122 }
123
124 SkMatrix mat;
robertphillips@google.comf865be32013-05-31 13:27:02 +0000125 SkRect dst = { 0, 0, SkIntToScalar(width), SkIntToScalar(height) };
126 SkRect clearRect = { -1.0f, -1.0f, width+1.0f, height+1.0f };
robertphillips@google.com631a59b2013-07-31 14:57:53 +0000127 SkPoint verts[4] = { // for drawVertices path
128 { 0, 0 },
129 { 0, SkIntToScalar(height) },
130 { SkIntToScalar(width), SkIntToScalar(height) },
131 { SkIntToScalar(width), 0 }
132 };
133 uint16_t indices[6] = { 0, 1, 2, 0, 2, 3 };
robertphillips@google.com6670ab92013-05-09 19:03:48 +0000134
135 SkPaint p;
136 p.setColor(0xFF000000);
reed93a12152015-03-16 10:08:34 -0700137 p.setFilterQuality(kLow_SkFilterQuality);
robertphillips@google.com6670ab92013-05-09 19:03:48 +0000138
robertphillips@google.com631a59b2013-07-31 14:57:53 +0000139 SkPaint p2; // for drawVertices path
140 p2.setColor(0xFF000000);
reed93a12152015-03-16 10:08:34 -0700141 p2.setFilterQuality(kLow_SkFilterQuality);
reedc6f28f72016-03-14 12:22:10 -0700142 p2.setShader(SkShader::MakeBitmapShader(fAtlas,
143 SkShader::kClamp_TileMode,
144 SkShader::kClamp_TileMode));
robertphillips@google.com631a59b2013-07-31 14:57:53 +0000145
commit-bot@chromium.org33614712013-12-03 18:17:16 +0000146 for (int i = 0; i < loops; ++i, ++fNumSaved) {
robertphillips@google.com6670ab92013-05-09 19:03:48 +0000147 if (0 == i % kNumBeforeClear) {
robertphillips@google.comf865be32013-05-31 13:27:02 +0000148 if (kPartial_Clear == fClear) {
robertphillips@google.com6670ab92013-05-09 19:03:48 +0000149 for (int j = 0; j < fNumSaved; ++j) {
150 canvas->setMatrix(SkMatrix::I());
151 mat.setTranslate(fSaved[j][0], fSaved[j][1]);
152
153 if (kScale_Type == fType) {
154 mat.preScale(fSaved[j][2], fSaved[j][2]);
155 } else if (kRotate_Type == fType) {
156 mat.preRotate(fSaved[j][2]);
157 }
158
159 canvas->concat(mat);
160 canvas->drawRect(clearRect, clearPaint);
161 }
162 } else {
163 canvas->clear(0xFF000000);
164 }
165
166 fNumSaved = 0;
167 }
168
169 SkASSERT(fNumSaved < kNumBeforeClear);
170
171 canvas->setMatrix(SkMatrix::I());
172
173 fSaved[fNumSaved][0] = transRand.nextRangeScalar(0.0f, maxTransX);
174 fSaved[fNumSaved][1] = transRand.nextRangeScalar(0.0f, maxTransY);
robertphillips@google.com347fd4e2013-05-15 14:18:32 +0000175 if (fAligned) {
176 // make the translations integer aligned
177 fSaved[fNumSaved][0] = SkScalarFloorToScalar(fSaved[fNumSaved][0]);
178 fSaved[fNumSaved][1] = SkScalarFloorToScalar(fSaved[fNumSaved][1]);
179 }
robertphillips@google.com6670ab92013-05-09 19:03:48 +0000180
181 mat.setTranslate(fSaved[fNumSaved][0], fSaved[fNumSaved][1]);
182
183 if (kScale_Type == fType) {
184 fSaved[fNumSaved][2] = scaleRand.nextRangeScalar(0.5f, 1.5f);
185 mat.preScale(fSaved[fNumSaved][2], fSaved[fNumSaved][2]);
186 } else if (kRotate_Type == fType) {
187 fSaved[fNumSaved][2] = rotRand.nextRangeScalar(0.0f, 360.0f);
188 mat.preRotate(fSaved[fNumSaved][2]);
189 }
190
191 canvas->concat(mat);
skia.committer@gmail.com26da7f02013-06-01 07:01:39 +0000192 if (fUseAtlas) {
commit-bot@chromium.org44e3f712014-05-07 17:12:55 +0000193 const int curCell = i % (kNumAtlasedX * kNumAtlasedY);
robertphillips@google.com631a59b2013-07-31 14:57:53 +0000194 SkIRect src = fAtlasRects[curCell % (kNumAtlasedX)][curCell / (kNumAtlasedX)];
robertphillips@google.com631a59b2013-07-31 14:57:53 +0000195
196 if (fUseDrawVertices) {
skia.committer@gmail.com5d4b7732013-08-01 07:01:05 +0000197 SkPoint uvs[4] = {
robertphillips@google.com631a59b2013-07-31 14:57:53 +0000198 { SkIntToScalar(src.fLeft), SkIntToScalar(src.fBottom) },
199 { SkIntToScalar(src.fLeft), SkIntToScalar(src.fTop) },
200 { SkIntToScalar(src.fRight), SkIntToScalar(src.fTop) },
201 { SkIntToScalar(src.fRight), SkIntToScalar(src.fBottom) },
202 };
203 canvas->drawVertices(SkCanvas::kTriangles_VertexMode,
Mike Reed7d954ad2016-10-28 15:42:34 -0400204 4, verts, uvs, nullptr, indices, 6, p2);
robertphillips@google.com631a59b2013-07-31 14:57:53 +0000205 } else {
reed84984ef2015-07-17 07:09:43 -0700206 canvas->drawBitmapRect(fAtlas, src, dst, &p,
207 SkCanvas::kFast_SrcRectConstraint);
robertphillips@google.com631a59b2013-07-31 14:57:53 +0000208 }
robertphillips@google.comf865be32013-05-31 13:27:02 +0000209 } else {
reed84984ef2015-07-17 07:09:43 -0700210 canvas->drawBitmapRect(fCheckerboard, dst, &p);
robertphillips@google.comf865be32013-05-31 13:27:02 +0000211 }
robertphillips@google.com6670ab92013-05-09 19:03:48 +0000212 }
213 }
214
215private:
216 static const int kCheckerboardWidth = 64;
217 static const int kCheckerboardHeight = 128;
robertphillips@google.comf865be32013-05-31 13:27:02 +0000218
219 static const int kAtlasCellWidth = 48;
220 static const int kAtlasCellHeight = 36;
221 static const int kNumAtlasedX = 5;
222 static const int kNumAtlasedY = 5;
223 static const int kAtlasSpacer = 2;
224 static const int kTotAtlasWidth = kNumAtlasedX * kAtlasCellWidth +
225 (kNumAtlasedX+1) * kAtlasSpacer;
226 static const int kTotAtlasHeight = kNumAtlasedY * kAtlasCellHeight +
227 (kNumAtlasedY+1) * kAtlasSpacer;
mtklein@google.comc2897432013-09-10 19:23:38 +0000228 static const int kNumBeforeClear = 100;
robertphillips@google.com6670ab92013-05-09 19:03:48 +0000229
230 Type fType;
robertphillips@google.comf865be32013-05-31 13:27:02 +0000231 Clear fClear;
robertphillips@google.com347fd4e2013-05-15 14:18:32 +0000232 bool fAligned;
robertphillips@google.comf865be32013-05-31 13:27:02 +0000233 bool fUseAtlas;
robertphillips@google.com631a59b2013-07-31 14:57:53 +0000234 bool fUseDrawVertices;
robertphillips@google.com6670ab92013-05-09 19:03:48 +0000235 SkString fName;
236 int fNumSaved; // num draws stored in 'fSaved'
237 bool fInitialized;
238
239 // 0 & 1 are always x & y translate. 2 is either scale or rotate.
240 SkScalar fSaved[kNumBeforeClear][3];
robertphillips@google.comf865be32013-05-31 13:27:02 +0000241
robertphillips@google.com6670ab92013-05-09 19:03:48 +0000242 SkBitmap fCheckerboard;
robertphillips@google.comf865be32013-05-31 13:27:02 +0000243 SkBitmap fAtlas;
244 SkIRect fAtlasRects[kNumAtlasedX][kNumAtlasedY];
robertphillips@google.com6670ab92013-05-09 19:03:48 +0000245
246 // Note: the resulting checker board has transparency
247 void makeCheckerboard() {
robertphillips@google.com6d58ad32013-05-09 19:08:57 +0000248 static int kCheckSize = 16;
robertphillips@google.com6670ab92013-05-09 19:03:48 +0000249
reed6c225732014-06-09 19:52:07 -0700250 fCheckerboard.allocN32Pixels(kCheckerboardWidth, kCheckerboardHeight);
robertphillips@google.com6670ab92013-05-09 19:03:48 +0000251 SkAutoLockPixels lock(fCheckerboard);
robertphillips@google.com6d58ad32013-05-09 19:08:57 +0000252 for (int y = 0; y < kCheckerboardHeight; ++y) {
robertphillips@google.com6670ab92013-05-09 19:03:48 +0000253 int even = (y / kCheckSize) % 2;
254
255 SkPMColor* scanline = fCheckerboard.getAddr32(0, y);
256
robertphillips@google.com6d58ad32013-05-09 19:08:57 +0000257 for (int x = 0; x < kCheckerboardWidth; ++x) {
robertphillips@google.com6670ab92013-05-09 19:03:48 +0000258 if (even == (x / kCheckSize) % 2) {
259 *scanline++ = 0xFFFF0000;
260 } else {
261 *scanline++ = 0x00000000;
262 }
263 }
264 }
265 }
266
robertphillips@google.comf865be32013-05-31 13:27:02 +0000267 // Note: the resulting atlas has transparency
268 void makeAtlas() {
commit-bot@chromium.orge0e7cfe2013-09-09 20:09:12 +0000269 SkRandom rand;
robertphillips@google.comf865be32013-05-31 13:27:02 +0000270
271 SkColor colors[kNumAtlasedX][kNumAtlasedY];
272
273 for (int y = 0; y < kNumAtlasedY; ++y) {
274 for (int x = 0; x < kNumAtlasedX; ++x) {
275 colors[x][y] = rand.nextU() | 0xff000000;
276 fAtlasRects[x][y] = SkIRect::MakeXYWH(kAtlasSpacer + x * (kAtlasCellWidth + kAtlasSpacer),
277 kAtlasSpacer + y * (kAtlasCellHeight + kAtlasSpacer),
278 kAtlasCellWidth,
279 kAtlasCellHeight);
280 }
281 }
282
reed6c225732014-06-09 19:52:07 -0700283 fAtlas.allocN32Pixels(kTotAtlasWidth, kTotAtlasHeight);
robertphillips@google.comf865be32013-05-31 13:27:02 +0000284 SkAutoLockPixels lock(fAtlas);
285
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);)