Lines Matching refs:doAA
1103 bool SkCanvas::clipRect(const SkRect& rect, SkRegion::Op op, bool doAA) { in clipRect() argument
1124 doAA &= fAllowSoftClip; in clipRect()
1134 fClipStack.clipDevRect(r, op, doAA); in clipRect()
1135 return fMCRec->fRasterClip->op(r, op, doAA); in clipRect()
1144 return this->SkCanvas::clipPath(path, op, doAA); in clipRect()
1149 const SkPath& devPath, SkRegion::Op op, bool doAA) { in clipPathHelper() argument
1162 return currClip->setPath(devPath, currClip->bwRgn(), doAA); in clipPathHelper()
1166 clip.setPath(devPath, base, doAA); in clipPathHelper()
1178 return currClip->setPath(devPath, base, doAA); in clipPathHelper()
1181 clip.setPath(devPath, base, doAA); in clipPathHelper()
1187 bool SkCanvas::clipRRect(const SkRRect& rrect, SkRegion::Op op, bool doAA) { in clipRRect() argument
1190 return this->SkCanvas::clipRect(rrect.getBounds(), op, doAA); in clipRRect()
1195 return this->SkCanvas::clipPath(path, op, doAA); in clipRRect()
1199 bool SkCanvas::clipPath(const SkPath& path, SkRegion::Op op, bool doAA) { in clipPath() argument
1220 doAA &= fAllowSoftClip; in clipPath()
1236 fClipStack.clipDevPath(devPath, op, doAA); in clipPath()
1266 doAA |= element->isAA(); in clipPath()
1271 return clipPathHelper(this, fMCRec->fRasterClip, devPath, op, doAA); in clipPath()