Home
last modified time | relevance | path

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

/external/skia/src/core/
DSkMaskFilter.cpp33 SkMask srcM, dstM; in filterPath() local
42 if (!this->filterMask(&dstM, srcM, matrix, NULL)) { in filterPath()
46 SkAutoMaskImage autoDst(&dstM, false); in filterPath()
47 SkRegion::Cliperator clipper(clip, dstM.fBounds); in filterPath()
49 if (!clipper.done() && (bounder == NULL || bounder->doIRect(dstM.fBounds))) { in filterPath()
52 blitter->blitMask(dstM, cr); in filterPath()
DSkRasterizer.cpp33 SkMask srcM, dstM; in rasterize() local
38 if (!filter->filterMask(&dstM, srcM, matrix, &margin)) { in rasterize()
DSkScalerContext.cpp461 SkMask srcM, dstM; in getImage() local
469 if (fMaskFilter->filterMask(&dstM, srcM, matrix, NULL)) { in getImage()
470 int width = SkFastMin32(origGlyph.fWidth, dstM.fBounds.width()); in getImage()
471 int height = SkFastMin32(origGlyph.fHeight, dstM.fBounds.height()); in getImage()
473 int srcRB = dstM.fRowBytes; in getImage()
475 const uint8_t* src = (const uint8_t*)dstM.fImage; in getImage()
478 if (SkMask::k3D_Format == dstM.fFormat) { in getImage()
491 SkMask::FreeImage(dstM.fImage); in getImage()
DSkBitmap.cpp1283 SkMask srcM, dstM; in extractAlpha() local
1295 if (!filter->filterMask(&dstM, srcM, identity, NULL)) { in extractAlpha()
1298 dstM.fRowBytes = SkAlign4(dstM.fBounds.width()); in extractAlpha()
1320 if (!filter->filterMask(&dstM, srcM, identity, NULL)) { in extractAlpha()
1324 SkAutoMaskImage dstCleanup(&dstM, false); in extractAlpha()
1326 tmpBitmap.setConfig(SkBitmap::kA8_Config, dstM.fBounds.width(), in extractAlpha()
1327 dstM.fBounds.height(), dstM.fRowBytes); in extractAlpha()
1334 memcpy(tmpBitmap.getPixels(), dstM.fImage, dstM.computeImageSize()); in extractAlpha()
1336 offset->set(dstM.fBounds.fLeft, dstM.fBounds.fTop); in extractAlpha()
DSkDraw.cpp795 SkMask dstM; in drawDevMask() local
798 dstM.fImage = NULL; in drawDevMask()
799 SkAutoMaskImage ami(&dstM, false); in drawDevMask()
802 paint.getMaskFilter()->filterMask(&dstM, srcM, *fMatrix, NULL)) { in drawDevMask()
803 mask = &dstM; in drawDevMask()
2565 SkMask srcM, dstM; in compute_bounds() local
2570 if (!filter->filterMask(&dstM, srcM, *filterMatrix, &margin)) { in compute_bounds()
2573 *bounds = dstM.fBounds; in compute_bounds()
/external/skia/src/gpu/
DSkGpuDevice.cpp727 SkMask srcM, dstM; in drawWithMaskFilter() local
736 if (!filter->filterMask(&dstM, srcM, matrix, NULL)) { in drawWithMaskFilter()
740 SkAutoMaskImage autoDst(&dstM, false); in drawWithMaskFilter()
742 if (clip.quickReject(dstM.fBounds)) { in drawWithMaskFilter()
745 if (bounder && !bounder->doIRect(dstM.fBounds)) { in drawWithMaskFilter()
760 dstM.fBounds.width(), in drawWithMaskFilter()
761 dstM.fBounds.height(), in drawWithMaskFilter()
765 GrTexture* texture = context->createUncachedTexture(desc, dstM.fImage, in drawWithMaskFilter()
766 dstM.fRowBytes); in drawWithMaskFilter()
783 d.setLTRB(GrIntToScalar(dstM.fBounds.fLeft), in drawWithMaskFilter()
[all …]
/external/llvm/lib/Linker/
DLinkModules.cpp339 ModuleLinker(Module *dstM, Module *srcM) : DstM(dstM), SrcM(srcM) { } in ModuleLinker() argument