Home | History | Annotate | Download | only in core

Lines Matching refs:srcM

1125     SkMask      srcM, dstM;
1127 srcM.fBounds.set(0, 0, this->width(), this->height());
1128 srcM.fRowBytes = SkAlign4(this->width());
1129 srcM.fFormat = SkMask::kA8_Format;
1136 srcM.fImage = NULL;
1137 if (!filter->filterMask(&dstM, srcM, identity, NULL)) {
1143 tmpBitmap.setInfo(SkImageInfo::MakeA8(this->width(), this->height()), srcM.fRowBytes);
1150 GetBitmapAlpha(*this, tmpBitmap.getAddr8(0, 0), srcM.fRowBytes);
1157 srcM.fImage = SkMask::AllocImage(srcM.computeImageSize());
1158 SkAutoMaskFreeImage srcCleanup(srcM.fImage);
1160 GetBitmapAlpha(*this, srcM.fImage, srcM.fRowBytes);
1161 if (!filter->filterMask(&dstM, srcM, identity, NULL)) {