Lines Matching refs:srcM
522 SkMask srcM, dstM;
527 srcM.fBounds.setWH(this->width(), this->height());
528 srcM.fRowBytes = SkAlign4(this->width());
529 srcM.fFormat = SkMask::kA8_Format;
536 if (!as_MFB(filter)->filterMask(&dstM, srcM, identity, nullptr)) {
542 tmpBitmap.setInfo(SkImageInfo::MakeA8(this->width(), this->height()), srcM.fRowBytes);
549 GetBitmapAlpha(*this, tmpBitmap.getAddr8(0, 0), srcM.fRowBytes);
556 srcM.fImage = SkMask::AllocImage(srcM.computeImageSize());
557 SkAutoMaskFreeImage srcCleanup(srcM.fImage);
559 GetBitmapAlpha(*this, srcM.fImage, srcM.fRowBytes);
560 if (!as_MFB(filter)->filterMask(&dstM, srcM, identity, nullptr)) {