Coverage Report

Created: 2024-09-14 07:19

/src/skia/tools/gpu/ganesh/AtlasTextOpTools.cpp
Line
Count
Source (jump to first uncovered line)
1
/*
2
 * Copyright 2024 Google LLC
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 "tools/gpu/ganesh/AtlasTextOpTools.h"
9
10
#include "include/core/SkFont.h"
11
#include "include/core/SkMatrix.h"
12
#include "include/core/SkPaint.h"
13
#include "src/core/SkScalerContext.h"
14
#include "src/core/SkStrikeCache.h"
15
#include "src/gpu/ganesh/GrRecordingContextPriv.h"
16
#include "src/gpu/ganesh/SurfaceDrawContext.h"
17
#include "src/text/GlyphRun.h"
18
#include "src/text/gpu/TextBlob.h"
19
#include "tools/text/gpu/TextBlobTools.h"
20
21
#if defined(GPU_TEST_UTILS)
22
#include "src/base/SkRandom.h"
23
#include "src/gpu/ganesh/GrDrawOpTest.h"
24
#include "src/gpu/ganesh/GrTestUtils.h"
25
#endif
26
27
namespace skgpu::ganesh {
28
29
GrOp::Owner AtlasTextOpTools::CreateOp(skgpu::ganesh::SurfaceDrawContext* sdc,
30
                                       const SkPaint& skPaint,
31
                                       const SkFont& font,
32
                                       const SkMatrix& ctm,
33
                                       const char* text,
34
                                       int x,
35
0
                                       int y) {
36
0
    size_t textLen = (int)strlen(text);
37
38
0
    SkMatrix drawMatrix = ctm;
39
0
    drawMatrix.preTranslate(x, y);
40
0
    auto drawOrigin = SkPoint::Make(x, y);
41
0
    sktext::GlyphRunBuilder builder;
42
0
    auto glyphRunList = builder.textToGlyphRunList(font, skPaint, text, textLen, drawOrigin);
43
0
    if (glyphRunList.empty()) {
44
0
        return nullptr;
45
0
    }
46
47
0
    auto rContext = sdc->recordingContext();
48
0
    sktext::gpu::SubRunControl control =
49
0
            rContext->priv().getSubRunControl(sdc->surfaceProps().isUseDeviceIndependentFonts());
50
51
0
    SkStrikeDeviceInfo strikeDeviceInfo{
52
0
            sdc->surfaceProps(), SkScalerContextFlags::kBoostContrast, &control};
53
54
0
    sk_sp<sktext::gpu::TextBlob> blob =
55
0
            sktext::gpu::TextBlob::Make(glyphRunList,
56
0
                                        skPaint,
57
0
                                        drawMatrix,
58
0
                                        strikeDeviceInfo,
59
0
                                        SkStrikeCache::GlobalStrikeCache());
60
61
0
    const sktext::gpu::AtlasSubRun* subRun = sktext::gpu::TextBlobTools::FirstSubRun(blob.get());
62
0
    if (!subRun) {
63
0
        return nullptr;
64
0
    }
65
66
0
    GrOp::Owner op;
67
0
    std::tie(std::ignore, op) =
68
0
            subRun->makeAtlasTextOp(nullptr, ctm, glyphRunList.origin(), skPaint, blob, sdc);
69
0
    return op;
70
0
}
71
72
}  // namespace skgpu::ganesh
73
74
#if defined(GPU_TEST_UTILS)
75
0
GR_DRAW_OP_TEST_DEFINE(AtlasTextOp) {
76
0
    SkMatrix ctm = GrTest::TestMatrixInvertible(random);
77
78
0
    SkPaint skPaint;
79
0
    skPaint.setColor(random->nextU());
80
81
0
    SkFont font;
82
0
    if (random->nextBool()) {
83
0
        font.setEdging(SkFont::Edging::kSubpixelAntiAlias);
84
0
    } else {
85
0
        font.setEdging(random->nextBool() ? SkFont::Edging::kAntiAlias : SkFont::Edging::kAlias);
86
0
    }
87
0
    font.setSubpixel(random->nextBool());
88
89
0
    const char* text = "The quick brown fox jumps over the lazy dog.";
90
91
    // create some random x/y offsets, including negative offsets
92
0
    static const int kMaxTrans = 1024;
93
0
    int xPos = (random->nextU() % 2) * 2 - 1;
94
0
    int yPos = (random->nextU() % 2) * 2 - 1;
95
0
    int xInt = (random->nextU() % kMaxTrans) * xPos;
96
0
    int yInt = (random->nextU() % kMaxTrans) * yPos;
97
98
0
    return skgpu::ganesh::AtlasTextOpTools::CreateOp(sdc, skPaint, font, ctm, text, xInt, yInt);
99
0
}
100
#endif