-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathbitmap.cpp
381 lines (315 loc) · 8.83 KB
/
bitmap.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
#include <cmath>
#include <benchmark/benchmark.h>
#include <rect.h>
#include <bitmap.h>
#include <pixel_format.h>
#include <transform.h>
constexpr auto opacity_100 = Opacity::Opaque();
constexpr auto opacity_0 = Opacity(0);
constexpr auto opacity_50 = Opacity(128);
constexpr auto opacity_75_25 = Opacity(192, 64, 1);
constexpr auto opacity = opacity_100;
const auto fmt_rgba = format_R8G8B8A8_a().format();
const auto fmt_bgra = format_B8G8R8A8_a().format();
const auto fmt_argb = format_A8R8G8B8_a().format();
const auto fmt_abgr = format_A8B8G8R8_a().format();
const DynamicFormat formats[] = { fmt_rgba, fmt_bgra, fmt_argb, fmt_abgr };
const auto format = fmt_rgba;
struct BitmapAccess : public Bitmap {
static pixman_format_code_t find_format(const DynamicFormat& format) {
return Bitmap::find_format(format);
}
};
static void BM_FindFormatSingle(benchmark::State& state) {
for (auto _: state) {
BitmapAccess::find_format(format);
}
}
BENCHMARK(BM_FindFormatSingle);
static void BM_FindFormat(benchmark::State& state) {
for (auto _: state) {
for (auto& f: formats) {
BitmapAccess::find_format(f);
}
}
}
BENCHMARK(BM_FindFormat);
static void BM_ComputeImageOpacity(benchmark::State& state) {
Bitmap::SetFormat(format_R8G8B8A8_a().format());
auto bm = Bitmap::Create(320, 240);
for (auto _: state) {
bm->ComputeImageOpacity();
}
}
BENCHMARK(BM_ComputeImageOpacity);
static void BM_ComputeImageOpacityChipset(benchmark::State& state) {
Bitmap::SetFormat(format_R8G8B8A8_a().format());
const int w = 480;
const int h = 256;
const int dx = 16;
const int dy = 16;
auto bm = Bitmap::Create(w, h);
for (auto _: state) {
for (int y = 0; y < h; y += dy) {
for (int x = 0; x < w; x += dx) {
bm->ComputeImageOpacity(Rect{ x, y, dx, dy });
}
}
}
}
BENCHMARK(BM_ComputeImageOpacityChipset);
static void BM_Create(benchmark::State& state) {
Bitmap::SetFormat(format);
for (auto _: state) {
auto bm = Bitmap::Create(320, 240);
(void)bm;
}
}
BENCHMARK(BM_Create);
static void BM_Blit(benchmark::State& state) {
Bitmap::SetFormat(format);
auto dest = Bitmap::Create(320, 240);
auto src = Bitmap::Create(320, 240);
auto rect = src->GetRect();
for (auto _: state) {
dest->Blit(0, 0, *src, rect, opacity);
}
}
BENCHMARK(BM_Blit);
static void BM_BlitFast(benchmark::State& state) {
Bitmap::SetFormat(format);
auto dest = Bitmap::Create(320, 240);
auto src = Bitmap::Create(320, 240);
auto rect = src->GetRect();
for (auto _: state) {
dest->BlitFast(0, 0, *src, rect, opacity);
}
}
BENCHMARK(BM_BlitFast);
static void BM_TiledBlit(benchmark::State& state) {
Bitmap::SetFormat(format);
auto dest = Bitmap::Create(320, 240);
auto src = Bitmap::Create(16, 16);
auto rect = src->GetRect();
for (auto _: state) {
dest->TiledBlit(rect, *src, rect, opacity);
}
}
BENCHMARK(BM_TiledBlit);
static void BM_TiledBlitOffset(benchmark::State& state) {
Bitmap::SetFormat(format);
auto dest = Bitmap::Create(320, 240);
auto src = Bitmap::Create(64, 64);
auto rect = src->GetRect();
for (auto _: state) {
dest->TiledBlit(32, 32, Rect{32,32,16,16}, *src, rect, opacity);
}
}
BENCHMARK(BM_TiledBlitOffset);
static void BM_StretchBlit(benchmark::State& state) {
Bitmap::SetFormat(format);
auto dest = Bitmap::Create(320, 240);
auto src = Bitmap::Create(20, 20);
auto rect = src->GetRect();
for (auto _: state) {
dest->StretchBlit(*src, rect, opacity);
}
}
BENCHMARK(BM_StretchBlit);
static void BM_StretchBlitRect(benchmark::State& state) {
Bitmap::SetFormat(format);
auto dest = Bitmap::Create(320, 240);
auto dst_rect = dest->GetRect();
auto src = Bitmap::Create(20, 20);
auto rect = src->GetRect();
for (auto _: state) {
dest->StretchBlit(dst_rect, *src, rect, opacity);
}
}
BENCHMARK(BM_StretchBlitRect);
static void BM_FlipBlit(benchmark::State& state) {
Bitmap::SetFormat(format);
auto dest = Bitmap::Create(320, 240);
auto src = Bitmap::Create(320, 240);
auto rect = src->GetRect();
for (auto _: state) {
dest->FlipBlit(0, 0, *src, rect, true, true, opacity);
}
}
BENCHMARK(BM_FlipBlit);
static void BM_ZoomOpacityBlit(benchmark::State& state) {
Bitmap::SetFormat(format);
auto dest = Bitmap::Create(320, 240);
auto src = Bitmap::Create(60, 60);
auto rect = src->GetRect();
for (auto _: state) {
dest->ZoomOpacityBlit(0, 0, 30, 30, *src, rect, 2.0, 2.0, opacity);
}
}
BENCHMARK(BM_ZoomOpacityBlit);
static void BM_RotateZoomOpacityBlit(benchmark::State& state) {
Bitmap::SetFormat(format);
auto dest = Bitmap::Create(320, 240);
auto src = Bitmap::Create(60, 60);
auto rect = src->GetRect();
for (auto _: state) {
dest->RotateZoomOpacityBlit(0, 0, 30, 30, *src, rect, M_PI, 2.0, 2.0, opacity);
}
}
BENCHMARK(BM_RotateZoomOpacityBlit);
static void BM_WaverBlit(benchmark::State& state) {
Bitmap::SetFormat(format);
auto dest = Bitmap::Create(320, 240);
auto src = Bitmap::Create(320, 240);
auto rect = src->GetRect();
auto zoom_x = 2.0;
auto zoom_y = 2.0;
int depth = 2;
double phase = M_PI;
for (auto _: state) {
dest->WaverBlit(0, 0, zoom_x, zoom_y, *src, rect, depth, phase, opacity);
}
}
BENCHMARK(BM_WaverBlit);
static void BM_Fill(benchmark::State& state) {
Bitmap::SetFormat(format);
auto dest = Bitmap::Create(320, 240);
auto color = Color(255, 255, 255, 255);
for (auto _: state) {
dest->Fill(color);
}
}
BENCHMARK(BM_Fill);
static void BM_FillRect(benchmark::State& state) {
Bitmap::SetFormat(format);
auto dest = Bitmap::Create(320, 240);
auto rect = dest->GetRect();
auto color = Color(255, 255, 255, 255);
for (auto _: state) {
dest->FillRect(rect, color);
}
}
BENCHMARK(BM_FillRect);
static void BM_Clear(benchmark::State& state) {
Bitmap::SetFormat(format);
auto dest = Bitmap::Create(320, 240);
for (auto _: state) {
dest->Clear();
}
}
BENCHMARK(BM_Clear);
static void BM_ClearRect(benchmark::State& state) {
Bitmap::SetFormat(format);
auto dest = Bitmap::Create(320, 240);
auto rect = dest->GetRect();
for (auto _: state) {
dest->ClearRect(rect);
}
}
BENCHMARK(BM_ClearRect);
static void BM_HueChangeBlit(benchmark::State& state) {
Bitmap::SetFormat(format);
auto dest = Bitmap::Create(320, 240);
auto src = Bitmap::Create(320, 240);
auto rect = src->GetRect();
double hue = 1.0;
for (auto _: state) {
dest->HueChangeBlit(0, 0, *src, rect, hue);
}
}
BENCHMARK(BM_HueChangeBlit);
static void BM_ToneBlit(benchmark::State& state) {
Bitmap::SetFormat(format);
auto dest = Bitmap::Create(320, 240);
auto src = Bitmap::Create(320, 240);
auto rect = src->GetRect();
auto tone = Tone(255,255,255,128);
for (auto _: state) {
dest->ToneBlit(0, 0, *src, rect, tone, opacity);
}
}
BENCHMARK(BM_ToneBlit);
static void BM_BlendBlit(benchmark::State& state) {
Bitmap::SetFormat(format);
auto dest = Bitmap::Create(320, 240);
auto src = Bitmap::Create(320, 240);
auto rect = src->GetRect();
auto color = Color(255, 255, 255, 255);
for (auto _: state) {
dest->BlendBlit(0, 0, *src, rect, color, opacity);
}
}
BENCHMARK(BM_BlendBlit);
static void BM_Flip(benchmark::State& state) {
Bitmap::SetFormat(format);
auto dest = Bitmap::Create(320, 240);
for (auto _: state) {
dest->Flip(true, true);
}
}
BENCHMARK(BM_Flip);
static void BM_MaskedBlit(benchmark::State& state) {
Bitmap::SetFormat(format);
auto dest = Bitmap::Create(320, 240);
auto dst_rect = dest->GetRect();
auto src = Bitmap::Create(320, 240);
auto mask = Bitmap::Create(320, 240);
for (auto _: state) {
dest->MaskedBlit(dst_rect, *mask, 0, 0, *src, 0, 0);
}
}
BENCHMARK(BM_MaskedBlit);
static void BM_MaskedColorBlit(benchmark::State& state) {
Bitmap::SetFormat(format);
auto dest = Bitmap::Create(320, 240);
auto dst_rect = dest->GetRect();
auto mask = Bitmap::Create(320, 240);
auto color = Color(255, 255, 255, 255);
for (auto _: state) {
dest->MaskedBlit(dst_rect, *mask, 0, 0, color);
}
}
BENCHMARK(BM_MaskedColorBlit);
static void BM_Blit2x(benchmark::State& state) {
Bitmap::SetFormat(format);
auto dest = Bitmap::Create(320, 240);
auto dst_rect = dest->GetRect();
auto src = Bitmap::Create(320, 240);
auto rect = src->GetRect();
for (auto _: state) {
dest->Blit2x(dst_rect, *src, rect);
}
}
BENCHMARK(BM_Blit2x);
static void BM_TransformRectangle(benchmark::State& state) {
Bitmap::SetFormat(format);
auto dest = Bitmap::Create(320, 240);
auto rect = dest->GetRect();
auto xform = Transform::Rotation(M_PI);
for (auto _: state) {
dest->TransformRectangle(xform, rect);
}
}
BENCHMARK(BM_TransformRectangle);
static void BM_EffectsBlit(benchmark::State& state) {
Bitmap::SetFormat(format);
auto dest = Bitmap::Create(320, 240);
auto src = Bitmap::Create(320, 240);
auto rect = src->GetRect();
auto zoom_x = 2.0;
auto zoom_y = 2.0;
auto angle = M_PI;
int waver_depth = 2;
double waver_phase = M_PI;
for (auto _: state) {
dest->EffectsBlit(0, 0, 0, 0,
*src, rect,
opacity,
zoom_x, zoom_y,
angle,
waver_depth,
waver_phase);
}
}
BENCHMARK(BM_EffectsBlit);
BENCHMARK_MAIN();