• Home
  • Raw
  • Download

Lines Matching refs:bounds

194         SkRect bounds = devRect;  in ShadowCircularRRectOp()  local
225 this->setBounds(bounds, HasAABloat::kNo, IsZeroArea::kNo); in ShadowCircularRRectOp()
228 blurRadius, blurClamp, bounds, type, isCircle}); in ShadowCircularRRectOp()
291 const SkRect& bounds = args.fDevBounds; in fillInCircleVerts() local
296 SkPoint center = SkPoint::Make(bounds.centerX(), bounds.centerY()); in fillInCircleVerts()
297 SkScalar halfWidth = 0.5f * bounds.width(); in fillInCircleVerts()
434 const SkRect& bounds = args.fDevBounds; in fillInRRectVerts() local
437 SkScalar minDim = 0.5f*SkTMin(bounds.width(), bounds.height()); in fillInRRectVerts()
442 SkScalar xInner[4] = { bounds.fLeft + umbraInset, bounds.fRight - umbraInset, in fillInRRectVerts()
443 bounds.fLeft + umbraInset, bounds.fRight - umbraInset }; in fillInRRectVerts()
444 SkScalar xMid[4] = { bounds.fLeft + outerRadius, bounds.fRight - outerRadius, in fillInRRectVerts()
445 bounds.fLeft + outerRadius, bounds.fRight - outerRadius }; in fillInRRectVerts()
446 SkScalar xOuter[4] = { bounds.fLeft, bounds.fRight, in fillInRRectVerts()
447 bounds.fLeft, bounds.fRight }; in fillInRRectVerts()
448 SkScalar yInner[4] = { bounds.fTop + umbraInset, bounds.fTop + umbraInset, in fillInRRectVerts()
449 bounds.fBottom - umbraInset, bounds.fBottom - umbraInset }; in fillInRRectVerts()
450 SkScalar yMid[4] = { bounds.fTop + outerRadius, bounds.fTop + outerRadius, in fillInRRectVerts()
451 bounds.fBottom - outerRadius, bounds.fBottom - outerRadius }; in fillInRRectVerts()
452 SkScalar yOuter[4] = { bounds.fTop, bounds.fTop, in fillInRRectVerts()
453 bounds.fBottom, bounds.fBottom }; in fillInRRectVerts()
527 (*verts)->fPos = SkPoint::Make(bounds.fLeft + inset, bounds.fTop + inset); in fillInRRectVerts()
535 (*verts)->fPos = SkPoint::Make(bounds.fRight - inset, bounds.fTop + inset); in fillInRRectVerts()
543 (*verts)->fPos = SkPoint::Make(bounds.fLeft + inset, bounds.fBottom - inset); in fillInRRectVerts()
551 (*verts)->fPos = SkPoint::Make(bounds.fRight - inset, bounds.fBottom - inset); in fillInRRectVerts()
658 SkRect bounds; in Make() local
659 viewMatrix.mapRect(&bounds, rrectBounds); in Make()
667 return std::unique_ptr<GrDrawOp>(new ShadowCircularRRectOp(color, bounds, in Make()