Lines Matching refs:glyphID
481 for (const auto& glyphID : fPendingGlyphImages) { in writePendingGlyphs() local
482 SkGlyph glyph{glyphID}; in writePendingGlyphs()
498 for (const auto& glyphID : fPendingGlyphPaths) { in writePendingGlyphs() local
499 SkGlyph glyph{glyphID}; in writePendingGlyphs()
502 writeGlyphPath(glyphID, serializer); in writePendingGlyphs()
534 SkGlyphID glyphID, SkPoint position) { in getGlyphMetrics() argument
536 SkPackedGlyphID packedGlyphID = fIsSubpixel ? SkPackedGlyphID{glyphID, lookupPoint} in getGlyphMetrics()
537 : SkPackedGlyphID{glyphID}; in getGlyphMetrics()
585 void SkStrikeServer::SkGlyphCacheState::writeGlyphPath(const SkPackedGlyphID& glyphID, in writeGlyphPath() argument
588 if (!fContext->getPath(glyphID, &path)) { in writeGlyphPath()
608 SkGlyphID glyphID = glyphIDs[i]; in glyphMetrics() local
610 SkPackedGlyphID packedGlyphID = fIsSubpixel ? SkPackedGlyphID{glyphID, lookupPoint} in glyphMetrics()
611 : SkPackedGlyphID{glyphID}; in glyphMetrics()
667 SkPackedGlyphID glyphID; in readGlyph() local
668 if (!deserializer->read<SkPackedGlyphID>(&glyphID)) return false; in readGlyph()
669 glyph.init(glyphID); in readGlyph()