Home
last modified time | relevance | path

Searched refs:dstM (Results 1 – 5 of 5) sorted by relevance

/external/skia/src/core/
DSkMaskFilter.cpp34 SkMask srcM, dstM; in filterPath() local
44 if (!this->filterMask(&dstM, srcM, matrix, NULL)) in filterPath()
47 SkAutoMaskImage autoDst(&dstM, false); in filterPath()
48 SkRegion::Cliperator clipper(clip, dstM.fBounds); in filterPath()
50 if (!clipper.done() && (bounder == NULL || bounder->doIRect(dstM.fBounds))) in filterPath()
54 blitter->blitMask(dstM, cr); in filterPath()
DSkScalerContext.cpp460 SkMask srcM, dstM; in getImage() local
468 if (fMaskFilter->filterMask(&dstM, srcM, matrix, NULL)) { in getImage()
469 int width = SkFastMin32(origGlyph.fWidth, dstM.fBounds.width()); in getImage()
470 int height = SkFastMin32(origGlyph.fHeight, dstM.fBounds.height()); in getImage()
472 int srcRB = dstM.fRowBytes; in getImage()
474 const uint8_t* src = (const uint8_t*)dstM.fImage; in getImage()
477 if (SkMask::k3D_Format == dstM.fFormat) { in getImage()
490 SkMask::FreeImage(dstM.fImage); in getImage()
DSkBitmap.cpp1121 SkMask srcM, dstM; in extractAlpha() local
1133 if (!filter->filterMask(&dstM, srcM, identity, NULL)) { in extractAlpha()
1136 dstM.fRowBytes = SkAlign4(dstM.fBounds.width()); in extractAlpha()
1152 if (!filter->filterMask(&dstM, srcM, identity, NULL)) { in extractAlpha()
1156 SkAutoMaskImage dstCleanup(&dstM, false); in extractAlpha()
1158 dst->setConfig(SkBitmap::kA8_Config, dstM.fBounds.width(), in extractAlpha()
1159 dstM.fBounds.height(), dstM.fRowBytes); in extractAlpha()
1161 memcpy(dst->getPixels(), dstM.fImage, dstM.computeImageSize()); in extractAlpha()
1163 offset->set(dstM.fBounds.fLeft, dstM.fBounds.fTop); in extractAlpha()
DSkRasterizer.cpp35 SkMask srcM, dstM; in rasterize() local
40 if (!filter->filterMask(&dstM, srcM, matrix, &margin)) in rasterize()
DSkDraw.cpp732 SkMask dstM; in drawDevMask() local
735 dstM.fImage = NULL; in drawDevMask()
736 SkAutoMaskImage ami(&dstM, false); in drawDevMask()
739 paint.getMaskFilter()->filterMask(&dstM, srcM, *fMatrix, NULL)) { in drawDevMask()
740 mask = &dstM; in drawDevMask()
2427 SkMask srcM, dstM; in compute_bounds() local
2432 if (!filter->filterMask(&dstM, srcM, *filterMatrix, &margin)) { in compute_bounds()
2435 *bounds = dstM.fBounds; in compute_bounds()