blob: e692588efabb17dfba9feac5e5ee1d419c7f90de [file] [log] [blame]
herb1052f512015-09-18 12:09:43 -07001/*
2 * Copyright 2015 Google Inc.
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
7
8
Mike Kleinc0bd9f92019-04-23 12:05:21 -05009#include "src/core/SkStrike.h"
herb1052f512015-09-18 12:09:43 -070010
Mike Kleinc0bd9f92019-04-23 12:05:21 -050011#include "bench/Benchmark.h"
12#include "include/core/SkCanvas.h"
13#include "include/core/SkGraphics.h"
14#include "include/core/SkTypeface.h"
15#include "src/core/SkStrikeCache.h"
16#include "src/core/SkTaskGroup.h"
17#include "tools/ToolUtils.h"
herb1052f512015-09-18 12:09:43 -070018
Mike Reed32c60662018-11-28 10:28:07 -050019static void do_font_stuff(SkFont* font) {
20 SkPaint defaultPaint;
herb1052f512015-09-18 12:09:43 -070021 for (SkScalar i = 8; i < 64; i++) {
Mike Reed32c60662018-11-28 10:28:07 -050022 font->setSize(i);
Herb Derbyfa996902018-04-18 11:36:12 -040023 auto cache = SkStrikeCache::FindOrCreateStrikeExclusive(
Mike Reed32c60662018-11-28 10:28:07 -050024 *font, defaultPaint, SkSurfaceProps(0, kUnknown_SkPixelGeometry),
Herb Derbyc3415002018-11-08 16:40:26 -050025 SkScalerContextFlags::kNone, SkMatrix::I());
herb1052f512015-09-18 12:09:43 -070026 uint16_t glyphs['z'];
27 for (int c = ' '; c < 'z'; c++) {
Mike Reedfdb876d2019-02-01 09:55:20 -050028 glyphs[c] = font->unicharToGlyph(c);
herb1052f512015-09-18 12:09:43 -070029 }
30 for (int lookups = 0; lookups < 10; lookups++) {
31 for (int c = ' '; c < 'z'; c++) {
32 const SkGlyph& g = cache->getGlyphIDMetrics(glyphs[c]);
33 cache->findImage(g);
34 }
35 }
36
37 }
38}
39
40class SkGlyphCacheBasic : public Benchmark {
41public:
42 explicit SkGlyphCacheBasic(size_t cacheSize) : fCacheSize(cacheSize) { }
43
44protected:
45 const char* onGetName() override {
46 fName.printf("SkGlyphCacheBasic%dK", (int)(fCacheSize >> 10));
47 return fName.c_str();
48 }
49
50 bool isSuitableFor(Backend backend) override {
51 return backend == kNonRendering_Backend;
52 }
53
mtkleina1ebeb22015-10-01 09:43:39 -070054 void onDraw(int loops, SkCanvas*) override {
herb1052f512015-09-18 12:09:43 -070055 size_t oldCacheLimitSize = SkGraphics::GetFontCacheLimit();
56 SkGraphics::SetFontCacheLimit(fCacheSize);
Mike Reed32c60662018-11-28 10:28:07 -050057 SkFont font;
58 font.setEdging(SkFont::Edging::kAntiAlias);
59 font.setSubpixel(true);
Mike Kleinea3f0142019-03-20 11:12:10 -050060 font.setTypeface(ToolUtils::create_portable_typeface("serif", SkFontStyle::Italic()));
herb1052f512015-09-18 12:09:43 -070061
62 for (int work = 0; work < loops; work++) {
Mike Reed32c60662018-11-28 10:28:07 -050063 do_font_stuff(&font);
herb1052f512015-09-18 12:09:43 -070064 }
65 SkGraphics::SetFontCacheLimit(oldCacheLimitSize);
66 }
67
68private:
69 typedef Benchmark INHERITED;
70 const size_t fCacheSize;
71 SkString fName;
72};
73
74class SkGlyphCacheStressTest : public Benchmark {
75public:
76 explicit SkGlyphCacheStressTest(int cacheSize) : fCacheSize(cacheSize) { }
77
78protected:
79 const char* onGetName() override {
80 fName.printf("SkGlyphCacheStressTest%dK", (int)(fCacheSize >> 10));
81 return fName.c_str();
82 }
83
84 bool isSuitableFor(Backend backend) override {
85 return backend == kNonRendering_Backend;
86 }
87
mtkleina1ebeb22015-10-01 09:43:39 -070088 void onDraw(int loops, SkCanvas*) override {
herb1052f512015-09-18 12:09:43 -070089 size_t oldCacheLimitSize = SkGraphics::GetFontCacheLimit();
90 SkGraphics::SetFontCacheLimit(fCacheSize);
Mike Kleinea3f0142019-03-20 11:12:10 -050091 sk_sp<SkTypeface> typefaces[] = {
92 ToolUtils::create_portable_typeface("serif", SkFontStyle::Italic()),
93 ToolUtils::create_portable_typeface("sans-serif", SkFontStyle::Italic())};
herb1052f512015-09-18 12:09:43 -070094
95 for (int work = 0; work < loops; work++) {
mtklein279c7862016-01-04 19:13:19 -080096 SkTaskGroup().batch(16, [&](int threadIndex) {
Mike Reed32c60662018-11-28 10:28:07 -050097 SkFont font;
98 font.setEdging(SkFont::Edging::kAntiAlias);
99 font.setSubpixel(true);
100 font.setTypeface(typefaces[threadIndex % 2]);
101 do_font_stuff(&font);
herb1052f512015-09-18 12:09:43 -0700102 });
103 }
104 SkGraphics::SetFontCacheLimit(oldCacheLimitSize);
herb1052f512015-09-18 12:09:43 -0700105 }
106
107private:
108 typedef Benchmark INHERITED;
109 const size_t fCacheSize;
110 SkString fName;
111};
112
113DEF_BENCH( return new SkGlyphCacheBasic(256 * 1024); )
114DEF_BENCH( return new SkGlyphCacheBasic(32 * 1024 * 1024); )
115DEF_BENCH( return new SkGlyphCacheStressTest(256 * 1024); )
116DEF_BENCH( return new SkGlyphCacheStressTest(32 * 1024 * 1024); )