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
|
/*
* Copyright 2015 Google Inc.
*
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
#include "Benchmark.h"
#include "SkPaint.h"
#include "SkPath.h"
#include "SkRandom.h"
#include "SkString.h"
class StrokeBench : public Benchmark {
public:
StrokeBench(const SkPath& path, const SkPaint& paint, const char pathType[], SkScalar res)
: fPath(path), fPaint(paint), fRes(res)
{
fName.printf("build_stroke_%s_%g_%d_%d",
pathType, paint.getStrokeWidth(), paint.getStrokeJoin(), paint.getStrokeCap());
}
protected:
bool isSuitableFor(Backend backend) override {
return backend == kNonRendering_Backend;
}
const char* onGetName() override { return fName.c_str(); }
void onDraw(int loops, SkCanvas* canvas) override {
SkPaint paint(fPaint);
this->setupPaint(&paint);
for (int outer = 0; outer < 10; ++outer) {
for (int i = 0; i < loops; ++i) {
SkPath result;
paint.getFillPath(fPath, &result, nullptr, fRes);
}
}
}
private:
SkPath fPath;
SkPaint fPaint;
SkString fName;
SkScalar fRes;
typedef Benchmark INHERITED;
};
///////////////////////////////////////////////////////////////////////////////
static const int N = 100;
static const SkScalar X = 100;
static const SkScalar Y = 100;
static SkPoint rand_pt(SkRandom& rand) {
return SkPoint::Make(rand.nextSScalar1() * X, rand.nextSScalar1() * Y);
}
static SkPath line_path_maker() {
SkPath path;
SkRandom rand;
path.moveTo(rand_pt(rand));
for (int i = 0; i < N; ++i) {
path.lineTo(rand_pt(rand));
}
return path;
}
static SkPath quad_path_maker() {
SkPath path;
SkRandom rand;
path.moveTo(rand_pt(rand));
for (int i = 0; i < N; ++i) {
path.quadTo(rand_pt(rand), rand_pt(rand));
}
return path;
}
static SkPath conic_path_maker() {
SkPath path;
SkRandom rand;
path.moveTo(rand_pt(rand));
for (int i = 0; i < N; ++i) {
path.conicTo(rand_pt(rand), rand_pt(rand), rand.nextUScalar1());
}
return path;
}
static SkPath cubic_path_maker() {
SkPath path;
SkRandom rand;
path.moveTo(rand_pt(rand));
for (int i = 0; i < N; ++i) {
path.cubicTo(rand_pt(rand), rand_pt(rand), rand_pt(rand));
}
return path;
}
static SkPaint paint_maker() {
SkPaint paint;
paint.setStyle(SkPaint::kStroke_Style);
paint.setStrokeWidth(X / 10);
paint.setStrokeJoin(SkPaint::kMiter_Join);
paint.setStrokeCap(SkPaint::kSquare_Cap);
return paint;
}
DEF_BENCH(return new StrokeBench(line_path_maker(), paint_maker(), "line_1", 1);)
DEF_BENCH(return new StrokeBench(quad_path_maker(), paint_maker(), "quad_1", 1);)
DEF_BENCH(return new StrokeBench(conic_path_maker(), paint_maker(), "conic_1", 1);)
DEF_BENCH(return new StrokeBench(cubic_path_maker(), paint_maker(), "cubic_1", 1);)
DEF_BENCH(return new StrokeBench(line_path_maker(), paint_maker(), "line_4", 4);)
DEF_BENCH(return new StrokeBench(quad_path_maker(), paint_maker(), "quad_4", 4);)
DEF_BENCH(return new StrokeBench(conic_path_maker(), paint_maker(), "conic_4", 4);)
DEF_BENCH(return new StrokeBench(cubic_path_maker(), paint_maker(), "cubic_4", 4);)
DEF_BENCH(return new StrokeBench(line_path_maker(), paint_maker(), "line_.25", .25f);)
DEF_BENCH(return new StrokeBench(quad_path_maker(), paint_maker(), "quad_.25", .25f);)
DEF_BENCH(return new StrokeBench(conic_path_maker(), paint_maker(), "conic_.25", .25f);)
DEF_BENCH(return new StrokeBench(cubic_path_maker(), paint_maker(), "cubic_.25", .25f);)
|