OLD | NEW |
1 /* | 1 /* |
2 * Copyright 2015 Google Inc. | 2 * Copyright 2015 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 "Benchmark.h" | 8 #include "Benchmark.h" |
9 #include "Resources.h" | 9 #include "Resources.h" |
10 #include "SkCanvas.h" | 10 #include "SkCanvas.h" |
11 #include "SkPaint.h" | 11 #include "SkPaint.h" |
12 #include "SkRandom.h" | 12 #include "SkRandom.h" |
13 #include "SkStream.h" | 13 #include "SkStream.h" |
14 #include "SkString.h" | 14 #include "SkString.h" |
15 #include "SkTemplates.h" | 15 #include "SkTemplates.h" |
16 #include "SkTextBlob.h" | 16 #include "SkTextBlob.h" |
17 #include "SkTypeface.h" | 17 #include "SkTypeface.h" |
18 | 18 |
19 #include "sk_tool_utils.h" | 19 #include "sk_tool_utils.h" |
20 | 20 |
21 /* | 21 /* |
22 * A trivial test which benchmarks the performance of a textblob with a single r
un. | 22 * A trivial test which benchmarks the performance of a textblob with a single r
un. |
23 */ | 23 */ |
24 class TextBlobBench : public Benchmark { | 24 class TextBlobBench : public Benchmark { |
25 public: | 25 public: |
26 TextBlobBench() | 26 TextBlobBench() {} |
27 : fTypeface(nullptr) { | |
28 } | |
29 | 27 |
30 protected: | 28 protected: |
31 void onDelayedSetup() override { | 29 void onDelayedSetup() override { |
32 fTypeface.reset(sk_tool_utils::create_portable_typeface("serif", SkTypef
ace::kNormal)); | 30 fTypeface = sk_tool_utils::create_portable_typeface("serif", SkTypeface:
:kNormal); |
33 // make textblob | 31 // make textblob |
34 SkPaint paint; | 32 SkPaint paint; |
35 paint.setTypeface(fTypeface); | 33 paint.setTypeface(fTypeface); |
36 const char* text = "Hello blob!"; | 34 const char* text = "Hello blob!"; |
37 SkTDArray<uint16_t> glyphs; | 35 SkTDArray<uint16_t> glyphs; |
38 size_t len = strlen(text); | 36 size_t len = strlen(text); |
39 glyphs.append(paint.textToGlyphs(text, len, nullptr)); | 37 glyphs.append(paint.textToGlyphs(text, len, nullptr)); |
40 paint.textToGlyphs(text, len, glyphs.begin()); | 38 paint.textToGlyphs(text, len, glyphs.begin()); |
41 | 39 |
42 SkTextBlobBuilder builder; | 40 SkTextBlobBuilder builder; |
(...skipping 14 matching lines...) Expand all Loading... |
57 SkPaint paint; | 55 SkPaint paint; |
58 | 56 |
59 // To ensure maximum caching, we just redraw the blob at the same place
everytime | 57 // To ensure maximum caching, we just redraw the blob at the same place
everytime |
60 for (int i = 0; i < loops; i++) { | 58 for (int i = 0; i < loops; i++) { |
61 canvas->drawTextBlob(fBlob, 0, 0, paint); | 59 canvas->drawTextBlob(fBlob, 0, 0, paint); |
62 } | 60 } |
63 } | 61 } |
64 | 62 |
65 private: | 63 private: |
66 | 64 |
67 SkAutoTUnref<const SkTextBlob> fBlob; | 65 SkAutoTUnref<const SkTextBlob> fBlob; |
68 SkTDArray<uint16_t> fGlyphs; | 66 SkTDArray<uint16_t> fGlyphs; |
69 SkAutoTUnref<SkTypeface> fTypeface; | 67 sk_sp<SkTypeface> fTypeface; |
70 | 68 |
71 typedef Benchmark INHERITED; | 69 typedef Benchmark INHERITED; |
72 }; | 70 }; |
73 | 71 |
74 DEF_BENCH( return new TextBlobBench(); ) | 72 DEF_BENCH( return new TextBlobBench(); ) |
OLD | NEW |