Searched defs:RunBlock (Results 1 – 1 of 1) sorted by relevance
32 struct RunBlock { struct33 RunBlock() : fRun(nullptr) { } in RunBlock() function36 explicit RunBlock(TextRange text) : fRun(nullptr), fText(text) { } in RunBlock() function38 RunBlock(std::shared_ptr<Run> run, TextRange text, GlyphRange glyphs, size_t score) in RunBlock() argument44 explicit RunBlock(std::shared_ptr<Run> run) in RunBlock() function49 std::shared_ptr<Run> fRun;50 TextRange fText;51 GlyphRange fGlyphs;52 bool isFullyResolved() { return fRun != nullptr && fGlyphs.width() == fRun->size(); } in isFullyResolved()