Searched defs:doAA (Results 26 - 35 of 35) sorted by relevance

12

/external/skia/src/utils/
H A DSkDumpCanvas.cpp268 static const char* bool_to_aastring(bool doAA) { argument
269 return doAA ? "AA" : "BW";
272 bool SkDumpCanvas::clipRect(const SkRect& rect, SkRegion::Op op, bool doAA) { argument
276 bool_to_aastring(doAA));
277 return this->INHERITED::clipRect(rect, op, doAA);
280 bool SkDumpCanvas::clipRRect(const SkRRect& rrect, SkRegion::Op op, bool doAA) { argument
284 bool_to_aastring(doAA));
285 return this->INHERITED::clipRRect(rrect, op, doAA);
288 bool SkDumpCanvas::clipPath(const SkPath& path, SkRegion::Op op, bool doAA) { argument
292 bool_to_aastring(doAA));
[all...]
/external/skia/legacy/src/core/
H A DSkAAClip.cpp671 bool SkAAClip::setRect(const SkRect& r, bool doAA) { argument
682 return this->setPath(path, NULL, doAA);
1284 bool SkAAClip::setPath(const SkPath& path, const SkRegion* clip, bool doAA) { argument
1311 if (doAA) {
1694 bool SkAAClip::op(const SkRect& rOrig, SkRegion::Op op, bool doAA) {
1717 clip.setRect(*r, doAA);
H A DSkPicturePlayback.cpp524 bool doAA = ClipParams_unpackDoAA(packed); local
526 if (!canvas.clipPath(path, op, doAA) && offsetToRestore) {
549 bool doAA = ClipParams_unpackDoAA(packed); local
551 if (!canvas.clipRect(rect, op, doAA) && offsetToRestore) {
H A DSkCanvas.cpp1016 bool SkCanvas::clipRect(const SkRect& rect, SkRegion::Op op, bool doAA) { argument
1031 fClipStack.clipDevRect(r, op, doAA);
1032 return fMCRec->fRasterClip->op(r, op, doAA);
1041 return this->SkCanvas::clipPath(path, op, doAA);
1046 const SkPath& devPath, SkRegion::Op op, bool doAA) {
1056 return currClip->setPath(devPath, *currClip, doAA);
1060 clip.setPath(devPath, base, doAA);
1072 return currClip->setPath(devPath, base, doAA);
1075 clip.setPath(devPath, base, doAA);
1081 bool SkCanvas::clipPath(const SkPath& path, SkRegion::Op op, bool doAA) { argument
1045 clipPathHelper(const SkCanvas* canvas, SkRasterClip* currClip, const SkPath& devPath, SkRegion::Op op, bool doAA) argument
[all...]
/external/skia/src/core/
H A DSkPicturePlayback.cpp713 bool doAA = ClipParams_unpackDoAA(packed); local
717 if (!canvas.clipPath(path, op, doAA) && offsetToRestore) {
742 bool doAA = ClipParams_unpackDoAA(packed); local
746 if (!canvas.clipRect(rect, op, doAA) && offsetToRestore) {
758 bool doAA = ClipParams_unpackDoAA(packed); local
762 if (!canvas.clipRRect(rrect, op, doAA) && offsetToRestore) {
H A DSkAAClip.cpp685 bool SkAAClip::setRect(const SkRect& r, bool doAA) { argument
696 return this->setPath(path, NULL, doAA);
1303 bool SkAAClip::setPath(const SkPath& path, const SkRegion* clip, bool doAA) { argument
1330 if (doAA) {
1709 bool SkAAClip::op(const SkRect& rOrig, SkRegion::Op op, bool doAA) { argument
1736 clip.setRect(*r, doAA);
H A DSkCanvas.cpp1112 bool SkCanvas::clipRect(const SkRect& rect, SkRegion::Op op, bool doAA) { argument
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);
1157 clipPathHelper(const SkCanvas* canvas, SkRasterClip* currClip, const SkPath& devPath, SkRegion::Op op, bool doAA) argument
1193 clipRRect(const SkRRect& rrect, SkRegion::Op op, bool doAA) argument
1205 clipPath(const SkPath& path, SkRegion::Op op, bool doAA) argument
[all...]
/external/skia/src/gpu/
H A DGrContext.cpp708 bool doAA = needAA && apply_aa_to_rect(target, rect, width, matrix, local
712 if (doAA) {
/external/skia/src/ports/
H A DSkFontHost_mac_coretext.cpp725 bool doAA = false; local
730 doAA = true;
736 doAA = true;
771 fDoAA = !doAA;
775 if (fDoAA != doAA) {
776 CGContextSetShouldAntialias(fCG, doAA);
777 fDoAA = doAA;
/external/skia/legacy/src/ports/
H A DSkFontHost_mac_coretext.cpp706 bool doAA = false; local
713 doAA = true;
717 doAA = true;
752 fDoAA = !doAA;
757 if (fDoAA != doAA) {
758 CGContextSetShouldAntialias(fCG, doAA);
759 fDoAA = doAA;

Completed in 234 milliseconds

12