• Home
  • Raw
  • Download

Lines Matching refs:dstRect

50                                  const SkRect& dstRect,  in convolve_gaussian_1d()  argument
64 drawContext->fillRectWithLocalMatrix(clip, paint, SkMatrix::I(), dstRect, localMatrix); in convolve_gaussian_1d()
69 const SkRect& dstRect, in convolve_gaussian_2d() argument
94 drawContext->fillRectWithLocalMatrix(clip, paint, SkMatrix::I(), dstRect, localMatrix); in convolve_gaussian_2d()
107 SkRect dstRect = SkRect::MakeWH(srcRect.width(), srcRect.height()); in convolve_gaussian() local
109 convolve_gaussian_1d(drawContext, clip, dstRect, srcOffset, texture, in convolve_gaussian()
120 SkRect::MakeLTRB(0, 0, dstRect.right(), midRect.top()).roundOut(&topRect); in convolve_gaussian()
121 SkRect::MakeLTRB(0, midRect.bottom(), dstRect.right(), dstRect.bottom()) in convolve_gaussian()
126 SkRect::MakeLTRB(midRect.right(), midRect.top(), dstRect.width(), midRect.bottom()); in convolve_gaussian()
127 dstRect.fTop = midRect.top(); in convolve_gaussian()
128 dstRect.fBottom = midRect.bottom(); in convolve_gaussian()
132 SkRect::MakeLTRB(0, 0, midRect.left(), dstRect.bottom()).roundOut(&topRect); in convolve_gaussian()
133 SkRect::MakeLTRB(midRect.right(), 0, dstRect.right(), dstRect.bottom()) in convolve_gaussian()
138 SkRect::MakeLTRB(midRect.left(), midRect.bottom(), midRect.right(), dstRect.height()); in convolve_gaussian()
139 dstRect.fLeft = midRect.left(); in convolve_gaussian()
140 dstRect.fRight = midRect.right(); in convolve_gaussian()
151 convolve_gaussian_1d(drawContext, clip, dstRect, srcOffset, texture, in convolve_gaussian()
232 SkRect dstRect(srcRect); in GaussianBlur() local
252 scale_rect(&dstRect, i < scaleFactorX ? 0.5f : 1.0f, in GaussianBlur()
260 dstDrawContext->fillRectToRect(clip, paint, SkMatrix::I(), dstRect, srcRect); in GaussianBlur()
263 srcRect = dstRect; in GaussianBlur()
381 SkRect dstRect(srcRect); in GaussianBlur() local
382 scale_rect(&dstRect, (float) scaleFactorX, (float) scaleFactorY); in GaussianBlur()
389 dstDrawContext->fillRectToRect(clip, paint, SkMatrix::I(), dstRect, srcRect); in GaussianBlur()
392 srcRect = dstRect; in GaussianBlur()