Searched defs:RunBlock (Results 1 – 1 of 1) sorted by relevance
41 struct RunBlock { struct42 RunBlock() : fRun(nullptr) { } in RunBlock() function45 explicit RunBlock(TextRange text) : fRun(nullptr), fText(text) { } in RunBlock() function47 RunBlock(std::shared_ptr<Run> run, TextRange text, GlyphRange glyphs, size_t score) in RunBlock() function53 explicit RunBlock(std::shared_ptr<Run> run) in RunBlock() argument58 std::shared_ptr<Run> fRun;59 TextRange fText;60 GlyphRange fGlyphs;61 bool isFullyResolved() { return fRun != nullptr && fGlyphs.width() == fRun->size(); } in isFullyResolved()