Lines Matching defs:doAA
67 SkRasterClip::SkRasterClip(const SkPath& path, const SkIRect& bounds, bool doAA) {
68 if (doAA) {
144 bool SkRasterClip::op(const SkRect& localRect, const SkMatrix& matrix, SkClipOp op, bool doAA) {
149 return this->op(SkPath::Rect(localRect), matrix, op, doAA);
153 if (fIsBW && doAA) {
158 doAA = false;
162 if (fIsBW && !doAA) {
168 (void)fAA.op(devRect, op, doAA);
173 bool SkRasterClip::op(const SkRRect& rrect, const SkMatrix& matrix, SkClipOp op, bool doAA) {
174 return this->op(SkPath::RRect(rrect), matrix, op, doAA);
177 bool SkRasterClip::op(const SkPath& path, const SkMatrix& matrix, SkClipOp op, bool doAA) {
189 if (doAA && fIsBW) {
195 fAA.setPath(devPath, this->getBounds(), doAA);
199 return this->op(SkRasterClip(devPath, this->getBounds(), doAA), op);