blob: c1d8051ebc4cb0979e00ce9a696b53f4a5afbbb6 [file] [log] [blame]
Herb Derbyc27d5352020-08-12 13:58:34 -04001/*
2 * Copyright 2020 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#include "bench/Benchmark.h"
9#include "include/core/SkFont.h"
10#include "include/core/SkTypeface.h"
11#include "include/gpu/GrDirectContext.h"
12#include "include/gpu/GrRecordingContext.h"
13#include "src/core/SkUtils.h"
14#include "src/gpu/GrRecordingContextPriv.h"
15#include "src/gpu/GrRenderTargetContext.h"
16#include "src/gpu/SkGr.h"
17#include "src/gpu/text/GrTextBlob.h"
18#include "src/utils/SkUTF.h"
19
20
21// From Project Guttenberg. This is UTF-8 text.
22static const char* gText =
23 "Call me Ishmael. Some years ago--never mind how long precisely";
24
25class DirectMaskGlyphVertexFillBenchmark : public Benchmark {
26 bool isSuitableFor(Backend backend) override {
27 return backend == kGPU_Backend;
28 }
29
30 const char* onGetName() override {
31 return "DirectMaskGlyphVertexFillBenchmark";
32 }
33
34 void onPerCanvasPreDraw(SkCanvas* canvas) override {
35 auto typeface = SkTypeface::MakeFromName("monospace", SkFontStyle());
36 SkFont font(typeface);
37
38 SkMatrix view = SkMatrix::I();
39 size_t len = strlen(gText);
40 SkGlyphRunBuilder builder;
41 SkPaint paint;
42 builder.drawTextUTF8(paint, font, gText, len, {100, 100});
43 auto glyphRunList = builder.useGlyphRunList();
44 SkASSERT(!glyphRunList.empty());
45 fBlob = GrTextBlob::Make(glyphRunList, view);
Ben Wagnerae4bb982020-09-24 14:49:00 -040046 SkSurfaceProps props;
47 if (canvas) { canvas->getProps(&props); }
Herb Derbyc27d5352020-08-12 13:58:34 -040048 auto colorSpace = SkColorSpace::MakeSRGB();
49 SkGlyphRunListPainter painter{props, kUnknown_SkColorType,
50 colorSpace.get(), SkStrikeCache::GlobalStrikeCache()};
51
52 GrSDFTOptions options{256, 256};
Herb Derby281583a2020-11-19 11:40:07 -050053 const SkPoint drawOrigin = glyphRunList.origin();
54 const SkPaint& drawPaint = glyphRunList.paint();
55 for (auto& glyphRun : glyphRunList) {
56 painter.processGlyphRun(
57 glyphRun, view, drawOrigin, drawPaint, props, false, options, fBlob.get());
58 }
Herb Derbyc27d5352020-08-12 13:58:34 -040059
60 SkASSERT(fBlob->subRunList().head() != nullptr);
61 GrAtlasSubRun* subRun = static_cast<GrAtlasSubRun*>(fBlob->subRunList().head());
62 subRun->testingOnly_packedGlyphIDToGrGlyph(&fCache);
63 fVertices.reset(new char[subRun->vertexStride() * subRun->glyphCount() * 4]);
64 }
65
66 void onDraw(int loops, SkCanvas* canvas) override {
67 GrAtlasSubRun* subRun = static_cast<GrAtlasSubRun*>(fBlob->subRunList().head());
68
69 SkIRect clip = SkIRect::MakeEmpty();
70 SkPaint paint;
71 GrColor grColor = SkColorToPremulGrColor(paint.getColor());
72
73 for (int loop = 0; loop < loops; loop++) {
74 subRun->fillVertexData(fVertices.get(), 0, subRun->glyphCount(),
75 grColor, SkMatrix::I(), {100, 100}, clip);
76 }
77 }
78
79private:
80 sk_sp<GrTextBlob> fBlob;
81 GrStrikeCache fCache;
82 std::unique_ptr<char[]> fVertices;
83};
84
85DEF_BENCH(return new DirectMaskGlyphVertexFillBenchmark{});