Home | History | Annotate | Download | only in core

Lines Matching defs:srcM

489         SkMask      srcM, dstM;
496 glyph->toMask(&srcM);
497 if (SkMask::kARGB32_Format == srcM.fFormat) {
499 // and copy it into a temp buffer, and then point srcM at that temp.
500 srcM.fFormat = SkMask::kA8_Format;
501 srcM.fRowBytes = SkAlign4(srcM.fBounds.width());
502 size_t size = srcM.computeImageSize();
504 srcM.fImage = (uint8_t*)a8storage.get();
505 extract_alpha(srcM,
511 if (as_MFB(fMaskFilter)->filterMask(&dstM, srcM, matrix, nullptr)) {
536 applyLUTToA8Mask(srcM, fPreBlendForFilter.fG);