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