Home
last modified time | relevance | path

Searched refs:fScalerContext (Results 1 – 3 of 3) sorted by relevance

/external/skia/src/gpu/
DGrPathRendering.cpp19 fScalerContext(typeface.createScalerContext(fDesc)) { in GlyphGenerator()
28 return fScalerContext->getGlyphCount(); in getNumPaths()
34 fScalerContext->getMetrics(&skGlyph); in generatePath()
36 fScalerContext->getPath(skGlyph, out); in generatePath()
46 const SkAutoTDelete<SkScalerContext> fScalerContext; member in GlyphGenerator
/external/skia/src/core/
DSkGlyphCache.cpp60 : fScalerContext(ctx), fGlyphAlloc(kMinAllocAmount) { in SkGlyphCache()
68 fScalerContext->getFontMetrics(&fFontMetrics); in SkGlyphCache()
123 SkDELETE(fScalerContext); in ~SkGlyphCache()
173 return fScalerContext->charToGlyphID(charCode); in unicharToGlyph()
178 return fScalerContext->glyphIDToChar(glyphID); in glyphToUnichar()
182 return fScalerContext->getGlyphCount(); in getGlyphCount()
232 id = SkGlyph::MakeID(fScalerContext->charToGlyphID(charCode), x, y); in lookupByChar()
239 fScalerContext->getMetrics(glyph); in lookupByChar()
258 fScalerContext->getMetrics(glyph); in lookupByCombinedID()
285 fScalerContext->getMetrics(glyph); in lookupMetrics()
[all …]
DSkGlyphCache.h100 return fScalerContext->getMaskFormat(); in getMaskFormat()
104 return fScalerContext->isSubpixel(); in isSubpixel()
123 SkScalerContext* getScalerContext() const { return fScalerContext; } in getScalerContext()
204 SkScalerContext* fScalerContext; variable