blob: f7a1313fb96cb1dadb61627031e5417284e6590f [file] [log] [blame]
commit-bot@chromium.org338a49f2013-10-09 18:12:23 +00001/*
2 * Copyright 2013 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
Jim Van Verthfc4f7682018-01-25 16:26:25 -05008// GM to stress the GPU font cache
9// It's not necessary to run this with CPU configs
10
11#include "gm.h"
12
13#if SK_SUPPORT_GPU
14
Brian Salomon9f545bc2017-11-06 10:36:57 -050015#include "GrContext.h"
16#include "GrContextOptions.h"
commit-bot@chromium.org338a49f2013-10-09 18:12:23 +000017#include "SkCanvas.h"
18#include "SkGraphics.h"
Brian Salomon9f545bc2017-11-06 10:36:57 -050019#include "SkImage.h"
commit-bot@chromium.org338a49f2013-10-09 18:12:23 +000020#include "SkTypeface.h"
Brian Salomon9f545bc2017-11-06 10:36:57 -050021#include "gm.h"
22#include "sk_tool_utils.h"
commit-bot@chromium.org338a49f2013-10-09 18:12:23 +000023
commit-bot@chromium.org338a49f2013-10-09 18:12:23 +000024static SkScalar draw_string(SkCanvas* canvas, const SkString& text, SkScalar x,
25 SkScalar y, const SkPaint& paint) {
Cary Clark2a475ea2017-04-28 15:35:12 -040026 canvas->drawString(text, x, y, paint);
commit-bot@chromium.org338a49f2013-10-09 18:12:23 +000027 return x + paint.measureText(text.c_str(), text.size());
28}
29
30class FontCacheGM : public skiagm::GM {
31public:
Jim Van Verthfc4f7682018-01-25 16:26:25 -050032 FontCacheGM(GrContextOptions::Enable allowMultipleTextures)
33 : fAllowMultipleTextures(allowMultipleTextures) {
34 this->setBGColor(SK_ColorLTGRAY);
35 }
Brian Salomon9f545bc2017-11-06 10:36:57 -050036
37 void modifyGrContextOptions(GrContextOptions* options) override {
38 options->fGlyphCacheTextureMaximumBytes = 0;
Jim Van Verthfc4f7682018-01-25 16:26:25 -050039 options->fAllowMultipleGlyphCacheTextures = fAllowMultipleTextures;
Brian Salomon9f545bc2017-11-06 10:36:57 -050040 }
skia.committer@gmail.comf29c3802013-10-10 07:01:40 +000041
commit-bot@chromium.org338a49f2013-10-09 18:12:23 +000042protected:
mtklein36352bf2015-03-25 18:17:31 -070043 SkString onShortName() override {
Jim Van Verthfc4f7682018-01-25 16:26:25 -050044 SkString name("fontcache");
45 if (GrContextOptions::Enable::kYes == fAllowMultipleTextures) {
46 name.append("-mt");
47 }
48 return name;
commit-bot@chromium.org338a49f2013-10-09 18:12:23 +000049 }
50
Brian Salomon9f545bc2017-11-06 10:36:57 -050051 SkISize onISize() override { return SkISize::Make(kSize, kSize); }
commit-bot@chromium.org338a49f2013-10-09 18:12:23 +000052
mtklein36352bf2015-03-25 18:17:31 -070053 void onOnceBeforeDraw() override {
Ben Wagner71319502017-07-27 10:45:29 -040054 fTypefaces[0] = sk_tool_utils::create_portable_typeface("serif", SkFontStyle::Italic());
55 fTypefaces[1] = sk_tool_utils::create_portable_typeface("sans-serif",SkFontStyle::Italic());
Brian Salomon9f545bc2017-11-06 10:36:57 -050056 fTypefaces[2] = sk_tool_utils::create_portable_typeface("serif", SkFontStyle::Normal());
57 fTypefaces[3] =
58 sk_tool_utils::create_portable_typeface("sans-serif", SkFontStyle::Normal());
59 fTypefaces[4] = sk_tool_utils::create_portable_typeface("serif", SkFontStyle::Bold());
60 fTypefaces[5] = sk_tool_utils::create_portable_typeface("sans-serif", SkFontStyle::Bold());
commit-bot@chromium.org338a49f2013-10-09 18:12:23 +000061 }
skia.committer@gmail.comf29c3802013-10-10 07:01:40 +000062
mtklein36352bf2015-03-25 18:17:31 -070063 void onDraw(SkCanvas* canvas) override {
Jim Van Verthfc4f7682018-01-25 16:26:25 -050064 GrRenderTargetContext* renderTargetContext =
65 canvas->internal_private_accessTopLayerRenderTargetContext();
66 if (!renderTargetContext) {
67 skiagm::GM::DrawGpuOnlyMessage(canvas);
68 return;
69 }
70
Brian Salomon9f545bc2017-11-06 10:36:57 -050071 canvas->clear(SK_ColorLTGRAY);
72 this->drawText(canvas);
73 // Debugging tool for GPU.
74 static const bool kShowAtlas = false;
75 if (kShowAtlas) {
76 if (auto ctx = canvas->getGrContext()) {
77 auto img = ctx->getFontAtlasImage_ForTesting(kA8_GrMaskFormat);
78 canvas->drawImage(img, 0, 0);
79 }
80 }
commit-bot@chromium.org338a49f2013-10-09 18:12:23 +000081 }
82
commit-bot@chromium.org338a49f2013-10-09 18:12:23 +000083private:
Brian Salomon9f545bc2017-11-06 10:36:57 -050084 void drawText(SkCanvas* canvas) {
85 static const int kSizes[] = {8, 9, 10, 11, 12, 13, 18, 20, 25};
86
87 static const SkString kTexts[] = {SkString("ABCDEFGHIJKLMNOPQRSTUVWXYZ"),
88 SkString("abcdefghijklmnopqrstuvwxyz"),
89 SkString("0123456789"),
90 SkString("!@#$%^&*()<>[]{}")};
91 SkPaint paint;
92 paint.setAntiAlias(true);
93 paint.setLCDRenderText(false);
94 paint.setSubpixelText(true);
95
96 static const SkScalar kSubPixelInc = 1 / 2.f;
97 SkScalar x = 0;
98 SkScalar y = 10;
99 SkScalar subpixelX = 0;
100 SkScalar subpixelY = 0;
101 bool offsetX = true;
102
Jim Van Verthfc4f7682018-01-25 16:26:25 -0500103 if (GrContextOptions::Enable::kYes == fAllowMultipleTextures) {
104 canvas->scale(10, 10);
105 }
106
Brian Salomon9f545bc2017-11-06 10:36:57 -0500107 do {
108 for (auto s : kSizes) {
109 auto size = 2 * s;
110 paint.setTextSize(size);
111 for (const auto& typeface : fTypefaces) {
112 paint.setTypeface(typeface);
113 for (const auto& text : kTexts) {
114 x = size + draw_string(canvas, text, x + subpixelX, y + subpixelY, paint);
115 x = SkScalarCeilToScalar(x);
116 if (x + 100 > kSize) {
117 x = 0;
118 y += SkScalarCeilToScalar(size + 3);
119 if (y > kSize) {
120 return;
121 }
122 }
123 }
124 }
125 (offsetX ? subpixelX : subpixelY) += kSubPixelInc;
126 offsetX = !offsetX;
127 }
128 } while (true);
129 }
130
131 static constexpr SkScalar kSize = 1280;
132
Jim Van Verthfc4f7682018-01-25 16:26:25 -0500133 GrContextOptions::Enable fAllowMultipleTextures;
Brian Salomon9f545bc2017-11-06 10:36:57 -0500134 sk_sp<SkTypeface> fTypefaces[6];
commit-bot@chromium.org338a49f2013-10-09 18:12:23 +0000135 typedef GM INHERITED;
136};
137
Brian Salomon9f545bc2017-11-06 10:36:57 -0500138constexpr SkScalar FontCacheGM::kSize;
commit-bot@chromium.org338a49f2013-10-09 18:12:23 +0000139
140//////////////////////////////////////////////////////////////////////////////
141
Jim Van Verthfc4f7682018-01-25 16:26:25 -0500142DEF_GM(return new FontCacheGM(GrContextOptions::Enable::kNo))
143DEF_GM(return new FontCacheGM(GrContextOptions::Enable::kYes))
144
145#endif