Searched defs:dstBounds (Results 1 - 7 of 7) sorted by relevance

/external/skia/src/core/
H A DSkMatrixImageFilter.cpp71 SkIRect dstBounds; local
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;
H A DSkBlurImageFilter.cpp158 SkIRect dstBounds; local
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
[all...]
H A DSkGpuBlurUtils.cpp192 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();
189 GaussianBlur(GrContext* context, sk_sp<GrTextureProxy> srcProxy, sk_sp<SkColorSpace> colorSpace, const SkIRect& dstBounds, const SkIRect& srcBounds, float sigmaX, float sigmaY, GrTextureDomain::Mode mode, SkBackingFit fit) argument
H A DSkImageFilter.cpp351 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); local
437 fCropRect.applyTo(dstBounds, ctx.ctm(), this->affectsTransparentBlack(), bounds);
H A DSkDraw.cpp1222 const SkRect* dstBounds, const SkPaint& origPaint) const {
1279 if (dstBounds) {
1280 this->drawRect(srcBounds, paintWithShader, &prematrix, dstBounds);
1221 drawBitmap(const SkBitmap& bitmap, const SkMatrix& prematrix, const SkRect* dstBounds, const SkPaint& origPaint) const argument
/external/dng_sdk/source/
H A Ddng_resample.cpp511 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);
531 dng_resample_task(const dng_image &srcImage, dng_image &dstImage, const dng_rect &srcBounds, const dng_rect &dstBounds, const dng_resample_function &kernel) argument
829 ResampleImage(dng_host &host, const dng_image &srcImage, dng_image &dstImage, const dng_rect &srcBounds, const dng_rect &dstBounds, const dng_resample_function &kernel) argument
/external/skia/src/gpu/vk/
H A DGrVkGpu.cpp1911 void adjust_bounds_to_granularity(SkIRect* dstBounds, const SkIRect& srcBounds, argument
1920 dstBounds->fRight = srcBounds.fRight + rightAdj;
1921 if (dstBounds->fRight > maxWidth) {
1922 dstBounds->fRight = maxWidth;
1923 dstBounds->fLeft = 0;
1925 dstBounds->fLeft = srcBounds.fLeft - srcBounds.fLeft % granularity.width;
1928 dstBounds->fLeft = srcBounds.fLeft;
1929 dstBounds->fRight = srcBounds.fRight;
1939 dstBounds->fBottom = srcBounds.fBottom + bottomAdj;
1940 if (dstBounds
[all...]

Completed in 237 milliseconds