blob: 794ff5fcce53229b02117fcad1e4f5101ba01e24 [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"
Herb Derbybaf64782019-04-17 18:01:04 -040016#include "src/core/SkStrikeSpec.h"
Mike Kleinc0bd9f92019-04-23 12:05:21 -050017#include "src/core/SkTaskGroup.h"
18#include "tools/ToolUtils.h"
herb1052f512015-09-18 12:09:43 -070019
Mike Reed32c60662018-11-28 10:28:07 -050020static void do_font_stuff(SkFont* font) {
21 SkPaint defaultPaint;
herb1052f512015-09-18 12:09:43 -070022 for (SkScalar i = 8; i < 64; i++) {
Mike Reed32c60662018-11-28 10:28:07 -050023 font->setSize(i);
Herb Derby36a54c12019-06-06 10:50:56 -040024 auto strikeSpec = SkStrikeSpec::MakeMask(
Mike Reed32c60662018-11-28 10:28:07 -050025 *font, defaultPaint, SkSurfaceProps(0, kUnknown_SkPixelGeometry),
Herb Derbyc3415002018-11-08 16:40:26 -050026 SkScalerContextFlags::kNone, SkMatrix::I());
Herb Derby55a85fc2019-07-03 14:46:05 -040027 SkPackedGlyphID glyphs['z'];
herb1052f512015-09-18 12:09:43 -070028 for (int c = ' '; c < 'z'; c++) {
Herb Derby55a85fc2019-07-03 14:46:05 -040029 glyphs[c] = SkPackedGlyphID{font->unicharToGlyph(c)};
herb1052f512015-09-18 12:09:43 -070030 }
Herb Derby55a85fc2019-07-03 14:46:05 -040031 constexpr size_t glyphCount = 'z' - ' ';
32 SkSpan<const SkPackedGlyphID> glyphIDs{&glyphs[SkTo<int>(' ')], glyphCount};
33 SkBulkGlyphMetricsAndImages images{strikeSpec};
herb1052f512015-09-18 12:09:43 -070034 for (int lookups = 0; lookups < 10; lookups++) {
Herb Derby55a85fc2019-07-03 14:46:05 -040035 (void)images.glyphs(glyphIDs);
herb1052f512015-09-18 12:09:43 -070036 }
herb1052f512015-09-18 12:09:43 -070037 }
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); )