Jim Van Verth | 753403c | 2018-12-18 11:04:37 -0500 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2018 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 | // GM to stress TextBlob regeneration and the GPU font cache |
| 9 | // It's not necessary to run this with CPU configs |
| 10 | // |
| 11 | // The point here is to draw a set of text that will fit in one Plot, and then some large |
| 12 | // text. After a flush we draw the first set of text again with a slightly different color, |
| 13 | // and then enough new large text to spill the entire atlas. What *should* happen is that |
| 14 | // the Plot with the first set of text will not get overwritten by the new large text. |
| 15 | |
Mike Klein | c0bd9f9 | 2019-04-23 12:05:21 -0500 | [diff] [blame] | 16 | #include "gm/gm.h" |
Mike Klein | c0bd9f9 | 2019-04-23 12:05:21 -0500 | [diff] [blame] | 17 | #include "include/core/SkCanvas.h" |
Ben Wagner | 7fde8e1 | 2019-05-01 17:28:53 -0400 | [diff] [blame] | 18 | #include "include/core/SkColor.h" |
| 19 | #include "include/core/SkFont.h" |
| 20 | #include "include/core/SkFontStyle.h" |
| 21 | #include "include/core/SkFontTypes.h" |
| 22 | #include "include/core/SkPaint.h" |
| 23 | #include "include/core/SkRefCnt.h" |
| 24 | #include "include/core/SkScalar.h" |
| 25 | #include "include/core/SkSize.h" |
| 26 | #include "include/core/SkString.h" |
| 27 | #include "include/core/SkTextBlob.h" |
Mike Klein | c0bd9f9 | 2019-04-23 12:05:21 -0500 | [diff] [blame] | 28 | #include "include/core/SkTypeface.h" |
Ben Wagner | 7fde8e1 | 2019-05-01 17:28:53 -0400 | [diff] [blame] | 29 | #include "include/core/SkTypes.h" |
Mike Klein | c0bd9f9 | 2019-04-23 12:05:21 -0500 | [diff] [blame] | 30 | #include "include/gpu/GrContext.h" |
| 31 | #include "include/gpu/GrContextOptions.h" |
Ben Wagner | 7fde8e1 | 2019-05-01 17:28:53 -0400 | [diff] [blame] | 32 | #include "include/private/GrTypesPriv.h" |
| 33 | #include "include/private/SkTemplates.h" |
Mike Klein | c0bd9f9 | 2019-04-23 12:05:21 -0500 | [diff] [blame] | 34 | #include "src/gpu/GrContextPriv.h" |
Mike Klein | c0bd9f9 | 2019-04-23 12:05:21 -0500 | [diff] [blame] | 35 | #include "tools/ToolUtils.h" |
Jim Van Verth | 753403c | 2018-12-18 11:04:37 -0500 | [diff] [blame] | 36 | |
Ben Wagner | 7fde8e1 | 2019-05-01 17:28:53 -0400 | [diff] [blame] | 37 | class GrRenderTargetContext; |
| 38 | |
Jim Van Verth | 753403c | 2018-12-18 11:04:37 -0500 | [diff] [blame] | 39 | static sk_sp<SkTextBlob> make_blob(const SkString& text, const SkFont& font) { |
| 40 | size_t len = text.size(); |
| 41 | SkAutoTArray<SkScalar> pos(len); |
| 42 | SkAutoTArray<SkGlyphID> glyphs(len); |
| 43 | |
| 44 | font.textToGlyphs(text.c_str(), len, SkTextEncoding::kUTF8, glyphs.get(), len); |
| 45 | font.getXPos(glyphs.get(), len, pos.get()); |
| 46 | return SkTextBlob::MakeFromPosTextH(text.c_str(), len, pos.get(), 0, font); |
| 47 | } |
| 48 | |
Chris Dalton | 3a77837 | 2019-02-07 15:23:36 -0700 | [diff] [blame] | 49 | class FontRegenGM : public skiagm::GpuGM { |
Jim Van Verth | 753403c | 2018-12-18 11:04:37 -0500 | [diff] [blame] | 50 | |
| 51 | void modifyGrContextOptions(GrContextOptions* options) override { |
| 52 | options->fGlyphCacheTextureMaximumBytes = 0; |
| 53 | options->fAllowMultipleGlyphCacheTextures = GrContextOptions::Enable::kNo; |
| 54 | } |
| 55 | |
Hal Canary | fa3305a | 2019-07-18 12:36:54 -0400 | [diff] [blame] | 56 | SkString onShortName() override { return SkString("fontregen"); } |
Jim Van Verth | 753403c | 2018-12-18 11:04:37 -0500 | [diff] [blame] | 57 | |
Hal Canary | fa3305a | 2019-07-18 12:36:54 -0400 | [diff] [blame] | 58 | SkISize onISize() override { return {kSize, kSize}; } |
Jim Van Verth | 753403c | 2018-12-18 11:04:37 -0500 | [diff] [blame] | 59 | |
| 60 | void onOnceBeforeDraw() override { |
Hal Canary | fa3305a | 2019-07-18 12:36:54 -0400 | [diff] [blame] | 61 | this->setBGColor(SK_ColorLTGRAY); |
| 62 | |
Mike Klein | ea3f014 | 2019-03-20 11:12:10 -0500 | [diff] [blame] | 63 | auto tf = ToolUtils::create_portable_typeface("sans-serif", SkFontStyle::Normal()); |
Jim Van Verth | 753403c | 2018-12-18 11:04:37 -0500 | [diff] [blame] | 64 | |
| 65 | static const SkString kTexts[] = { |
| 66 | SkString("abcdefghijklmnopqrstuvwxyz"), |
| 67 | SkString("ABCDEFGHI"), |
| 68 | SkString("NOPQRSTUV") |
| 69 | }; |
| 70 | |
| 71 | SkFont font; |
| 72 | font.setEdging(SkFont::Edging::kAntiAlias); |
| 73 | font.setSubpixel(false); |
| 74 | font.setSize(80); |
| 75 | font.setTypeface(tf); |
| 76 | |
| 77 | fBlobs[0] = make_blob(kTexts[0], font); |
| 78 | font.setSize(162); |
| 79 | fBlobs[1] = make_blob(kTexts[1], font); |
| 80 | fBlobs[2] = make_blob(kTexts[2], font); |
| 81 | } |
| 82 | |
Robert Phillips | 9882dae | 2019-03-04 11:00:10 -0500 | [diff] [blame] | 83 | void onDraw(GrContext* context, GrRenderTargetContext*, SkCanvas* canvas) override { |
Jim Van Verth | 753403c | 2018-12-18 11:04:37 -0500 | [diff] [blame] | 84 | SkPaint paint; |
| 85 | paint.setColor(SK_ColorBLACK); |
| 86 | canvas->drawTextBlob(fBlobs[0], 10, 80, paint); |
| 87 | canvas->drawTextBlob(fBlobs[1], 10, 225, paint); |
Robert Phillips | 9882dae | 2019-03-04 11:00:10 -0500 | [diff] [blame] | 88 | context->flush(); |
Jim Van Verth | 753403c | 2018-12-18 11:04:37 -0500 | [diff] [blame] | 89 | |
| 90 | paint.setColor(0xFF010101); |
| 91 | canvas->drawTextBlob(fBlobs[0], 10, 305, paint); |
| 92 | canvas->drawTextBlob(fBlobs[2], 10, 465, paint); |
| 93 | |
| 94 | // Debugging tool for GPU. |
| 95 | static const bool kShowAtlas = false; |
| 96 | if (kShowAtlas) { |
Robert Phillips | 19104af | 2019-03-05 12:51:52 -0500 | [diff] [blame] | 97 | auto img = context->priv().testingOnly_getFontAtlasImage(kA8_GrMaskFormat); |
| 98 | canvas->drawImage(img, 200, 0); |
Jim Van Verth | 753403c | 2018-12-18 11:04:37 -0500 | [diff] [blame] | 99 | } |
| 100 | } |
| 101 | |
| 102 | private: |
Hal Canary | fa3305a | 2019-07-18 12:36:54 -0400 | [diff] [blame] | 103 | static constexpr int kSize = 512; |
Jim Van Verth | 753403c | 2018-12-18 11:04:37 -0500 | [diff] [blame] | 104 | |
| 105 | sk_sp<SkTextBlob> fBlobs[3]; |
| 106 | typedef GM INHERITED; |
| 107 | }; |
| 108 | |
Jim Van Verth | 753403c | 2018-12-18 11:04:37 -0500 | [diff] [blame] | 109 | ////////////////////////////////////////////////////////////////////////////// |
| 110 | |
| 111 | DEF_GM(return new FontRegenGM()) |