Home
last modified time | relevance | path

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

/external/skia/modules/skparagraph/src/
DOneLineShaper.h32 struct RunBlock { struct
33 RunBlock() : fRun(nullptr) { } in RunBlock() function
36 explicit RunBlock(TextRange text) : fRun(nullptr), fText(text) { } in RunBlock() function
38 RunBlock(std::shared_ptr<Run> run, TextRange text, GlyphRange glyphs, size_t score) in RunBlock() argument
44 explicit RunBlock(std::shared_ptr<Run> run) in RunBlock() function
49 std::shared_ptr<Run> fRun;
50 TextRange fText;
51 GlyphRange fGlyphs;
52 bool isFullyResolved() { return fRun != nullptr && fGlyphs.width() == fRun->size(); } in isFullyResolved()