Home | History | Annotate | Download | only in core

Lines Matching refs:rgn

217      *  Return true if this region, or rgn, is empty, or if their bounds do not
221 bool quickReject(const SkRegion& rgn) const {
222 return this->isEmpty() || rgn.isEmpty() ||
223 !SkIRect::Intersects(fBounds, rgn.fBounds);
270 * specified region: this = (this op rgn).
273 bool op(const SkRegion& rgn, Op op) { return this->op(*this, rgn, op); }
277 * rectangle and region: this = (rect op rgn).
280 bool op(const SkIRect& rect, const SkRegion& rgn, Op);
284 * region and rectangle: this = (rgn op rect).
287 bool op(const SkRegion& rgn, const SkIRect& rect, Op);
318 const SkRegion* rgn() const { return fRgn; }