Searched refs:dstM (Results 1 - 8 of 8) sorted by relevance

/external/skia/src/core/
H A DSkRasterizer.cpp22 SkMask srcM, dstM; local
26 if (!filter->filterMask(&dstM, srcM, matrix, &margin)) {
H A DSkMaskFilter.cpp262 SkMask srcM, dstM; local
271 if (!this->filterMask(&dstM, srcM, matrix, nullptr)) {
274 SkAutoMaskFreeImage autoDst(dstM.fImage);
280 SkRegion::Cliperator clipper(wrapper.getRgn(), dstM.fBounds);
285 blitter->blitMask(dstM, cr);
347 SkMask srcM, dstM; local
354 if (this->filterMask(&dstM, srcM, SkMatrix::I(), &margin)) {
355 dst->set(dstM.fBounds);
H A DSkBitmap.cpp872 SkMask srcM, dstM; local
883 if (!filter->filterMask(&dstM, srcM, identity, nullptr)) {
886 dstM.fRowBytes = SkAlign4(dstM.fBounds.width());
907 if (!filter->filterMask(&dstM, srcM, identity, nullptr)) {
910 SkAutoMaskFreeImage dstCleanup(dstM.fImage);
912 tmpBitmap.setInfo(SkImageInfo::MakeA8(dstM.fBounds.width(), dstM.fBounds.height()),
913 dstM.fRowBytes);
920 memcpy(tmpBitmap.getPixels(), dstM
[all...]
H A DSkScalerContext.cpp515 SkMask srcM, dstM; local
537 if (fMaskFilter->filterMask(&dstM, srcM, matrix, nullptr)) {
538 int width = SkFastMin32(origGlyph.fWidth, dstM.fBounds.width());
539 int height = SkFastMin32(origGlyph.fHeight, dstM.fBounds.height());
541 int srcRB = dstM.fRowBytes;
543 const uint8_t* src = (const uint8_t*)dstM.fImage;
546 if (SkMask::k3D_Format == dstM.fFormat) {
551 // clean out our glyph, since it may be larger than dstM
559 SkMask::FreeImage(dstM.fImage);
H A DSkDraw.cpp877 SkMask dstM; local
879 paint.getMaskFilter()->filterMask(&dstM, srcM, *fMatrix, nullptr)) {
880 mask = &dstM;
882 SkAutoMaskFreeImage ami(dstM.fImage);
2104 SkMask srcM, dstM; local
2108 if (!filter->filterMask(&dstM, srcM, *filterMatrix, &margin)) {
/external/skia/src/gpu/
H A DGrBlurUtils.cpp67 SkMask srcM, dstM; local
74 if (!filter->filterMask(&dstM, srcM, viewMatrix, nullptr)) {
77 // this will free-up dstM when we're done (allocated in filterMask())
78 SkAutoMaskFreeImage autoDst(dstM.fImage);
80 if (clip_bounds_quick_reject(clipBounds, dstM.fBounds)) {
84 // we now have a device-aligned 8bit mask in dstM, ready to be drawn using
88 desc.fWidth = dstM.fBounds.width();
89 desc.fHeight = dstM.fBounds.height();
101 if (!sContext->writePixels(ii, dstM.fImage, dstM
[all...]
/external/skia/src/effects/
H A DSkBlurMaskFilter.cpp90 bool filterRectMask(SkMask* dstM, const SkRect& r, const SkMatrix& matrix,
92 bool filterRRectMask(SkMask* dstM, const SkRRect& r, const SkMatrix& matrix,
501 SkMask srcM, dstM; local
510 filterResult = this->filterRRectMask(&dstM, rrect, matrix, &margin,
515 filterResult = this->filterMask(&dstM, srcM, matrix, &margin);
588 patch->fOuterRect = dstM.fBounds;
621 SkMask srcM, dstM; local
630 filterResult = this->filterRectMask(&dstM, rects[0], matrix, &margin,
633 filterResult = this->filterMask(&dstM, srcM, matrix, &margin);
652 * with our outer-rect (dstM
[all...]
/external/swiftshader/third_party/LLVM/lib/Linker/
H A DLinkModules.cpp347 ModuleLinker(Module *dstM, Module *srcM, unsigned mode) argument
348 : DstM(dstM), SrcM(srcM), Mode(mode) { }

Completed in 1825 milliseconds