Lines Matching refs:doAA
1112 bool SkCanvas::clipRect(const SkRect& rect, SkRegion::Op op, bool doAA) {
1133 doAA &= fAllowSoftClip;
1143 fClipStack.clipDevRect(r, op, doAA);
1144 return fMCRec->fRasterClip->op(r, op, doAA);
1153 return this->SkCanvas::clipPath(path, op, doAA);
1158 const SkPath& devPath, SkRegion::Op op, bool doAA) {
1168 return currClip->setPath(devPath, *currClip, doAA);
1172 clip.setPath(devPath, base, doAA);
1184 return currClip->setPath(devPath, base, doAA);
1187 clip.setPath(devPath, base, doAA);
1193 bool SkCanvas::clipRRect(const SkRRect& rrect, SkRegion::Op op, bool doAA) {
1196 return this->SkCanvas::clipRect(rrect.getBounds(), op, doAA);
1201 return this->SkCanvas::clipPath(path, op, doAA);
1205 bool SkCanvas::clipPath(const SkPath& path, SkRegion::Op op, bool doAA) {
1226 doAA &= fAllowSoftClip;
1242 fClipStack.clipDevPath(devPath, op, doAA);
1244 return clipPathHelper(this, fMCRec->fRasterClip, devPath, op, doAA);