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

  /external/skia/src/core/
SkMaskFilter.cpp 25 SkMask srcM, dstM;
33 if (!this->filterMask(&dstM, srcM, matrix, NULL)) {
36 SkAutoMaskFreeImage autoDst(dstM.fImage);
42 SkRegion::Cliperator clipper(wrapper.getRgn(), dstM.fBounds);
44 if (!clipper.done() && (bounder == NULL || bounder->doIRect(dstM.fBounds))) {
47 blitter->blitMask(dstM, cr);
60 SkMask srcM, dstM;
68 if (this->filterMask(&dstM, srcM, SkMatrix::I(), &margin)) {
69 dst->set(dstM.fBounds);
SkRasterizer.cpp 25 SkMask srcM, dstM;
30 if (!filter->filterMask(&dstM, srcM, matrix, &margin)) {
SkScalerContext.cpp 547 SkMask srcM, dstM;
555 if (fMaskFilter->filterMask(&dstM, srcM, matrix, NULL)) {
556 int width = SkFastMin32(origGlyph.fWidth, dstM.fBounds.width());
557 int height = SkFastMin32(origGlyph.fHeight, dstM.fBounds.height());
559 int srcRB = dstM.fRowBytes;
561 const uint8_t* src = (const uint8_t*)dstM.fImage;
564 if (SkMask::k3D_Format == dstM.fFormat) {
569 // clean out our glyph, since it may be larger than dstM
577 SkMask::FreeImage(dstM.fImage);
SkBitmap.cpp     [all...]
SkDraw.cpp 808 SkMask dstM;
810 paint.getMaskFilter()->filterMask(&dstM, srcM, *fMatrix, NULL)) {
811 mask = &dstM;
813 dstM.fImage = NULL;
815 SkAutoMaskFreeImage ami(dstM.fImage);
    [all...]
  /external/skia/src/gpu/
SkGpuDevice.cpp     [all...]

Completed in 254 milliseconds