Lines Matching defs:outset
75 innerTransformedRect.outset(kColorBleedTolerance, kColorBleedTolerance);
217 // This method outsets 'iRect' by 'outset' all around and then clamps its extents to
220 inline void clamped_outset_with_offset(SkIRect* iRect, int outset, SkPoint* offset,
222 iRect->outset(outset, outset);
226 offset->fX -= outset - leftClampDelta;
229 offset->fX -= outset;
234 offset->fY -= outset - topClampDelta;
237 offset->fY -= outset;
362 // Conservative estimate of how much a coord could be outset from src rect:
473 // If we have to outset for AA then we will generate texture coords outside the src rect. The
621 int outset = sampling.useCubic ? GrBicubicEffect::kFilterTexelPad : 1;
622 clamped_outset_with_offset(&iTileR, outset, &offset, iClampRect);