Lines Matching refs:glyphID
57 bool SkStrike::isGlyphCached(SkGlyphID glyphID, SkFixed x, SkFixed y) const { in isGlyphCached() argument
58 SkPackedGlyphID packedGlyphID{glyphID, x, y}; in isGlyphCached()
66 const SkGlyph& SkStrike::getGlyphIDAdvance(uint16_t glyphID) { in getGlyphIDAdvance() argument
68 SkPackedGlyphID packedGlyphID(glyphID); in getGlyphIDAdvance()
72 const SkGlyph& SkStrike::getGlyphIDMetrics(uint16_t glyphID) { in getGlyphIDMetrics() argument
74 SkPackedGlyphID packedGlyphID(glyphID); in getGlyphIDMetrics()
78 const SkGlyph& SkStrike::getGlyphIDMetrics(uint16_t glyphID, SkFixed x, SkFixed y) { in getGlyphIDMetrics() argument
80 SkPackedGlyphID packedGlyphID(glyphID, x, y); in getGlyphIDMetrics()
85 for (auto glyphID : glyphIDs) { in getAdvances() local
86 auto glyph = this->getGlyphIDAdvance(glyphID); in getAdvances()
205 const SkGlyph* SkStrike::getCachedGlyphAnySubPix(SkGlyphID glyphID, in getCachedGlyphAnySubPix() argument
209 SkPackedGlyphID packedGlyphID{glyphID, subX, subY}; in getCachedGlyphAnySubPix()
228 const SkGlyph& SkStrike::getGlyphMetrics(SkGlyphID glyphID, SkPoint position) { in getGlyphMetrics() argument
230 return this->getGlyphIDMetrics(glyphID); in getGlyphMetrics()
234 return this->getGlyphIDMetrics(glyphID, lookupPosition.x(), lookupPosition.y()); in getGlyphMetrics()