Home | History | Annotate | Download | only in core

Lines Matching defs:rgn

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