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

  /external/chromium_org/third_party/skia/src/core/
SkRasterizer.cpp 24 SkMask srcM, dstM;
29 if (!filter->filterMask(&dstM, srcM, matrix, &margin)) {
SkMaskFilter.cpp 238 SkMask srcM, dstM;
247 if (!this->filterMask(&dstM, srcM, matrix, NULL)) {
250 SkAutoMaskFreeImage autoDst(dstM.fImage);
256 SkRegion::Cliperator clipper(wrapper.getRgn(), dstM.fBounds);
258 if (!clipper.done() && (bounder == NULL || bounder->doIRect(dstM.fBounds))) {
261 blitter->blitMask(dstM, cr);
343 SkMask srcM, dstM;
351 if (this->filterMask(&dstM, srcM, SkMatrix::I(), &margin)) {
352 dst->set(dstM.fBounds);
SkScalerContext.cpp 696 SkMask srcM, dstM;
718 if (fMaskFilter->filterMask(&dstM, srcM, matrix, NULL)) {
719 int width = SkFastMin32(origGlyph.fWidth, dstM.fBounds.width());
720 int height = SkFastMin32(origGlyph.fHeight, dstM.fBounds.height());
722 int srcRB = dstM.fRowBytes;
724 const uint8_t* src = (const uint8_t*)dstM.fImage;
727 if (SkMask::k3D_Format == dstM.fFormat) {
732 // clean out our glyph, since it may be larger than dstM
740 SkMask::FreeImage(dstM.fImage);
SkBitmap.cpp     [all...]
SkDraw.cpp 936 SkMask dstM;
938 paint.getMaskFilter()->filterMask(&dstM, srcM, *fMatrix, NULL)) {
939 mask = &dstM;
941 dstM.fImage = NULL;
943 SkAutoMaskFreeImage ami(dstM.fImage);
    [all...]
  /external/skia/src/core/
SkRasterizer.cpp 24 SkMask srcM, dstM;
29 if (!filter->filterMask(&dstM, srcM, matrix, &margin)) {
SkMaskFilter.cpp 259 SkMask srcM, dstM;
268 if (!this->filterMask(&dstM, srcM, matrix, NULL)) {
271 SkAutoMaskFreeImage autoDst(dstM.fImage);
277 SkRegion::Cliperator clipper(wrapper.getRgn(), dstM.fBounds);
279 if (!clipper.done() && (bounder == NULL || bounder->doIRect(dstM.fBounds))) {
282 blitter->blitMask(dstM, cr);
370 SkMask srcM, dstM;
378 if (this->filterMask(&dstM, srcM, SkMatrix::I(), &margin)) {
379 dst->set(dstM.fBounds);
SkScalerContext.cpp 696 SkMask srcM, dstM;
718 if (fMaskFilter->filterMask(&dstM, srcM, matrix, NULL)) {
719 int width = SkFastMin32(origGlyph.fWidth, dstM.fBounds.width());
720 int height = SkFastMin32(origGlyph.fHeight, dstM.fBounds.height());
722 int srcRB = dstM.fRowBytes;
724 const uint8_t* src = (const uint8_t*)dstM.fImage;
727 if (SkMask::k3D_Format == dstM.fFormat) {
732 // clean out our glyph, since it may be larger than dstM
740 SkMask::FreeImage(dstM.fImage);
SkBitmap.cpp     [all...]
SkDraw.cpp 937 SkMask dstM;
939 paint.getMaskFilter()->filterMask(&dstM, srcM, *fMatrix, NULL)) {
940 mask = &dstM;
942 dstM.fImage = NULL;
944 SkAutoMaskFreeImage ami(dstM.fImage);
    [all...]
  /external/chromium_org/third_party/skia/src/effects/
SkBlurMaskFilter.cpp 56 bool filterRectMask(SkMask* dstM, const SkRect& r, const SkMatrix& matrix,
239 SkMask srcM, dstM;
249 filterResult = this->filterRectMask(&dstM, rects[0], matrix, &margin,
252 filterResult = this->filterMask(&dstM, srcM, matrix, &margin);
271 * with our outer-rect (dstM.fBounds)
277 int smallW = dstM.fBounds.width() - srcM.fBounds.width() + 2;
278 int smallH = dstM.fBounds.height() - srcM.fBounds.height() + 2;
330 patch->fOuterRect = dstM.fBounds;
  /external/skia/src/effects/
SkBlurMaskFilter.cpp 61 bool filterRectMask(SkMask* dstM, const SkRect& r, const SkMatrix& matrix,
293 SkMask srcM, dstM;
299 if (!this->filterMask(&dstM, srcM, matrix, &margin)) {
354 patch->fOuterRect = dstM.fBounds;
388 SkMask srcM, dstM;
398 filterResult = this->filterRectMask(&dstM, rects[0], matrix, &margin,
401 filterResult = this->filterMask(&dstM, srcM, matrix, &margin);
420 * with our outer-rect (dstM.fBounds)
426 int smallW = dstM.fBounds.width() - srcM.fBounds.width() + 2;
427 int smallH = dstM.fBounds.height() - srcM.fBounds.height() + 2
    [all...]
  /external/chromium_org/third_party/skia/src/gpu/
SkGpuDevice.cpp 771 SkMask srcM, dstM;
779 if (!filter->filterMask(&dstM, srcM, context->getMatrix(), NULL)) {
782 // this will free-up dstM when we're done (allocated in filterMask())
783 SkAutoMaskFreeImage autoDst(dstM.fImage);
785 if (clip.quickReject(dstM.fBounds)) {
788 if (bounder && !bounder->doIRect(dstM.fBounds)) {
792 // we now have a device-aligned 8bit mask in dstM, ready to be drawn using
795 desc.fWidth = dstM.fBounds.width();
796 desc.fHeight = dstM.fBounds.height();
806 dstM.fImage, dstM.fRowBytes)
    [all...]
  /external/skia/src/gpu/
SkGpuDevice.cpp 771 SkMask srcM, dstM;
779 if (!filter->filterMask(&dstM, srcM, context->getMatrix(), NULL)) {
782 // this will free-up dstM when we're done (allocated in filterMask())
783 SkAutoMaskFreeImage autoDst(dstM.fImage);
785 if (clip.quickReject(dstM.fBounds)) {
788 if (bounder && !bounder->doIRect(dstM.fBounds)) {
792 // we now have a device-aligned 8bit mask in dstM, ready to be drawn using
795 desc.fWidth = dstM.fBounds.width();
796 desc.fHeight = dstM.fBounds.height();
806 dstM.fImage, dstM.fRowBytes)
    [all...]

Completed in 377 milliseconds