Home
last modified time | relevance | path

Searched defs:RunBlock (Results 1 – 1 of 1) sorted by relevance

/aosp_15_r20/external/skia/modules/skparagraph/src/
H A DOneLineShaper.h41 struct RunBlock { struct
42 RunBlock() : fRun(nullptr) { } in RunBlock() function
45 explicit RunBlock(TextRange text) : fRun(nullptr), fText(text) { } in RunBlock() function
47 RunBlock(std::shared_ptr<Run> run, TextRange text, GlyphRange glyphs, size_t score) in RunBlock() function
53 explicit RunBlock(std::shared_ptr<Run> run) in RunBlock() argument
58 std::shared_ptr<Run> fRun;
59 TextRange fText;
60 GlyphRange fGlyphs;
61 bool isFullyResolved() { return fRun != nullptr && fGlyphs.width() == fRun->size(); } in isFullyResolved()