Home
last modified time | relevance | path

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

/external/skia/src/core/
DSkScalerContext.cpp454 SkGlyph tmpGlyph; in getImage() local
467 tmpGlyph.initWithGlyphID(origGlyph.getPackedID()); in getImage()
471 this->getMetrics(&tmpGlyph); in getImage()
475 SkASSERT(tmpGlyph.fWidth <= origGlyph.fWidth); in getImage()
476 SkASSERT(tmpGlyph.fHeight <= origGlyph.fHeight); in getImage()
478 if (tmpGlyph.fMaskFormat == origGlyph.fMaskFormat) { in getImage()
479 tmpGlyph.fImage = origGlyph.fImage; in getImage()
481 tmpGlyphImageStorage.reset(tmpGlyph.computeImageSize()); in getImage()
482 tmpGlyph.fImage = tmpGlyphImageStorage.get(); in getImage()
484 glyph = &tmpGlyph; in getImage()