tomhudson@google.com | f2e91a3 | 2012-06-11 19:22:01 +0000 | [diff] [blame] | 1 | /* |
| 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 | */ |
commit-bot@chromium.org | 97b4b67 | 2013-09-26 19:23:03 +0000 | [diff] [blame] | 7 | |
Mike Klein | c0bd9f9 | 2019-04-23 12:05:21 -0500 | [diff] [blame] | 8 | #include "bench/Benchmark.h" |
| 9 | #include "include/core/SkCanvas.h" |
| 10 | #include "include/core/SkPaint.h" |
| 11 | #include "include/core/SkShader.h" |
| 12 | #include "include/core/SkString.h" |
Michael Ludwig | 2300318 | 2019-08-05 11:25:23 -0400 | [diff] [blame] | 13 | #include "include/effects/SkImageFilters.h" |
Mike Klein | c0bd9f9 | 2019-04-23 12:05:21 -0500 | [diff] [blame] | 14 | #include "include/utils/SkRandom.h" |
tomhudson@google.com | f2e91a3 | 2012-06-11 19:22:01 +0000 | [diff] [blame] | 15 | |
| 16 | #define SMALL SkIntToScalar(2) |
commit-bot@chromium.org | 4b413c8 | 2013-11-25 19:44:07 +0000 | [diff] [blame] | 17 | #define REAL 1.5f |
tomhudson@google.com | f2e91a3 | 2012-06-11 19:22:01 +0000 | [diff] [blame] | 18 | #define BIG SkIntToScalar(10) |
| 19 | |
tomhudson@google.com | f2e91a3 | 2012-06-11 19:22:01 +0000 | [diff] [blame] | 20 | enum MorphologyType { |
| 21 | kErode_MT, |
| 22 | kDilate_MT |
| 23 | }; |
| 24 | |
tomhudson@google.com | f2e91a3 | 2012-06-11 19:22:01 +0000 | [diff] [blame] | 25 | static const char* gStyleName[] = { |
| 26 | "erode", |
| 27 | "dilate" |
| 28 | }; |
| 29 | |
tfarina | f168b86 | 2014-06-19 12:32:29 -0700 | [diff] [blame] | 30 | class MorphologyBench : public Benchmark { |
tomhudson@google.com | f2e91a3 | 2012-06-11 19:22:01 +0000 | [diff] [blame] | 31 | SkScalar fRadius; |
| 32 | MorphologyType fStyle; |
| 33 | SkString fName; |
| 34 | |
| 35 | public: |
mtklein@google.com | 410e6e8 | 2013-09-13 19:52:27 +0000 | [diff] [blame] | 36 | MorphologyBench(SkScalar rad, MorphologyType style) |
| 37 | { |
tomhudson@google.com | f2e91a3 | 2012-06-11 19:22:01 +0000 | [diff] [blame] | 38 | fRadius = rad; |
| 39 | fStyle = style; |
| 40 | const char* name = rad > 0 ? gStyleName[style] : "none"; |
| 41 | if (SkScalarFraction(rad) != 0) { |
| 42 | fName.printf("morph_%.2f_%s", SkScalarToFloat(rad), name); |
| 43 | } else { |
reed@google.com | e1ca705 | 2013-12-17 19:22:07 +0000 | [diff] [blame] | 44 | fName.printf("morph_%d_%s", SkScalarRoundToInt(rad), name); |
tomhudson@google.com | f2e91a3 | 2012-06-11 19:22:01 +0000 | [diff] [blame] | 45 | } |
| 46 | } |
rmistry@google.com | fbfcd56 | 2012-08-23 18:09:54 +0000 | [diff] [blame] | 47 | |
tomhudson@google.com | f2e91a3 | 2012-06-11 19:22:01 +0000 | [diff] [blame] | 48 | protected: |
robertphillips | fc11b0a | 2016-04-05 09:09:36 -0700 | [diff] [blame] | 49 | const char* onGetName() override { |
tomhudson@google.com | f2e91a3 | 2012-06-11 19:22:01 +0000 | [diff] [blame] | 50 | return fName.c_str(); |
| 51 | } |
rmistry@google.com | fbfcd56 | 2012-08-23 18:09:54 +0000 | [diff] [blame] | 52 | |
robertphillips | fc11b0a | 2016-04-05 09:09:36 -0700 | [diff] [blame] | 53 | void onDraw(int loops, SkCanvas* canvas) override { |
tomhudson@google.com | f2e91a3 | 2012-06-11 19:22:01 +0000 | [diff] [blame] | 54 | SkPaint paint; |
| 55 | this->setupPaint(&paint); |
| 56 | |
| 57 | paint.setAntiAlias(true); |
| 58 | |
commit-bot@chromium.org | e0e7cfe | 2013-09-09 20:09:12 +0000 | [diff] [blame] | 59 | SkRandom rand; |
commit-bot@chromium.org | 3361471 | 2013-12-03 18:17:16 +0000 | [diff] [blame] | 60 | for (int i = 0; i < loops; i++) { |
tomhudson@google.com | f2e91a3 | 2012-06-11 19:22:01 +0000 | [diff] [blame] | 61 | SkRect r = SkRect::MakeWH(rand.nextUScalar1() * 400, |
| 62 | rand.nextUScalar1() * 400); |
| 63 | r.offset(fRadius, fRadius); |
| 64 | |
| 65 | if (fRadius > 0) { |
robertphillips | fc11b0a | 2016-04-05 09:09:36 -0700 | [diff] [blame] | 66 | sk_sp<SkImageFilter> mf; |
tomhudson@google.com | f2e91a3 | 2012-06-11 19:22:01 +0000 | [diff] [blame] | 67 | switch (fStyle) { |
| 68 | case kDilate_MT: |
Michael Ludwig | 2300318 | 2019-08-05 11:25:23 -0400 | [diff] [blame] | 69 | mf = SkImageFilters::Dilate( |
| 70 | SkScalarFloorToInt(fRadius), SkScalarFloorToInt(fRadius), nullptr); |
tomhudson@google.com | f2e91a3 | 2012-06-11 19:22:01 +0000 | [diff] [blame] | 71 | break; |
| 72 | case kErode_MT: |
Michael Ludwig | 2300318 | 2019-08-05 11:25:23 -0400 | [diff] [blame] | 73 | mf = SkImageFilters::Erode( |
| 74 | SkScalarFloorToInt(fRadius), SkScalarFloorToInt(fRadius), nullptr); |
tomhudson@google.com | f2e91a3 | 2012-06-11 19:22:01 +0000 | [diff] [blame] | 75 | break; |
| 76 | } |
robertphillips | fc11b0a | 2016-04-05 09:09:36 -0700 | [diff] [blame] | 77 | paint.setImageFilter(std::move(mf)); |
tomhudson@google.com | f2e91a3 | 2012-06-11 19:22:01 +0000 | [diff] [blame] | 78 | } |
| 79 | canvas->drawOval(r, paint); |
| 80 | } |
| 81 | } |
rmistry@google.com | fbfcd56 | 2012-08-23 18:09:54 +0000 | [diff] [blame] | 82 | |
tomhudson@google.com | f2e91a3 | 2012-06-11 19:22:01 +0000 | [diff] [blame] | 83 | private: |
John Stiles | 7571f9e | 2020-09-02 22:42:33 -0400 | [diff] [blame] | 84 | using INHERITED = Benchmark; |
tomhudson@google.com | f2e91a3 | 2012-06-11 19:22:01 +0000 | [diff] [blame] | 85 | }; |
| 86 | |
mtklein@google.com | 410e6e8 | 2013-09-13 19:52:27 +0000 | [diff] [blame] | 87 | DEF_BENCH( return new MorphologyBench(SMALL, kErode_MT); ) |
| 88 | DEF_BENCH( return new MorphologyBench(SMALL, kDilate_MT); ) |
tomhudson@google.com | a0116d5 | 2012-06-11 20:48:18 +0000 | [diff] [blame] | 89 | |
mtklein@google.com | 410e6e8 | 2013-09-13 19:52:27 +0000 | [diff] [blame] | 90 | DEF_BENCH( return new MorphologyBench(BIG, kErode_MT); ) |
| 91 | DEF_BENCH( return new MorphologyBench(BIG, kDilate_MT); ) |
tomhudson@google.com | f2e91a3 | 2012-06-11 19:22:01 +0000 | [diff] [blame] | 92 | |
mtklein@google.com | 410e6e8 | 2013-09-13 19:52:27 +0000 | [diff] [blame] | 93 | DEF_BENCH( return new MorphologyBench(REAL, kErode_MT); ) |
| 94 | DEF_BENCH( return new MorphologyBench(REAL, kDilate_MT); ) |
tomhudson@google.com | f2e91a3 | 2012-06-11 19:22:01 +0000 | [diff] [blame] | 95 | |
mtklein@google.com | 410e6e8 | 2013-09-13 19:52:27 +0000 | [diff] [blame] | 96 | DEF_BENCH( return new MorphologyBench(0, kErode_MT); ) |