Home | History | Annotate | Download | only in core

Lines Matching defs:srcM

1516     SkMask      srcM, dstM;
1518 srcM.fBounds.set(0, 0, this->width(), this->height());
1519 srcM.fRowBytes = SkAlign4(this->width());
1520 srcM.fFormat = SkMask::kA8_Format;
1527 srcM.fImage = NULL;
1528 if (!filter->filterMask(&dstM, srcM, identity, NULL)) {
1535 srcM.fRowBytes);
1542 GetBitmapAlpha(*this, tmpBitmap.getAddr8(0, 0), srcM.fRowBytes);
1549 srcM.fImage = SkMask::AllocImage(srcM.computeImageSize());
1550 SkAutoMaskFreeImage srcCleanup(srcM.fImage);
1552 GetBitmapAlpha(*this, srcM.fImage, srcM.fRowBytes);
1553 if (!filter->filterMask(&dstM, srcM, identity, NULL)) {