Home
last modified time | relevance | path

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

/third_party/skia/modules/skparagraph/src/
DOneLineShaper.h33 struct RunBlock { struct
34 RunBlock() : fRun(nullptr) { } in RunBlock() argument
37 explicit RunBlock(TextRange text) : fRun(nullptr), fText(text) { } in RunBlock() function
39 RunBlock(std::shared_ptr<Run> run, TextRange text, GlyphRange glyphs, size_t score) in RunBlock() function
45 explicit RunBlock(std::shared_ptr<Run> run) in RunBlock() function
50 std::shared_ptr<Run> fRun;
51 TextRange fText;
52 GlyphRange fGlyphs;
53 bool isFullyResolved() { return fRun != nullptr && fGlyphs.width() == fRun->size(); } in isFullyResolved()