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

  /external/skia/src/core/
SkMatrixImageFilter.cpp 71 SkIRect dstBounds;
72 dstRect.roundOut(&dstBounds);
74 sk_sp<SkSpecialSurface> surf(input->makeSurface(ctx.outputProperties(), dstBounds.size()));
84 canvas->translate(-SkIntToScalar(dstBounds.x()), -SkIntToScalar(dstBounds.y()));
94 offset->fX = dstBounds.fLeft;
95 offset->fY = dstBounds.fTop;
SkBlurImageFilter.cpp 158 SkIRect dstBounds;
159 if (!this->applyCropRect(this->mapContext(ctx), inputBounds, &dstBounds)) {
162 if (!inputBounds.intersect(dstBounds)) {
188 offset->fX = dstBounds.fLeft;
189 offset->fY = dstBounds.fTop;
191 dstBounds.offset(-inputOffset);
200 dstBounds,
210 SkIRect::MakeWH(dstBounds.width(),
211 dstBounds.height()),
246 SkImageInfo info = SkImageInfo::Make(dstBounds.width(), dstBounds.height()
    [all...]
SkImageFilter.cpp 351 SkIRect* dstBounds) const {
353 fCropRect.applyTo(temp, ctx.ctm(), this->affectsTransparentBlack(), dstBounds);
359 return dstBounds->intersect(ctx.clipBounds());
436 SkIRect dstBounds = this->onFilterNodeBounds(srcBounds, ctx.ctm(), kForward_MapDirection);
437 fCropRect.applyTo(dstBounds, ctx.ctm(), this->affectsTransparentBlack(), bounds);

Completed in 981 milliseconds