Home | History | Annotate | Download | only in core

Lines Matching refs:srcM

744         SkMask      srcM, dstM;
751 glyph->toMask(&srcM);
752 if (SkMask::kARGB32_Format == srcM.fFormat) {
754 // and copy it into a temp buffer, and then point srcM at that temp.
755 srcM.fFormat = SkMask::kA8_Format;
756 srcM.fRowBytes = SkAlign4(srcM.fBounds.width());
757 size_t size = srcM.computeImageSize();
759 srcM.fImage = (uint8_t*)a8storage.get();
760 extract_alpha(srcM,
766 if (fMaskFilter->filterMask(&dstM, srcM, matrix, NULL)) {
791 applyLUTToA8Mask(srcM, fPreBlendForFilter.fG);