Searched refs:fScalerContext (Results 1 – 4 of 4) sorted by relevance
/third_party/flutter/skia/src/core/ |
D | SkStrike.cpp | 24 , fScalerContext{std::move(scaler)} 26 , fIsSubpixel{fScalerContext->isSubpixel()} 27 , fAxisAlignment{fScalerContext->computeAxisAlignmentForHText()} 29 SkASSERT(fScalerContext != nullptr); 52 fScalerContext->getMetrics(glyph); in glyph() 87 if (glyph->setPath(&fAlloc, fScalerContext.get())) { in preparePath() 105 return fScalerContext->getGlyphCount(); in getGlyphCount() 127 if (glyph->setImage(&fAlloc, fScalerContext.get())) { in prepareImage() 230 const SkTypeface* face = fScalerContext->getTypeface(); in dump() 231 const SkScalerContextRec& rec = fScalerContext->getRec(); in dump()
|
D | SkStrike.h | 97 return fScalerContext->getMaskFormat(); in getMaskFormat() 136 SkScalerContext* getScalerContext() const { return fScalerContext.get(); } in getScalerContext() 189 const std::unique_ptr<SkScalerContext> fScalerContext; variable
|
/third_party/skia/src/core/ |
D | SkScalerCache.cpp | 30 : fScalerContext{std::move(scaler)} in SkScalerCache() 31 , fFontMetrics{use_or_generate_metrics(fontMetrics, fScalerContext.get())} 32 , fRoundingSpec{fScalerContext->isSubpixel(), 33 fScalerContext->computeAxisAlignmentForHText()} { 34 SkASSERT(fScalerContext != nullptr); 49 SkGlyph* glyph = fAlloc.make<SkGlyph>(fScalerContext->makeGlyph(packedGlyphID)); in digest() 63 if (glyph->setPath(&fAlloc, fScalerContext.get())) { in preparePath() 102 if (glyph->setImage(&fAlloc, fScalerContext.get())) { in prepareImage() 253 const SkTypeface* face = fScalerContext->getTypeface(); in dump() 254 const SkScalerContextRec& rec = fScalerContext->getRec(); in dump()
|
D | SkScalerCache.h | 109 SkScalerContext* getScalerContext() const { return fScalerContext.get(); } in getScalerContext() 140 const std::unique_ptr<SkScalerContext> fScalerContext; variable
|