Herb Derby | c27d535 | 2020-08-12 13:58:34 -0400 | [diff] [blame] | 1 | /* |
| 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" |
Brian Salomon | eebe735 | 2020-12-09 16:37:04 -0500 | [diff] [blame] | 15 | #include "src/gpu/GrSurfaceDrawContext.h" |
Herb Derby | c27d535 | 2020-08-12 13:58:34 -0400 | [diff] [blame] | 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. |
| 22 | static const char* gText = |
| 23 | "Call me Ishmael. Some years ago--never mind how long precisely"; |
| 24 | |
| 25 | class 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 Wagner | ae4bb98 | 2020-09-24 14:49:00 -0400 | [diff] [blame] | 46 | SkSurfaceProps props; |
| 47 | if (canvas) { canvas->getProps(&props); } |
Herb Derby | c27d535 | 2020-08-12 13:58:34 -0400 | [diff] [blame] | 48 | auto colorSpace = SkColorSpace::MakeSRGB(); |
| 49 | SkGlyphRunListPainter painter{props, kUnknown_SkColorType, |
| 50 | colorSpace.get(), SkStrikeCache::GlobalStrikeCache()}; |
| 51 | |
| 52 | GrSDFTOptions options{256, 256}; |
Herb Derby | 281583a | 2020-11-19 11:40:07 -0500 | [diff] [blame] | 53 | 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 Derby | c27d535 | 2020-08-12 13:58:34 -0400 | [diff] [blame] | 59 | |
| 60 | SkASSERT(fBlob->subRunList().head() != nullptr); |
Herb Derby | d90024d | 2020-11-20 10:21:32 -0500 | [diff] [blame] | 61 | GrAtlasSubRun* subRun = fBlob->subRunList().head()->testingOnly_atlasSubRun(); |
| 62 | SkASSERT(subRun); |
Herb Derby | c27d535 | 2020-08-12 13:58:34 -0400 | [diff] [blame] | 63 | subRun->testingOnly_packedGlyphIDToGrGlyph(&fCache); |
Herb Derby | 46d1e9f | 2020-12-01 14:12:04 -0500 | [diff] [blame] | 64 | fVertices.reset(new char[subRun->vertexStride(view) * subRun->glyphCount() * 4]); |
Herb Derby | c27d535 | 2020-08-12 13:58:34 -0400 | [diff] [blame] | 65 | } |
| 66 | |
| 67 | void onDraw(int loops, SkCanvas* canvas) override { |
Herb Derby | d90024d | 2020-11-20 10:21:32 -0500 | [diff] [blame] | 68 | GrAtlasSubRun* subRun = fBlob->subRunList().head()->testingOnly_atlasSubRun(); |
| 69 | SkASSERT(subRun); |
Herb Derby | c27d535 | 2020-08-12 13:58:34 -0400 | [diff] [blame] | 70 | |
| 71 | SkIRect clip = SkIRect::MakeEmpty(); |
| 72 | SkPaint paint; |
| 73 | GrColor grColor = SkColorToPremulGrColor(paint.getColor()); |
Herb Derby | 4089418 | 2020-12-02 11:39:48 -0500 | [diff] [blame] | 74 | SkMatrix positionMatrix = SkMatrix::Translate(100, 100); |
Herb Derby | c27d535 | 2020-08-12 13:58:34 -0400 | [diff] [blame] | 75 | |
| 76 | for (int loop = 0; loop < loops; loop++) { |
| 77 | subRun->fillVertexData(fVertices.get(), 0, subRun->glyphCount(), |
Herb Derby | 4089418 | 2020-12-02 11:39:48 -0500 | [diff] [blame] | 78 | grColor, positionMatrix, clip); |
Herb Derby | c27d535 | 2020-08-12 13:58:34 -0400 | [diff] [blame] | 79 | } |
| 80 | } |
| 81 | |
| 82 | private: |
| 83 | sk_sp<GrTextBlob> fBlob; |
| 84 | GrStrikeCache fCache; |
| 85 | std::unique_ptr<char[]> fVertices; |
| 86 | }; |
| 87 | |
| 88 | DEF_BENCH(return new DirectMaskGlyphVertexFillBenchmark{}); |