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

  /external/skia/src/effects/
SkBlurImageFilter.cpp 87 SkIRect dstBounds;
88 if (!this->applyCropRect(this->mapContext(ctx), srcBounds, &dstBounds)) {
91 if (!srcBounds.intersect(dstBounds)) {
118 SkAutoTUnref<SkBaseDevice> device(proxy->createDevice(dstBounds.width(), dstBounds.height()));
132 offset->fX = dstBounds.fLeft;
133 offset->fY = dstBounds.fTop;
136 int w = dstBounds.width(), h = dstBounds.height();
138 srcBounds.offset(-dstBounds.x(), -dstBounds.y())
    [all...]
SkGpuBlurUtils.h 29 * @param dstBounds The destination bounds, relative to the source texture.
40 const SkRect& dstBounds,
SkGpuBlurUtils.cpp 167 const SkRect& dstBounds,
179 SkPoint srcOffset = SkPoint::Make(-dstBounds.x(), -dstBounds.y());
180 SkRect localDstBounds = SkRect::MakeWH(dstBounds.width(), dstBounds.height());
205 desc.fWidth = SkScalarFloorToInt(dstBounds.width());
206 desc.fHeight = SkScalarFloorToInt(dstBounds.height());
  /external/skia/src/core/
SkMatrixImageFilter.cpp 61 SkIRect srcBounds, dstBounds;
72 dstRect.roundOut(&dstBounds);
74 SkAutoTUnref<SkBaseDevice> device(proxy->createDevice(dstBounds.width(), dstBounds.height()));
80 canvas.translate(-SkIntToScalar(dstBounds.x()), -SkIntToScalar(dstBounds.y()));
89 offset->fX = dstBounds.fLeft;
90 offset->fY = dstBounds.fTop;
SkImageFilter.cpp 381 SkIRect* dstBounds) const {
382 this->onFilterNodeBounds(srcBounds, ctx.ctm(), dstBounds, kForward_MapDirection);
383 fCropRect.applyTo(*dstBounds, ctx.ctm(), dstBounds);
389 return dstBounds->intersect(ctx.clipBounds());
398 SkIRect dstBounds;
399 this->onFilterNodeBounds(srcBounds, ctx.ctm(), &dstBounds, kForward_MapDirection);
400 fCropRect.applyTo(dstBounds, ctx.ctm(), 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/include/core/
SkImageFilter.h 398 * destination bounds for this filter. "dstBounds" are computed by
402 * initial bounds with "dstBounds", to ensure that we never sample
406 bool applyCropRect(const Context&, const SkIRect& srcBounds, SkIRect* dstBounds) const;

Completed in 3616 milliseconds