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

  /external/skia/src/core/
SkGpuBlurUtils.h 29 * @param dstBounds The destination bounds, relative to the source texture.
42 const SkIRect& dstBounds,
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...]
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;
SkGpuBlurUtils.cpp 192 const SkIRect& dstBounds,
207 SkIPoint srcOffset = SkIPoint::Make(-dstBounds.x(), -dstBounds.y());
208 SkIRect localDstBounds = SkIRect::MakeWH(dstBounds.width(), dstBounds.height());
231 const int width = dstBounds.width();
232 const int height = dstBounds.height();
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);
SkDraw.cpp     [all...]
  /external/dng_sdk/source/
dng_resample.cpp 511 const dng_rect &dstBounds,
534 const dng_rect &dstBounds,
541 , fDstBounds (dstBounds)
545 , fRowScale ((srcBounds.H () != 0) ? dstBounds.H () / (real64) srcBounds.H () : 0)
546 , fColScale ((srcBounds.W () != 0) ? dstBounds.W () / (real64) srcBounds.W () : 0)
833 const dng_rect &dstBounds,
840 dstBounds,
844 dstBounds);
dng_resample.h 286 const dng_rect &dstBounds,
  /external/skia/src/gpu/vk/
GrVkGpu.cpp     [all...]
  /external/skia/include/core/
SkImageFilter.h 363 * "dstBounds" are computed by transforming the crop rect by the context's
366 * intersecting the initial bounds with "dstBounds", to ensure that we never
370 bool applyCropRect(const Context&, const SkIRect& srcBounds, SkIRect* dstBounds) const;

Completed in 241 milliseconds