reed@google.com | cc58651 | 2011-11-15 15:29: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 | */ |
tfarina | f168b86 | 2014-06-19 12:32:29 -0700 | [diff] [blame] | 8 | #include "Benchmark.h" |
reed@google.com | cc58651 | 2011-11-15 15:29:45 +0000 | [diff] [blame] | 9 | #include "SkCanvas.h" |
| 10 | #include "SkColorShader.h" |
reed@google.com | cc58651 | 2011-11-15 15:29:45 +0000 | [diff] [blame] | 11 | #include "SkPaint.h" |
| 12 | #include "SkRandom.h" |
reed@google.com | cc58651 | 2011-11-15 15:29:45 +0000 | [diff] [blame] | 13 | #include "SkString.h" |
| 14 | #include "SkTemplates.h" |
| 15 | |
| 16 | #define STR "Hamburgefons" |
| 17 | |
| 18 | enum FontQuality { |
| 19 | kBW, |
| 20 | kAA, |
| 21 | kLCD |
| 22 | }; |
| 23 | |
| 24 | static const char* fontQualityName(const SkPaint& paint) { |
| 25 | if (!paint.isAntiAlias()) { |
| 26 | return "BW"; |
| 27 | } |
| 28 | if (paint.isLCDRenderText()) { |
| 29 | return "LCD"; |
| 30 | } |
| 31 | return "AA"; |
| 32 | } |
| 33 | |
tfarina | f168b86 | 2014-06-19 12:32:29 -0700 | [diff] [blame] | 34 | class ShaderMaskBench : public Benchmark { |
reed@google.com | cc58651 | 2011-11-15 15:29:45 +0000 | [diff] [blame] | 35 | SkPaint fPaint; |
| 36 | SkString fText; |
| 37 | SkString fName; |
| 38 | FontQuality fFQ; |
reed@google.com | cc58651 | 2011-11-15 15:29:45 +0000 | [diff] [blame] | 39 | public: |
mtklein@google.com | 410e6e8 | 2013-09-13 19:52:27 +0000 | [diff] [blame] | 40 | ShaderMaskBench(bool isOpaque, FontQuality fq) { |
reed@google.com | cc58651 | 2011-11-15 15:29:45 +0000 | [diff] [blame] | 41 | fFQ = fq; |
| 42 | fText.set(STR); |
| 43 | |
| 44 | fPaint.setAntiAlias(kBW != fq); |
| 45 | fPaint.setLCDRenderText(kLCD == fq); |
commit-bot@chromium.org | 76a3b2a | 2014-04-24 16:54:46 +0000 | [diff] [blame] | 46 | fPaint.setShader(new SkColorShader(isOpaque ? 0xFFFFFFFF : 0x80808080))->unref(); |
reed@google.com | cc58651 | 2011-11-15 15:29:45 +0000 | [diff] [blame] | 47 | } |
| 48 | |
| 49 | protected: |
| 50 | virtual const char* onGetName() { |
tomhudson@google.com | 8afae61 | 2012-08-14 15:03:35 +0000 | [diff] [blame] | 51 | fName.printf("shadermask"); |
reed@google.com | cc58651 | 2011-11-15 15:29:45 +0000 | [diff] [blame] | 52 | fName.appendf("_%s", fontQualityName(fPaint)); |
| 53 | fName.appendf("_%02X", fPaint.getAlpha()); |
| 54 | return fName.c_str(); |
| 55 | } |
| 56 | |
mtklein | a1ebeb2 | 2015-10-01 09:43:39 -0700 | [diff] [blame] | 57 | virtual void onDraw(int loops, SkCanvas* canvas) { |
reed@google.com | cc58651 | 2011-11-15 15:29:45 +0000 | [diff] [blame] | 58 | const SkIPoint dim = this->getSize(); |
commit-bot@chromium.org | e0e7cfe | 2013-09-09 20:09:12 +0000 | [diff] [blame] | 59 | SkRandom rand; |
reed@google.com | cc58651 | 2011-11-15 15:29:45 +0000 | [diff] [blame] | 60 | |
| 61 | SkPaint paint(fPaint); |
| 62 | this->setupPaint(&paint); |
| 63 | // explicitly need these |
| 64 | paint.setAlpha(fPaint.getAlpha()); |
| 65 | paint.setAntiAlias(kBW != fFQ); |
| 66 | paint.setLCDRenderText(kLCD == fFQ); |
| 67 | |
| 68 | const SkScalar x0 = SkIntToScalar(-10); |
| 69 | const SkScalar y0 = SkIntToScalar(-10); |
rmistry@google.com | fbfcd56 | 2012-08-23 18:09:54 +0000 | [diff] [blame] | 70 | |
reed@google.com | cc58651 | 2011-11-15 15:29:45 +0000 | [diff] [blame] | 71 | paint.setTextSize(SkIntToScalar(12)); |
commit-bot@chromium.org | 3361471 | 2013-12-03 18:17:16 +0000 | [diff] [blame] | 72 | for (int i = 0; i < loops; i++) { |
reed@google.com | cc58651 | 2011-11-15 15:29:45 +0000 | [diff] [blame] | 73 | SkScalar x = x0 + rand.nextUScalar1() * dim.fX; |
| 74 | SkScalar y = y0 + rand.nextUScalar1() * dim.fY; |
| 75 | canvas->drawText(fText.c_str(), fText.size(), x, y, paint); |
| 76 | } |
rmistry@google.com | fbfcd56 | 2012-08-23 18:09:54 +0000 | [diff] [blame] | 77 | |
reed@google.com | cc58651 | 2011-11-15 15:29:45 +0000 | [diff] [blame] | 78 | paint.setTextSize(SkIntToScalar(48)); |
commit-bot@chromium.org | 3361471 | 2013-12-03 18:17:16 +0000 | [diff] [blame] | 79 | for (int i = 0; i < loops / 4 ; i++) { |
reed@google.com | cc58651 | 2011-11-15 15:29:45 +0000 | [diff] [blame] | 80 | SkScalar x = x0 + rand.nextUScalar1() * dim.fX; |
| 81 | SkScalar y = y0 + rand.nextUScalar1() * dim.fY; |
| 82 | canvas->drawText(fText.c_str(), fText.size(), x, y, paint); |
| 83 | } |
| 84 | } |
| 85 | |
| 86 | private: |
tfarina | f168b86 | 2014-06-19 12:32:29 -0700 | [diff] [blame] | 87 | typedef Benchmark INHERITED; |
reed@google.com | cc58651 | 2011-11-15 15:29:45 +0000 | [diff] [blame] | 88 | }; |
| 89 | |
| 90 | /////////////////////////////////////////////////////////////////////////////// |
| 91 | |
mtklein@google.com | 410e6e8 | 2013-09-13 19:52:27 +0000 | [diff] [blame] | 92 | DEF_BENCH( return new ShaderMaskBench(true, kBW); ) |
| 93 | DEF_BENCH( return new ShaderMaskBench(false, kBW); ) |
| 94 | DEF_BENCH( return new ShaderMaskBench(true, kAA); ) |
| 95 | DEF_BENCH( return new ShaderMaskBench(false, kAA); ) |
| 96 | DEF_BENCH( return new ShaderMaskBench(true, kLCD); ) |
| 97 | DEF_BENCH( return new ShaderMaskBench(false, kLCD); ) |