Home | History | Annotate | Download | only in core

Lines Matching defs:srcM

536     SkMask      srcM, dstM;
538 srcM
539 srcM.fRowBytes = SkAlign4(this->width());
540 srcM.fFormat = SkMask::kA8_Format;
547 if (!as_MFB(filter)->filterMask(&dstM, srcM, identity, nullptr)) {
553 tmpBitmap.setInfo(SkImageInfo::MakeA8(this->width(), this->height()), srcM.fRowBytes);
560 GetBitmapAlpha(*this, tmpBitmap.getAddr8(0, 0), srcM.fRowBytes);
567 srcM.fImage = SkMask::AllocImage(srcM.computeImageSize());
568 SkAutoMaskFreeImage srcCleanup(srcM.fImage);
570 GetBitmapAlpha(*this, srcM.fImage, srcM.fRowBytes);
571 if (!as_MFB(filter)->filterMask(&dstM, srcM, identity, nullptr)) {