bsalomon | 3342ed5 | 2014-07-30 08:58:20 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2014 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 | |
| 8 | #include "Benchmark.h" |
Mike Reed | d470673 | 2016-11-15 16:44:34 -0500 | [diff] [blame] | 9 | #include "SkBlendModePriv.h" |
bsalomon | 3342ed5 | 2014-07-30 08:58:20 -0700 | [diff] [blame] | 10 | #include "SkCanvas.h" |
| 11 | #include "SkPaint.h" |
| 12 | |
bsalomon | 6563562 | 2014-08-08 07:43:29 -0700 | [diff] [blame] | 13 | #include <ctype.h> |
| 14 | |
bsalomon | 3342ed5 | 2014-07-30 08:58:20 -0700 | [diff] [blame] | 15 | /** This benchmark tests rendering rotated rectangles. It can optionally apply AA and/or change the |
bsalomon | 6563562 | 2014-08-08 07:43:29 -0700 | [diff] [blame] | 16 | paint color between each rect in different ways using the ColorType enum. The xfermode used can |
halcanary | 9d524f2 | 2016-03-29 09:03:52 -0700 | [diff] [blame] | 17 | be specified as well. |
bsalomon | 6563562 | 2014-08-08 07:43:29 -0700 | [diff] [blame] | 18 | */ |
| 19 | |
| 20 | enum ColorType { |
| 21 | kConstantOpaque_ColorType, |
| 22 | kConstantTransparent_ColorType, |
| 23 | kChangingOpaque_ColorType, |
| 24 | kChangingTransparent_ColorType, |
| 25 | kAlternatingOpaqueAndTransparent_ColorType, |
| 26 | }; |
| 27 | |
| 28 | static inline SkColor start_color(ColorType ct) { |
| 29 | switch (ct) { |
| 30 | case kConstantOpaque_ColorType: |
| 31 | case kChangingOpaque_ColorType: |
| 32 | case kAlternatingOpaqueAndTransparent_ColorType: |
| 33 | return 0xFFA07040; |
| 34 | case kConstantTransparent_ColorType: |
| 35 | case kChangingTransparent_ColorType: |
| 36 | return 0x80A07040; |
| 37 | } |
Ben Wagner | b4aab9a | 2017-08-16 10:53:04 -0400 | [diff] [blame] | 38 | SK_ABORT("Shouldn't reach here."); |
bsalomon | 6563562 | 2014-08-08 07:43:29 -0700 | [diff] [blame] | 39 | return 0; |
| 40 | } |
| 41 | |
| 42 | static inline SkColor advance_color(SkColor old, ColorType ct, int step) { |
| 43 | if (kAlternatingOpaqueAndTransparent_ColorType == ct) { |
| 44 | ct = (step & 0x1) ? kChangingOpaque_ColorType : kChangingTransparent_ColorType ; |
| 45 | } |
| 46 | switch (ct) { |
| 47 | case kConstantOpaque_ColorType: |
| 48 | case kConstantTransparent_ColorType: |
| 49 | return old; |
| 50 | case kChangingOpaque_ColorType: |
| 51 | return 0xFF000000 | (old + 0x00010307); |
| 52 | case kChangingTransparent_ColorType: |
| 53 | return (0x00FFFFFF & (old + 0x00010307)) | 0x80000000; |
| 54 | case kAlternatingOpaqueAndTransparent_ColorType: |
Ben Wagner | b4aab9a | 2017-08-16 10:53:04 -0400 | [diff] [blame] | 55 | SK_ABORT("Can't get here"); |
bsalomon | 6563562 | 2014-08-08 07:43:29 -0700 | [diff] [blame] | 56 | } |
Ben Wagner | b4aab9a | 2017-08-16 10:53:04 -0400 | [diff] [blame] | 57 | SK_ABORT("Shouldn't reach here."); |
bsalomon | 6563562 | 2014-08-08 07:43:29 -0700 | [diff] [blame] | 58 | return 0; |
| 59 | } |
| 60 | |
| 61 | static SkString to_lower(const char* str) { |
| 62 | SkString lower(str); |
| 63 | for (size_t i = 0; i < lower.size(); i++) { |
| 64 | lower[i] = tolower(lower[i]); |
| 65 | } |
| 66 | return lower; |
| 67 | } |
| 68 | |
bsalomon | 3342ed5 | 2014-07-30 08:58:20 -0700 | [diff] [blame] | 69 | class RotRectBench: public Benchmark { |
| 70 | public: |
reed | 374772b | 2016-10-05 17:33:02 -0700 | [diff] [blame] | 71 | RotRectBench(bool aa, ColorType ct, SkBlendMode mode) |
bsalomon | 3342ed5 | 2014-07-30 08:58:20 -0700 | [diff] [blame] | 72 | : fAA(aa) |
bsalomon | 6563562 | 2014-08-08 07:43:29 -0700 | [diff] [blame] | 73 | , fColorType(ct) |
| 74 | , fMode(mode) { |
bsalomon | 3342ed5 | 2014-07-30 08:58:20 -0700 | [diff] [blame] | 75 | this->makeName(); |
| 76 | } |
| 77 | |
| 78 | protected: |
mtklein | 36352bf | 2015-03-25 18:17:31 -0700 | [diff] [blame] | 79 | const char* onGetName() override { return fName.c_str(); } |
bsalomon | 3342ed5 | 2014-07-30 08:58:20 -0700 | [diff] [blame] | 80 | |
mtklein | a1ebeb2 | 2015-10-01 09:43:39 -0700 | [diff] [blame] | 81 | void onDraw(int loops, SkCanvas* canvas) override { |
bsalomon | 3342ed5 | 2014-07-30 08:58:20 -0700 | [diff] [blame] | 82 | SkPaint paint; |
| 83 | paint.setAntiAlias(fAA); |
reed | 374772b | 2016-10-05 17:33:02 -0700 | [diff] [blame] | 84 | paint.setBlendMode(fMode); |
bsalomon | 6563562 | 2014-08-08 07:43:29 -0700 | [diff] [blame] | 85 | SkColor color = start_color(fColorType); |
bsalomon | 3342ed5 | 2014-07-30 08:58:20 -0700 | [diff] [blame] | 86 | |
tomhudson | c589f6c | 2015-03-23 07:46:13 -0700 | [diff] [blame] | 87 | int w = this->getSize().x(); |
| 88 | int h = this->getSize().y(); |
bsalomon | 3342ed5 | 2014-07-30 08:58:20 -0700 | [diff] [blame] | 89 | |
| 90 | static const SkScalar kRectW = 25.1f; |
| 91 | static const SkScalar kRectH = 25.9f; |
| 92 | |
| 93 | SkMatrix rotate; |
| 94 | // This value was chosen so that we frequently hit the axis-aligned case. |
| 95 | rotate.setRotate(30.f, kRectW / 2, kRectH / 2); |
| 96 | SkMatrix m = rotate; |
| 97 | |
| 98 | SkScalar tx = 0, ty = 0; |
| 99 | |
| 100 | for (int i = 0; i < loops; ++i) { |
| 101 | canvas->save(); |
| 102 | canvas->translate(tx, ty); |
| 103 | canvas->concat(m); |
| 104 | paint.setColor(color); |
bsalomon | 6563562 | 2014-08-08 07:43:29 -0700 | [diff] [blame] | 105 | color = advance_color(color, fColorType, i); |
| 106 | |
bsalomon | 3342ed5 | 2014-07-30 08:58:20 -0700 | [diff] [blame] | 107 | canvas->drawRect(SkRect::MakeWH(kRectW, kRectH), paint); |
| 108 | canvas->restore(); |
| 109 | |
| 110 | tx += kRectW + 2; |
| 111 | if (tx > w) { |
| 112 | tx = 0; |
| 113 | ty += kRectH + 2; |
| 114 | if (ty > h) { |
| 115 | ty = 0; |
| 116 | } |
| 117 | } |
| 118 | |
| 119 | m.postConcat(rotate); |
| 120 | } |
| 121 | } |
| 122 | |
| 123 | private: |
| 124 | void makeName() { |
| 125 | fName = "rotated_rects"; |
| 126 | if (fAA) { |
| 127 | fName.append("_aa"); |
| 128 | } else { |
| 129 | fName.append("_bw"); |
| 130 | } |
bsalomon | 6563562 | 2014-08-08 07:43:29 -0700 | [diff] [blame] | 131 | switch (fColorType) { |
| 132 | case kConstantOpaque_ColorType: |
| 133 | fName.append("_same_opaque"); |
| 134 | break; |
| 135 | case kConstantTransparent_ColorType: |
| 136 | fName.append("_same_transparent"); |
| 137 | break; |
| 138 | case kChangingOpaque_ColorType: |
| 139 | fName.append("_changing_opaque"); |
| 140 | break; |
| 141 | case kChangingTransparent_ColorType: |
| 142 | fName.append("_changing_transparent"); |
| 143 | break; |
| 144 | case kAlternatingOpaqueAndTransparent_ColorType: |
| 145 | fName.append("_alternating_transparent_and_opaque"); |
| 146 | break; |
bsalomon | 3342ed5 | 2014-07-30 08:58:20 -0700 | [diff] [blame] | 147 | } |
Mike Reed | d470673 | 2016-11-15 16:44:34 -0500 | [diff] [blame] | 148 | fName.appendf("_%s", to_lower(SkBlendMode_Name(fMode)).c_str()); |
bsalomon | 3342ed5 | 2014-07-30 08:58:20 -0700 | [diff] [blame] | 149 | } |
| 150 | |
reed | 374772b | 2016-10-05 17:33:02 -0700 | [diff] [blame] | 151 | bool fAA; |
| 152 | ColorType fColorType; |
| 153 | SkBlendMode fMode; |
| 154 | SkString fName; |
bsalomon | 3342ed5 | 2014-07-30 08:58:20 -0700 | [diff] [blame] | 155 | |
| 156 | typedef Benchmark INHERITED; |
| 157 | }; |
| 158 | |
bsalomon | 6563562 | 2014-08-08 07:43:29 -0700 | [diff] [blame] | 159 | // Choose kSrcOver because it always allows coverage and alpha to be conflated. kSrc only allows |
| 160 | // conflation when opaque, and kDarken because it isn't possilbe with standard GL blending. |
reed | 374772b | 2016-10-05 17:33:02 -0700 | [diff] [blame] | 161 | DEF_BENCH(return new RotRectBench(true, kConstantOpaque_ColorType, SkBlendMode::kSrcOver);) |
| 162 | DEF_BENCH(return new RotRectBench(true, kConstantTransparent_ColorType, SkBlendMode::kSrcOver);) |
| 163 | DEF_BENCH(return new RotRectBench(true, kChangingOpaque_ColorType, SkBlendMode::kSrcOver);) |
| 164 | DEF_BENCH(return new RotRectBench(true, kChangingTransparent_ColorType, SkBlendMode::kSrcOver);) |
| 165 | DEF_BENCH(return new RotRectBench(true, kAlternatingOpaqueAndTransparent_ColorType, SkBlendMode::kSrcOver);) |
bsalomon | 6563562 | 2014-08-08 07:43:29 -0700 | [diff] [blame] | 166 | |
reed | 374772b | 2016-10-05 17:33:02 -0700 | [diff] [blame] | 167 | DEF_BENCH(return new RotRectBench(false, kConstantOpaque_ColorType, SkBlendMode::kSrcOver);) |
| 168 | DEF_BENCH(return new RotRectBench(false, kConstantTransparent_ColorType, SkBlendMode::kSrcOver);) |
| 169 | DEF_BENCH(return new RotRectBench(false, kChangingOpaque_ColorType, SkBlendMode::kSrcOver);) |
| 170 | DEF_BENCH(return new RotRectBench(false, kChangingTransparent_ColorType, SkBlendMode::kSrcOver);) |
| 171 | DEF_BENCH(return new RotRectBench(false, kAlternatingOpaqueAndTransparent_ColorType, SkBlendMode::kSrcOver);) |
bsalomon | 6563562 | 2014-08-08 07:43:29 -0700 | [diff] [blame] | 172 | |
reed | 374772b | 2016-10-05 17:33:02 -0700 | [diff] [blame] | 173 | DEF_BENCH(return new RotRectBench(true, kConstantOpaque_ColorType, SkBlendMode::kSrc);) |
| 174 | DEF_BENCH(return new RotRectBench(true, kConstantTransparent_ColorType, SkBlendMode::kSrc);) |
| 175 | DEF_BENCH(return new RotRectBench(true, kChangingOpaque_ColorType, SkBlendMode::kSrc);) |
| 176 | DEF_BENCH(return new RotRectBench(true, kChangingTransparent_ColorType, SkBlendMode::kSrc);) |
| 177 | DEF_BENCH(return new RotRectBench(true, kAlternatingOpaqueAndTransparent_ColorType, SkBlendMode::kSrc);) |
bsalomon | 6563562 | 2014-08-08 07:43:29 -0700 | [diff] [blame] | 178 | |
reed | 374772b | 2016-10-05 17:33:02 -0700 | [diff] [blame] | 179 | DEF_BENCH(return new RotRectBench(false, kConstantOpaque_ColorType, SkBlendMode::kSrc);) |
| 180 | DEF_BENCH(return new RotRectBench(false, kConstantTransparent_ColorType, SkBlendMode::kSrc);) |
| 181 | DEF_BENCH(return new RotRectBench(false, kChangingOpaque_ColorType, SkBlendMode::kSrc);) |
| 182 | DEF_BENCH(return new RotRectBench(false, kChangingTransparent_ColorType, SkBlendMode::kSrc);) |
| 183 | DEF_BENCH(return new RotRectBench(false, kAlternatingOpaqueAndTransparent_ColorType, SkBlendMode::kSrc);) |
bsalomon | 6563562 | 2014-08-08 07:43:29 -0700 | [diff] [blame] | 184 | |
reed | 374772b | 2016-10-05 17:33:02 -0700 | [diff] [blame] | 185 | DEF_BENCH(return new RotRectBench(true, kConstantOpaque_ColorType, SkBlendMode::kDarken);) |
| 186 | DEF_BENCH(return new RotRectBench(true, kConstantTransparent_ColorType, SkBlendMode::kDarken);) |
| 187 | DEF_BENCH(return new RotRectBench(true, kChangingOpaque_ColorType, SkBlendMode::kDarken);) |
| 188 | DEF_BENCH(return new RotRectBench(true, kChangingTransparent_ColorType, SkBlendMode::kDarken);) |
| 189 | DEF_BENCH(return new RotRectBench(true, kAlternatingOpaqueAndTransparent_ColorType, SkBlendMode::kDarken);) |
bsalomon | 6563562 | 2014-08-08 07:43:29 -0700 | [diff] [blame] | 190 | |
reed | 374772b | 2016-10-05 17:33:02 -0700 | [diff] [blame] | 191 | DEF_BENCH(return new RotRectBench(false, kConstantOpaque_ColorType, SkBlendMode::kDarken);) |
| 192 | DEF_BENCH(return new RotRectBench(false, kConstantTransparent_ColorType, SkBlendMode::kDarken);) |
| 193 | DEF_BENCH(return new RotRectBench(false, kChangingOpaque_ColorType, SkBlendMode::kDarken);) |
| 194 | DEF_BENCH(return new RotRectBench(false, kChangingTransparent_ColorType, SkBlendMode::kDarken);) |
| 195 | DEF_BENCH(return new RotRectBench(false, kAlternatingOpaqueAndTransparent_ColorType, SkBlendMode::kDarken);) |