Home | History | Annotate | Download | only in core

Lines Matching refs:doAA

354 bool SkPictureRecord::clipRect(const SkRect& rect, SkRegion::Op op, bool doAA) {
357 addInt(ClipParams_pack(op, doAA));
361 return this->INHERITED::clipRect(rect, op, doAA);
364 bool SkPictureRecord::clipRRect(const SkRRect& rrect, SkRegion::Op op, bool doAA) {
366 return this->SkPictureRecord::clipRect(rrect.getBounds(), op, doAA);
371 addInt(ClipParams_pack(op, doAA));
377 return this->INHERITED::clipRect(rrect.getBounds(), op, doAA);
379 return this->INHERITED::clipRRect(rrect, op, doAA);
383 bool SkPictureRecord::clipPath(const SkPath& path, SkRegion::Op op, bool doAA) {
387 return this->clipRect(r, op, doAA);
392 addInt(ClipParams_pack(op, doAA));
398 return this->INHERITED::clipRect(path.getBounds(), op, doAA);
400 return this->INHERITED::clipPath(path, op, doAA);