Home | History | Annotate | Download | only in core

Lines Matching refs:rgn

207      *  Return true if this region, or rgn, is empty, or if their bounds do not
211 bool quickReject(const SkRegion& rgn) const {
212 return this->isEmpty() || rgn.isEmpty() ||
213 !SkIRect::Intersects(fBounds, rgn.fBounds);
260 * specified region: this = (this op rgn).
263 bool op(const SkRegion& rgn, Op op) { return this->op(*this, rgn, op); }
267 * rectangle and region: this = (rect op rgn).
270 bool op(const SkIRect& rect, const SkRegion& rgn, Op);
274 * region and rectangle: this = (rgn op rect).
277 bool op(const SkRegion& rgn, const SkIRect& rect, Op);
308 const SkRegion* rgn() const { return fRgn; }