Searched defs:isAA (Results 1 - 8 of 8) sorted by relevance

/external/skia/gm/
H A Dwindowrectangles.cpp82 bool isAA = element->isAA(); local
85 canvas->clipPath(element->getPath(), op, isAA);
88 canvas->clipRRect(element->getRRect(), op, isAA);
91 canvas->clipRect(element->getRect(), op, isAA);
/external/skia/src/core/
H A DSkRasterClip.h42 void op(const SkRect&, const SkMatrix&, const SkIRect& limit, SkRegion::Op, bool isAA);
43 void op(const SkRRect&, const SkMatrix&, const SkIRect& limit, SkRegion::Op, bool isAA);
44 void op(const SkPath&, const SkMatrix&, const SkIRect& limit, SkRegion::Op, bool isAA);
74 bool isAA() const { return !fIsBW; } function in class:SkRasterClip
H A DSkClipStack.cpp78 visitor->clipPath(this->getPath(), this->getOp(), this->isAA());
81 visitor->clipRRect(this->getRRect(), this->getOp(), this->isAA());
84 visitor->clipRect(this->getRect(), this->getOp(), this->isAA());
677 bool isAA = false; local
699 isAA = (isAA || element->isAA());
702 return isAA;
718 if (prior->rectRectIntersectAllowed(element.getRect(), element.isAA())) {
726 prior->fDoAA = element.isAA();
[all...]
H A DSkClipStack.h120 bool isAA() const { return fDoAA; } function in class:SkClipStack::Element
H A DSkCanvas.cpp1474 const bool isAA = kSoft_ClipEdgeStyle == edgeStyle; local
1476 FOR_EACH_TOP_DEVICE(device->clipRect(rect, op, isAA));
1480 isAA);
1512 bool isAA = kSoft_ClipEdgeStyle == edgeStyle; local
1514 FOR_EACH_TOP_DEVICE(device->clipRRect(rrect, op, isAA));
1517 isAA);
1549 bool isAA = kSoft_ClipEdgeStyle == edgeStyle; local
1551 FOR_EACH_TOP_DEVICE(device->clipPath(path, op, isAA));
1556 isAA);
/external/skia/src/gpu/
H A DGrClipStackClip.cpp51 bool isAA; local
52 if (fStack->isRRect(*rtBounds, rr, &isAA)) {
53 *aa = GrBoolToAA(isAA);
121 if (!element->isAA()) {
207 if (iter.get()->isAA()) {
451 GrAA aa = GrBoolToAA(element->isAA());
/external/skia/src/pipe/
H A DSkPipeReader.cpp275 bool isAA = unpack_verb_extra(packedVerb) & 1; local
276 canvas->clipRect(*skip<SkRect>(reader), op, isAA); local
282 bool isAA = unpack_verb_extra(packedVerb) & 1; local
283 canvas->clipRRect(read_rrect(reader), op, isAA); local
289 bool isAA = unpack_verb_extra(packedVerb) & 1; local
292 canvas->clipPath(path, op, isAA);
/external/skia/src/ports/
H A DSkFontHost_win.cpp1244 const bool isAA = !isLCD(fRec); local
1259 //The offscreen contains a GDI blit if isAA and kGenA8FromLCD_Flag is not set.
1261 if (isAA && !(fRec.fFlags & SkScalerContext::kGenA8FromLCD_Flag)) {
1302 } else if (isAA) {

Completed in 160 milliseconds