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 28 * @param dstBounds The destination bounds, relative to the source texture.
39 const SkIRect& dstBounds,
SkBlurImageFilter.cpp 126 SkIRect dstBounds;
127 if (!this->applyCropRect(this->mapContext(ctx), inputBounds, &dstBounds)) {
130 if (!inputBounds.intersect(dstBounds)) {
156 offset->fX = dstBounds.fLeft;
157 offset->fY = dstBounds.fTop;
159 dstBounds.offset(-inputOffset);
168 dstBounds,
177 SkIRect::MakeWH(dstBounds.width(),
178 dstBounds.height()),
212 SkImageInfo info = SkImageInfo::Make(dstBounds.width(), dstBounds.height()
    [all...]
SkMatrixImageFilter.cpp 70 SkIRect dstBounds;
71 dstRect.roundOut(&dstBounds);
73 sk_sp<SkSpecialSurface> surf(input->makeSurface(ctx.outputProperties(), dstBounds.size()));
83 canvas->translate(-SkIntToScalar(dstBounds.x()), -SkIntToScalar(dstBounds.y()));
93 offset->fX = dstBounds.fLeft;
94 offset->fY = dstBounds.fTop;
SkGpuBlurUtils.cpp 193 const SkIRect& dstBounds,
218 SkIPoint srcOffset = SkIPoint::Make(-dstBounds.x(), -dstBounds.y());
219 SkIRect localDstBounds = SkIRect::MakeWH(dstBounds.width(), dstBounds.height());
242 const int width = dstBounds.width();
243 const int height = dstBounds.height();
SkImageFilter.cpp 338 SkIRect* dstBounds) const {
340 fCropRect.applyTo(temp, ctx.ctm(), this->affectsTransparentBlack(), dstBounds);
346 return dstBounds->intersect(ctx.clipBounds());
423 SkIRect dstBounds = this->onFilterNodeBounds(srcBounds, ctx.ctm(), kForward_MapDirection);
424 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 360 * "dstBounds" are computed by transforming the crop rect by the context's
363 * intersecting the initial bounds with "dstBounds", to ensure that we never
367 bool applyCropRect(const Context&, const SkIRect& srcBounds, SkIRect* dstBounds) const;

Completed in 155 milliseconds