HomeSort by relevance Sort by last modified time
    Searched defs:dstM (Results 1 - 5 of 5) sorted by null

  /external/skia/src/core/
SkMaskFilter.cpp 33 SkMask srcM, dstM;
42 if (!this->filterMask(&dstM, srcM, matrix, NULL)) {
46 SkAutoMaskImage autoDst(&dstM, false);
47 SkRegion::Cliperator clipper(clip, dstM.fBounds);
49 if (!clipper.done() && (bounder == NULL || bounder->doIRect(dstM.fBounds))) {
52 blitter->blitMask(dstM, cr);
61 SkMask srcM, dstM;
69 if (this->filterMask(&dstM, srcM, SkMatrix::I(), &margin)) {
70 dst->set(dstM.fBounds);
SkRasterizer.cpp 33 SkMask srcM, dstM;
38 if (!filter->filterMask(&dstM, srcM, matrix, &margin)) {
SkScalerContext.cpp 461 SkMask srcM, dstM;
469 if (fMaskFilter->filterMask(&dstM, srcM, matrix, NULL)) {
470 int width = SkFastMin32(origGlyph.fWidth, dstM.fBounds.width());
471 int height = SkFastMin32(origGlyph.fHeight, dstM.fBounds.height());
473 int srcRB = dstM.fRowBytes;
475 const uint8_t* src = (const uint8_t*)dstM.fImage;
478 if (SkMask::k3D_Format == dstM.fFormat) {
483 // clean out our glyph, since it may be larger than dstM
491 SkMask::FreeImage(dstM.fImage);
SkBitmap.cpp     [all...]
SkDraw.cpp 795 SkMask dstM;
798 dstM.fImage = NULL;
799 SkAutoMaskImage ami(&dstM, false);
802 paint.getMaskFilter()->filterMask(&dstM, srcM, *fMatrix, NULL)) {
803 mask = &dstM;
    [all...]

Completed in 2378 milliseconds