HomeSort by relevance Sort by last modified time
    Searched refs:dstBounds (Results 1 - 18 of 18) 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 62 SkIRect inputBounds, SkIRect dstBounds, const OutputProperties& outProps) const;
394 SkIRect srcBounds, SkIRect dstBounds) {
408 srcBounds.offset(-dstBounds.x(), -dstBounds.y());
409 dstBounds.offset(-dstBounds.x(), -dstBounds.y());
412 dstW = dstBounds.width(),
413 dstH = dstBounds.height();
423 // dstBounds. Remember that the src was intersected with the dst
    [all...]
SkMatrixImageFilter.cpp 72 SkIRect dstBounds;
73 dstRect.roundOut(&dstBounds);
75 sk_sp<SkSpecialSurface> surf(input->makeSurface(ctx.outputProperties(), dstBounds.size()));
85 canvas->translate(-SkIntToScalar(dstBounds.x()), -SkIntToScalar(dstBounds.y()));
95 offset->fX = dstBounds.fLeft;
96 offset->fY = dstBounds.fTop;
SkGpuBlurUtils.cpp 193 const SkIRect& dstBounds,
208 SkIPoint srcOffset = SkIPoint::Make(-dstBounds.x(), -dstBounds.y());
209 SkIRect localDstBounds = SkIRect::MakeWH(dstBounds.width(), dstBounds.height());
241 const int width = dstBounds.width();
242 const int height = dstBounds.height();
SkImageFilter.cpp 353 SkIRect* dstBounds) const {
355 fCropRect.applyTo(temp, ctx.ctm(), this->affectsTransparentBlack(), dstBounds);
361 return dstBounds->intersect(ctx.clipBounds());
441 SkIRect dstBounds = this->onFilterNodeBounds(srcBounds, ctx.ctm(), kForward_MapDirection);
442 fCropRect.applyTo(dstBounds, ctx.ctm(), this->affectsTransparentBlack(), bounds);
SkDraw.cpp     [all...]
  /external/skqp/src/core/
SkGpuBlurUtils.h 29 * @param dstBounds The destination bounds, relative to the source texture.
42 const SkIRect& dstBounds,
SkBlurImageFilter.cpp 62 SkIRect inputBounds, SkIRect dstBounds, const OutputProperties& outProps) const;
394 SkIRect srcBounds, SkIRect dstBounds) {
408 srcBounds.offset(-dstBounds.x(), -dstBounds.y());
409 dstBounds.offset(-dstBounds.x(), -dstBounds.y());
412 dstW = dstBounds.width(),
413 dstH = dstBounds.height();
423 // dstBounds. Remember that the src was intersected with the dst
    [all...]
SkMatrixImageFilter.cpp 72 SkIRect dstBounds;
73 dstRect.roundOut(&dstBounds);
75 sk_sp<SkSpecialSurface> surf(input->makeSurface(ctx.outputProperties(), dstBounds.size()));
85 canvas->translate(-SkIntToScalar(dstBounds.x()), -SkIntToScalar(dstBounds.y()));
95 offset->fX = dstBounds.fLeft;
96 offset->fY = dstBounds.fTop;
SkGpuBlurUtils.cpp 193 const SkIRect& dstBounds,
208 SkIPoint srcOffset = SkIPoint::Make(-dstBounds.x(), -dstBounds.y());
209 SkIRect localDstBounds = SkIRect::MakeWH(dstBounds.width(), dstBounds.height());
240 const int width = dstBounds.width();
241 const int height = dstBounds.height();
SkImageFilter.cpp 353 SkIRect* dstBounds) const {
355 fCropRect.applyTo(temp, ctx.ctm(), this->affectsTransparentBlack(), dstBounds);
361 return dstBounds->intersect(ctx.clipBounds());
441 SkIRect dstBounds = this->onFilterNodeBounds(srcBounds, ctx.ctm(), kForward_MapDirection);
442 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/skqp/src/gpu/vk/
GrVkGpu.cpp     [all...]
  /external/skia/include/core/
SkImageFilter.h 374 * "dstBounds" are computed by transforming the crop rect by the context's
377 * intersecting the initial bounds with "dstBounds", to ensure that we never
381 bool applyCropRect(const Context&, const SkIRect& srcBounds, SkIRect* dstBounds) const;
  /external/skqp/include/core/
SkImageFilter.h 374 * "dstBounds" are computed by transforming the crop rect by the context's
377 * intersecting the initial bounds with "dstBounds", to ensure that we never
381 bool applyCropRect(const Context&, const SkIRect& srcBounds, SkIRect* dstBounds) const;

Completed in 447 milliseconds