reed@google.com | 4aa1a70 | 2012-05-04 16:37:45 +0000 | [diff] [blame] | 1 | |
| 2 | /* |
| 3 | * Copyright 2011 Google Inc. |
| 4 | * |
| 5 | * Use of this source code is governed by a BSD-style license that can be |
| 6 | * found in the LICENSE file. |
| 7 | */ |
| 8 | #include "SkBenchmark.h" |
| 9 | #include "SkBitmap.h" |
| 10 | #include "SkCanvas.h" |
| 11 | #include "SkDashPathEffect.h" |
| 12 | #include "SkPaint.h" |
| 13 | #include "SkPath.h" |
| 14 | #include "SkRandom.h" |
| 15 | #include "SkString.h" |
| 16 | #include "SkTDArray.h" |
| 17 | |
reed@google.com | ef85e3c | 2012-05-10 15:40:57 +0000 | [diff] [blame] | 18 | |
reed@google.com | 4aa1a70 | 2012-05-04 16:37:45 +0000 | [diff] [blame] | 19 | /* |
| 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 | */ |
| 27 | static void path_hline(SkPath* path) { |
| 28 | path->moveTo(SkIntToScalar(10), SkIntToScalar(10)); |
| 29 | path->lineTo(SkIntToScalar(600), SkIntToScalar(10)); |
| 30 | } |
| 31 | |
| 32 | class DashBench : public SkBenchmark { |
reed@google.com | ef85e3c | 2012-05-10 15:40:57 +0000 | [diff] [blame] | 33 | protected: |
mike@reedtribe.org | 99a6ef4 | 2012-05-05 13:46:10 +0000 | [diff] [blame] | 34 | SkString fName; |
reed@google.com | 4aa1a70 | 2012-05-04 16:37:45 +0000 | [diff] [blame] | 35 | SkTDArray<SkScalar> fIntervals; |
mike@reedtribe.org | 99a6ef4 | 2012-05-05 13:46:10 +0000 | [diff] [blame] | 36 | int fWidth; |
reed@google.com | a584aed | 2012-05-16 14:06:02 +0000 | [diff] [blame] | 37 | SkPoint fPts[2]; |
| 38 | bool fDoClip; |
reed@google.com | 4aa1a70 | 2012-05-04 16:37:45 +0000 | [diff] [blame] | 39 | |
| 40 | enum { |
| 41 | N = SkBENCHLOOP(100) |
| 42 | }; |
| 43 | public: |
reed@google.com | 4ad2275 | 2012-05-15 19:50:58 +0000 | [diff] [blame] | 44 | DashBench(void* param, const SkScalar intervals[], int count, int width, |
| 45 | bool doClip = false) : INHERITED(param) { |
reed@google.com | 4aa1a70 | 2012-05-04 16:37:45 +0000 | [diff] [blame] | 46 | fIntervals.append(count, intervals); |
mike@reedtribe.org | 99a6ef4 | 2012-05-05 13:46:10 +0000 | [diff] [blame] | 47 | for (int i = 0; i < count; ++i) { |
| 48 | fIntervals[i] *= width; |
| 49 | } |
| 50 | fWidth = width; |
reed@google.com | 4ad2275 | 2012-05-15 19:50:58 +0000 | [diff] [blame] | 51 | fName.printf("dash_%d_%s", width, doClip ? "clipped" : "noclip"); |
| 52 | fDoClip = doClip; |
reed@google.com | a584aed | 2012-05-16 14:06:02 +0000 | [diff] [blame] | 53 | |
| 54 | fPts[0].set(SkIntToScalar(10), SkIntToScalar(10)); |
| 55 | fPts[1].set(SkIntToScalar(600), SkIntToScalar(10)); |
reed@google.com | 4aa1a70 | 2012-05-04 16:37:45 +0000 | [diff] [blame] | 56 | } |
| 57 | |
| 58 | virtual void makePath(SkPath* path) { |
| 59 | path_hline(path); |
| 60 | } |
| 61 | |
| 62 | protected: |
| 63 | virtual const char* onGetName() SK_OVERRIDE { |
mike@reedtribe.org | 99a6ef4 | 2012-05-05 13:46:10 +0000 | [diff] [blame] | 64 | return fName.c_str(); |
reed@google.com | 4aa1a70 | 2012-05-04 16:37:45 +0000 | [diff] [blame] | 65 | } |
| 66 | |
| 67 | virtual void onDraw(SkCanvas* canvas) SK_OVERRIDE { |
| 68 | SkPaint paint; |
| 69 | this->setupPaint(&paint); |
| 70 | paint.setStyle(SkPaint::kStroke_Style); |
mike@reedtribe.org | 99a6ef4 | 2012-05-05 13:46:10 +0000 | [diff] [blame] | 71 | paint.setStrokeWidth(SkIntToScalar(fWidth)); |
reed@google.com | 4aa1a70 | 2012-05-04 16:37:45 +0000 | [diff] [blame] | 72 | paint.setAntiAlias(false); |
| 73 | |
| 74 | SkPath path; |
| 75 | this->makePath(&path); |
| 76 | |
| 77 | paint.setPathEffect(new SkDashPathEffect(fIntervals.begin(), |
| 78 | fIntervals.count(), 0))->unref(); |
reed@google.com | 4ad2275 | 2012-05-15 19:50:58 +0000 | [diff] [blame] | 79 | |
| 80 | if (fDoClip) { |
| 81 | SkRect r = path.getBounds(); |
| 82 | r.inset(-SkIntToScalar(20), -SkIntToScalar(20)); |
| 83 | // now move it so we don't intersect |
| 84 | r.offset(0, r.height() * 3 / 2); |
| 85 | canvas->clipRect(r); |
| 86 | } |
| 87 | |
reed@google.com | ef85e3c | 2012-05-10 15:40:57 +0000 | [diff] [blame] | 88 | this->handlePath(canvas, path, paint, N); |
| 89 | } |
| 90 | |
| 91 | virtual void handlePath(SkCanvas* canvas, const SkPath& path, |
| 92 | const SkPaint& paint, int N) { |
reed@google.com | 4aa1a70 | 2012-05-04 16:37:45 +0000 | [diff] [blame] | 93 | for (int i = 0; i < N; ++i) { |
reed@google.com | a584aed | 2012-05-16 14:06:02 +0000 | [diff] [blame] | 94 | // canvas->drawPoints(SkCanvas::kLines_PointMode, 2, fPts, paint); |
reed@google.com | 4aa1a70 | 2012-05-04 16:37:45 +0000 | [diff] [blame] | 95 | canvas->drawPath(path, paint); |
| 96 | } |
| 97 | } |
| 98 | |
| 99 | private: |
| 100 | typedef SkBenchmark INHERITED; |
| 101 | }; |
| 102 | |
reed@google.com | ef85e3c | 2012-05-10 15:40:57 +0000 | [diff] [blame] | 103 | class RectDashBench : public DashBench { |
| 104 | public: |
reed@google.com | 4ad2275 | 2012-05-15 19:50:58 +0000 | [diff] [blame] | 105 | RectDashBench(void* param, const SkScalar intervals[], int count, int width, bool doClip = false) |
reed@google.com | ef85e3c | 2012-05-10 15:40:57 +0000 | [diff] [blame] | 106 | : INHERITED(param, intervals, count, width) { |
| 107 | fName.append("_rect"); |
| 108 | } |
reed@google.com | ea6f683 | 2012-05-18 18:32:54 +0000 | [diff] [blame] | 109 | |
reed@google.com | ef85e3c | 2012-05-10 15:40:57 +0000 | [diff] [blame] | 110 | protected: |
| 111 | virtual void handlePath(SkCanvas* canvas, const SkPath& path, |
| 112 | const SkPaint& paint, int N) SK_OVERRIDE { |
| 113 | SkPoint pts[2]; |
| 114 | if (!path.isLine(pts) || pts[0].fY != pts[1].fY) { |
| 115 | this->INHERITED::handlePath(canvas, path, paint, N); |
| 116 | } else { |
| 117 | SkRect rect; |
| 118 | rect.fLeft = pts[0].fX; |
| 119 | rect.fTop = pts[0].fY - paint.getStrokeWidth() / 2; |
| 120 | rect.fRight = rect.fLeft + SkIntToScalar(fWidth); |
| 121 | rect.fBottom = rect.fTop + paint.getStrokeWidth(); |
reed@google.com | ea6f683 | 2012-05-18 18:32:54 +0000 | [diff] [blame] | 122 | |
reed@google.com | ef85e3c | 2012-05-10 15:40:57 +0000 | [diff] [blame] | 123 | SkPaint p(paint); |
| 124 | p.setStyle(SkPaint::kFill_Style); |
| 125 | p.setPathEffect(NULL); |
reed@google.com | ea6f683 | 2012-05-18 18:32:54 +0000 | [diff] [blame] | 126 | |
reed@google.com | ef85e3c | 2012-05-10 15:40:57 +0000 | [diff] [blame] | 127 | int count = SkScalarRoundToInt((pts[1].fX - pts[0].fX) / (2*fWidth)); |
| 128 | SkScalar dx = SkIntToScalar(2 * fWidth); |
reed@google.com | ea6f683 | 2012-05-18 18:32:54 +0000 | [diff] [blame] | 129 | |
reed@google.com | ef85e3c | 2012-05-10 15:40:57 +0000 | [diff] [blame] | 130 | for (int i = 0; i < N*10; ++i) { |
| 131 | SkRect r = rect; |
| 132 | for (int j = 0; j < count; ++j) { |
| 133 | canvas->drawRect(r, p); |
| 134 | r.offset(dx, 0); |
| 135 | } |
| 136 | } |
| 137 | } |
| 138 | } |
| 139 | |
| 140 | private: |
| 141 | typedef DashBench INHERITED; |
| 142 | }; |
| 143 | |
reed@google.com | ea6f683 | 2012-05-18 18:32:54 +0000 | [diff] [blame] | 144 | static void make_unit_star(SkPath* path, int n) { |
| 145 | SkScalar rad = -SK_ScalarPI / 2; |
| 146 | const SkScalar drad = (n >> 1) * SK_ScalarPI * 2 / n; |
| 147 | |
| 148 | path->moveTo(0, -SK_Scalar1); |
| 149 | for (int i = 1; i < n; i++) { |
| 150 | rad += drad; |
| 151 | SkScalar cosV, sinV = SkScalarSinCos(rad, &cosV); |
| 152 | path->lineTo(cosV, sinV); |
| 153 | } |
| 154 | path->close(); |
| 155 | } |
| 156 | |
| 157 | static void make_poly(SkPath* path) { |
| 158 | make_unit_star(path, 9); |
| 159 | SkMatrix matrix; |
| 160 | matrix.setScale(SkIntToScalar(100), SkIntToScalar(100)); |
| 161 | path->transform(matrix); |
| 162 | } |
| 163 | |
| 164 | static void make_quad(SkPath* path) { |
| 165 | SkScalar x0 = SkIntToScalar(10); |
| 166 | SkScalar y0 = SkIntToScalar(10); |
| 167 | path->moveTo(x0, y0); |
| 168 | path->quadTo(x0, y0 + 400 * SK_Scalar1, |
| 169 | x0 + 600 * SK_Scalar1, y0 + 400 * SK_Scalar1); |
| 170 | } |
| 171 | |
| 172 | static void make_cubic(SkPath* path) { |
| 173 | SkScalar x0 = SkIntToScalar(10); |
| 174 | SkScalar y0 = SkIntToScalar(10); |
| 175 | path->moveTo(x0, y0); |
| 176 | path->cubicTo(x0, y0 + 400 * SK_Scalar1, |
| 177 | x0 + 600 * SK_Scalar1, y0 + 400 * SK_Scalar1, |
| 178 | x0 + 600 * SK_Scalar1, y0); |
| 179 | } |
| 180 | |
| 181 | class MakeDashBench : public SkBenchmark { |
| 182 | SkString fName; |
| 183 | SkPath fPath; |
| 184 | SkAutoTUnref<SkPathEffect> fPE; |
| 185 | |
| 186 | enum { |
| 187 | N = SkBENCHLOOP(400) |
| 188 | }; |
| 189 | |
| 190 | public: |
| 191 | MakeDashBench(void* param, void (*proc)(SkPath*), const char name[]) : INHERITED(param) { |
| 192 | fName.printf("makedash_%s", name); |
| 193 | proc(&fPath); |
| 194 | |
| 195 | SkScalar vals[] = { SkIntToScalar(4), SkIntToScalar(4) }; |
| 196 | fPE.reset(new SkDashPathEffect(vals, 2, 0)); |
| 197 | } |
| 198 | |
| 199 | protected: |
| 200 | virtual const char* onGetName() SK_OVERRIDE { |
| 201 | return fName.c_str(); |
| 202 | } |
| 203 | |
| 204 | virtual void onDraw(SkCanvas* canvas) SK_OVERRIDE { |
| 205 | SkPath dst; |
| 206 | for (int i = 0; i < N; ++i) { |
reed@google.com | fd4be26 | 2012-05-25 01:04:12 +0000 | [diff] [blame] | 207 | SkStrokeRec rec(SkStrokeRec::kHairline_InitStyle); |
reed@google.com | ea6f683 | 2012-05-18 18:32:54 +0000 | [diff] [blame] | 208 | |
reed@google.com | fd4be26 | 2012-05-25 01:04:12 +0000 | [diff] [blame] | 209 | fPE->filterPath(&dst, fPath, &rec); |
reed@google.com | ea6f683 | 2012-05-18 18:32:54 +0000 | [diff] [blame] | 210 | dst.rewind(); |
| 211 | } |
| 212 | } |
| 213 | |
| 214 | private: |
| 215 | typedef SkBenchmark INHERITED; |
| 216 | }; |
| 217 | |
reed@google.com | 4aa1a70 | 2012-05-04 16:37:45 +0000 | [diff] [blame] | 218 | /////////////////////////////////////////////////////////////////////////////// |
| 219 | |
| 220 | static const SkScalar gDots[] = { SK_Scalar1, SK_Scalar1 }; |
| 221 | |
| 222 | #define PARAM(array) array, SK_ARRAY_COUNT(array) |
| 223 | |
mike@reedtribe.org | 99a6ef4 | 2012-05-05 13:46:10 +0000 | [diff] [blame] | 224 | static SkBenchmark* gF0(void* p) { return new DashBench(p, PARAM(gDots), 0); } |
| 225 | static SkBenchmark* gF1(void* p) { return new DashBench(p, PARAM(gDots), 1); } |
reed@google.com | 4ad2275 | 2012-05-15 19:50:58 +0000 | [diff] [blame] | 226 | static SkBenchmark* gF2(void* p) { return new DashBench(p, PARAM(gDots), 1, true); } |
| 227 | static SkBenchmark* gF3(void* p) { return new DashBench(p, PARAM(gDots), 4); } |
reed@google.com | ea6f683 | 2012-05-18 18:32:54 +0000 | [diff] [blame] | 228 | static SkBenchmark* gF4(void* p) { return new MakeDashBench(p, make_poly, "poly"); } |
| 229 | static SkBenchmark* gF5(void* p) { return new MakeDashBench(p, make_quad, "quad"); } |
| 230 | static SkBenchmark* gF6(void* p) { return new MakeDashBench(p, make_cubic, "cubic"); } |
reed@google.com | 4aa1a70 | 2012-05-04 16:37:45 +0000 | [diff] [blame] | 231 | |
| 232 | static BenchRegistry gR0(gF0); |
mike@reedtribe.org | 99a6ef4 | 2012-05-05 13:46:10 +0000 | [diff] [blame] | 233 | static BenchRegistry gR1(gF1); |
| 234 | static BenchRegistry gR2(gF2); |
reed@google.com | ef85e3c | 2012-05-10 15:40:57 +0000 | [diff] [blame] | 235 | static BenchRegistry gR3(gF3); |
reed@google.com | 4ad2275 | 2012-05-15 19:50:58 +0000 | [diff] [blame] | 236 | static BenchRegistry gR4(gF4); |
reed@google.com | ea6f683 | 2012-05-18 18:32:54 +0000 | [diff] [blame] | 237 | static BenchRegistry gR5(gF5); |
| 238 | static BenchRegistry gR6(gF6); |