OLD | NEW |
1 /* | 1 /* |
2 * Copyright 2013 Google Inc. | 2 * Copyright 2013 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 "SkCanvas.h" | 9 #include "SkCanvas.h" |
10 #include "SkChecksum.h" | 10 #include "SkChecksum.h" |
11 #include "SkFontHost.h" | |
12 #include "SkPaint.h" | 11 #include "SkPaint.h" |
13 #include "SkString.h" | 12 #include "SkString.h" |
14 #include "SkTemplates.h" | 13 #include "SkTemplates.h" |
15 | 14 |
16 #include "gUniqueGlyphIDs.h" | 15 #include "gUniqueGlyphIDs.h" |
17 #define gUniqueGlyphIDs_Sentinel 0xFFFF | 16 #define gUniqueGlyphIDs_Sentinel 0xFFFF |
18 | 17 |
19 static int count_glyphs(const uint16_t start[]) { | 18 static int count_glyphs(const uint16_t start[]) { |
20 const uint16_t* curr = start; | 19 const uint16_t* curr = start; |
21 while (*curr != gUniqueGlyphIDs_Sentinel) { | 20 while (*curr != gUniqueGlyphIDs_Sentinel) { |
(...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
139 private: | 138 private: |
140 typedef Benchmark INHERITED; | 139 typedef Benchmark INHERITED; |
141 }; | 140 }; |
142 | 141 |
143 /////////////////////////////////////////////////////////////////////////////// | 142 /////////////////////////////////////////////////////////////////////////////// |
144 | 143 |
145 DEF_BENCH( return new FontCacheBench(); ) | 144 DEF_BENCH( return new FontCacheBench(); ) |
146 | 145 |
147 // undefine this to run the efficiency test | 146 // undefine this to run the efficiency test |
148 //DEF_BENCH( return new FontCacheEfficiency(); ) | 147 //DEF_BENCH( return new FontCacheEfficiency(); ) |
OLD | NEW |