Lines Matching refs:origGlyph
470 void SkScalerContext::getImage(const SkGlyph& origGlyph) { in getImage() argument
471 const SkGlyph* glyph = &origGlyph; in getImage()
482 SkMask::kARGB32_Format != origGlyph.fMaskFormat); in getImage()
485 tmpGlyph.initGlyphIdFrom(origGlyph); in getImage()
494 SkASSERT(tmpGlyph.fWidth <= origGlyph.fWidth); in getImage()
495 SkASSERT(tmpGlyph.fHeight <= origGlyph.fHeight); in getImage()
497 if (tmpGlyph.fMaskFormat == origGlyph.fMaskFormat) { in getImage()
498 tmpGlyph.fImage = origGlyph.fImage; in getImage()
558 int width = SkFastMin32(origGlyph.fWidth, dstM.fBounds.width()); in getImage()
559 int height = SkFastMin32(origGlyph.fHeight, dstM.fBounds.height()); in getImage()
560 int dstRB = origGlyph.rowBytes(); in getImage()
564 uint8_t* dst = (uint8_t*)origGlyph.fImage; in getImage()