Searched defs:RunBlock (Results 1 – 1 of 1) sorted by relevance
33 struct RunBlock { struct34 RunBlock() : fRun(nullptr) { } in RunBlock() argument37 explicit RunBlock(TextRange text) : fRun(nullptr), fText(text) { } in RunBlock() function39 RunBlock(std::shared_ptr<Run> run, TextRange text, GlyphRange glyphs, size_t score) in RunBlock() function45 explicit RunBlock(std::shared_ptr<Run> run) in RunBlock() function50 std::shared_ptr<Run> fRun;51 TextRange fText;52 GlyphRange fGlyphs;53 bool isFullyResolved() { return fRun != nullptr && fGlyphs.width() == fRun->size(); } in isFullyResolved()