Home
last modified time | relevance | path

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

/external/skia/src/core/
DSkScalerContext.cpp453 SkGlyph tmpGlyph; in getImage() local
466 tmpGlyph.initWithGlyphID(origGlyph.getPackedID()); in getImage()
470 this->getMetrics(&tmpGlyph); in getImage()
474 SkASSERT(tmpGlyph.fWidth <= origGlyph.fWidth); in getImage()
475 SkASSERT(tmpGlyph.fHeight <= origGlyph.fHeight); in getImage()
477 if (tmpGlyph.fMaskFormat == origGlyph.fMaskFormat) { in getImage()
478 tmpGlyph.fImage = origGlyph.fImage; in getImage()
480 tmpGlyphImageStorage.reset(tmpGlyph.computeImageSize()); in getImage()
481 tmpGlyph.fImage = tmpGlyphImageStorage.get(); in getImage()
483 glyph = &tmpGlyph; in getImage()