| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright 2011 Google Inc. | 2 * Copyright 2011 Google Inc. |
| 3 * | 3 * |
| 4 * Use of this source code is governed by a BSD-style license that can be | 4 * Use of this source code is governed by a BSD-style license that can be |
| 5 * found in the LICENSE file. | 5 * found in the LICENSE file. |
| 6 */ | 6 */ |
| 7 | 7 |
| 8 #include "SkBenchmark.h" | 8 #include "SkBenchmark.h" |
| 9 #include "SkCanvas.h" | 9 #include "SkCanvas.h" |
| 10 #include "SkGraphics.h" | 10 #include "SkGraphics.h" |
| 11 #include "SkPaint.h" | 11 #include "SkPaint.h" |
| 12 #include "SkRandom.h" | 12 #include "SkRandom.h" |
| 13 #include "SkString.h" | 13 #include "SkString.h" |
| 14 | 14 |
| 15 extern bool gSkSuppressFontCachePurgeSpew; | 15 extern bool gSkSuppressFontCachePurgeSpew; |
| 16 | 16 |
| 17 class FontScalerBench : public SkBenchmark { | 17 class FontScalerBench : public SkBenchmark { |
| 18 SkString fName; | 18 SkString fName; |
| 19 SkString fText; | 19 SkString fText; |
| 20 bool fDoLCD; | 20 bool fDoLCD; |
| 21 public: | 21 public: |
| 22 FontScalerBench(void* param, bool doLCD) : INHERITED(param) { | 22 FontScalerBench(bool doLCD) { |
| 23 fName.printf("fontscaler_%s", doLCD ? "lcd" : "aa"); | 23 fName.printf("fontscaler_%s", doLCD ? "lcd" : "aa"); |
| 24 fText.set("abcdefghijklmnopqrstuvwxyz01234567890"); | 24 fText.set("abcdefghijklmnopqrstuvwxyz01234567890"); |
| 25 fDoLCD = doLCD; | 25 fDoLCD = doLCD; |
| 26 } | 26 } |
| 27 | 27 |
| 28 protected: | 28 protected: |
| 29 virtual const char* onGetName() { return fName.c_str(); } | 29 virtual const char* onGetName() { return fName.c_str(); } |
| 30 virtual void onDraw(SkCanvas* canvas) { | 30 virtual void onDraw(SkCanvas* canvas) { |
| 31 SkPaint paint; | 31 SkPaint paint; |
| 32 this->setupPaint(&paint); | 32 this->setupPaint(&paint); |
| (...skipping 15 matching lines...) Expand all Loading... |
| 48 } | 48 } |
| 49 | 49 |
| 50 gSkSuppressFontCachePurgeSpew = prev; | 50 gSkSuppressFontCachePurgeSpew = prev; |
| 51 } | 51 } |
| 52 private: | 52 private: |
| 53 typedef SkBenchmark INHERITED; | 53 typedef SkBenchmark INHERITED; |
| 54 }; | 54 }; |
| 55 | 55 |
| 56 /////////////////////////////////////////////////////////////////////////////// | 56 /////////////////////////////////////////////////////////////////////////////// |
| 57 | 57 |
| 58 static SkBenchmark* Fact0(void* p) { return SkNEW_ARGS(FontScalerBench, (p, fals
e)); } | 58 DEF_BENCH( return SkNEW_ARGS(FontScalerBench, (false)); ) |
| 59 static SkBenchmark* Fact1(void* p) { return SkNEW_ARGS(FontScalerBench, (p, true
)); } | 59 DEF_BENCH( return SkNEW_ARGS(FontScalerBench, (true)); ) |
| 60 | |
| 61 static BenchRegistry gReg0(Fact0); | |
| 62 static BenchRegistry gReg1(Fact1); | |
| OLD | NEW |