Lines Matching refs:bounds
36 clip().bounds = mInitialBounds; in resetState()
52 const SkRect& bounds, bool aa, bool fillsBounds) { in apply() argument
57 bool rect = matrix.mapRect(&devBounds, bounds) && fillsBounds; in apply()
58 if (!this->bounds.intersect(aa ? devBounds.roundOut() : devBounds.round())) { in apply()
59 this->bounds.setEmpty(); in apply()
74 SkRect bounds = path.getBounds(); in internalClipPath() local
79 clip().apply(op, transform(), bounds, /*aa=*/true, /*fillsBounds=*/false); in internalClipPath()
110 SkIRect bounds = clip().bounds; in getClipBounds() local
114 if (bounds.isEmpty() || !transform().invert(&inverse)) { in getClipBounds()
118 return inverse.mapRect(SkRect::Make(bounds)); in getClipBounds()
122 const SkRect& bounds) const { in quickReject()
123 SkRect devRect = matrix.mapRect(bounds); in quickReject()
125 SkIRect::Intersects(this->bounds, aa ? devRect.roundOut() : devRect.round()); in quickReject()