HomeSort by relevance Sort by last modified time
    Searched refs:doAA (Results 1 - 25 of 43) sorted by null

1 2

  /external/skia/include/core/
SkClipStack.h 53 Element(const SkRect& rect, SkRegion::Op op, bool doAA) {
54 this->initRect(0, rect, op, doAA);
57 Element(const SkPath& path, SkRegion::Op op, bool doAA) {
58 this->initPath(0, path, op, doAA);
192 Element(int saveCount, const SkRect& rect, SkRegion::Op op, bool doAA) {
193 this->initRect(saveCount, rect, op, doAA);
196 Element(int saveCount, const SkPath& path, SkRegion::Op op, bool doAA) {
197 this->initPath(saveCount, path, op, doAA);
200 void initCommon(int saveCount, SkRegion::Op op, bool doAA) {
203 fDoAA = doAA;
    [all...]
  /external/skia/legacy/src/core/
SkRasterClip.cpp 67 bool SkRasterClip::setPath(const SkPath& path, const SkRegion& clip, bool doAA) {
70 if (this->isBW() && !doAA) {
78 return fAA.setPath(path, &clip, doAA);
82 bool SkRasterClip::setPath(const SkPath& path, const SkIRect& clip, bool doAA) {
85 return this->setPath(path, tmp, doAA);
89 bool doAA) {
91 return this->setPath(path, clip.bwRgn(), doAA);
95 if (!this->setPath(path, clip, doAA)) {
151 bool SkRasterClip::op(const SkRect& r, SkRegion::Op op, bool doAA) {
154 if (doAA) {
    [all...]
SkRasterClip.h 34 bool setPath(const SkPath& path, const SkRegion& clip, bool doAA);
35 bool setPath(const SkPath& path, const SkIRect& clip, bool doAA);
36 bool setPath(const SkPath& path, const SkRasterClip&, bool doAA);
41 bool op(const SkRect&, SkRegion::Op, bool doAA);
SkClipStack.cpp 26 Rec(int saveCount, const SkRect& rect, SkRegion::Op op, bool doAA) : fRect(rect) {
30 fDoAA = doAA;
33 Rec(int saveCount, const SkPath& path, SkRegion::Op op, bool doAA) : fPath(path) {
38 fDoAA = doAA;
145 void SkClipStack::clipDevRect(const SkRect& rect, SkRegion::Op op, bool doAA) {
164 new (fDeque.push_back()) Rec(fSaveCount, rect, op, doAA);
167 void SkClipStack::clipDevPath(const SkPath& path, SkRegion::Op op, bool doAA) {
188 new (fDeque.push_back()) Rec(fSaveCount, path, op, doAA);
SkAAClip.h 34 bool setRect(const SkRect&, bool doAA = true);
35 bool setPath(const SkPath&, const SkRegion* clip = NULL, bool doAA = true);
43 bool op(const SkRect&, SkRegion::Op, bool doAA);
SkPictureFlat.h 64 // doAA:1 | regionOp:4
66 static inline uint32_t ClipParams_pack(SkRegion::Op op, bool doAA) {
67 unsigned doAABit = doAA ? 1 : 0;
  /external/skia/src/core/
SkRasterClip.cpp 73 bool SkRasterClip::setPath(const SkPath& path, const SkRegion& clip, bool doAA) {
76 if (this->isBW() && !doAA) {
84 (void)fAA.setPath(path, &clip, doAA);
89 bool SkRasterClip::setPath(const SkPath& path, const SkIRect& clip, bool doAA) {
92 return this->setPath(path, tmp, doAA);
96 bool doAA) {
98 return this->setPath(path, clip.bwRgn(), doAA);
102 if (!this->setPath(path, clip, doAA)) {
166 bool SkRasterClip::op(const SkRect& r, SkRegion::Op op, bool doAA) {
169 if (fIsBW && doAA) {
    [all...]
SkRasterClip.h 42 bool setPath(const SkPath& path, const SkRegion& clip, bool doAA);
43 bool setPath(const SkPath& path, const SkIRect& clip, bool doAA);
44 bool setPath(const SkPath& path, const SkRasterClip&, bool doAA);
49 bool op(const SkRect&, SkRegion::Op, bool doAA);
SkAAClip.h 34 bool setRect(const SkRect&, bool doAA = true);
35 bool setPath(const SkPath&, const SkRegion* clip = NULL, bool doAA = true);
43 bool op(const SkRect&, SkRegion::Op, bool doAA);
SkPictureRecord.cpp 354 bool SkPictureRecord::clipRect(const SkRect& rect, SkRegion::Op op, bool doAA) {
357 addInt(ClipParams_pack(op, doAA));
361 return this->INHERITED::clipRect(rect, op, doAA);
364 bool SkPictureRecord::clipRRect(const SkRRect& rrect, SkRegion::Op op, bool doAA) {
366 return this->SkPictureRecord::clipRect(rrect.getBounds(), op, doAA);
371 addInt(ClipParams_pack(op, doAA));
377 return this->INHERITED::clipRect(rrect.getBounds(), op, doAA);
379 return this->INHERITED::clipRRect(rrect, op, doAA);
383 bool SkPictureRecord::clipPath(const SkPath& path, SkRegion::Op op, bool doAA) {
387 return this->clipRect(r, op, doAA);
    [all...]
SkClipStack.cpp 525 void SkClipStack::clipDevRect(const SkRect& rect, SkRegion::Op op, bool doAA) {
537 if (element->rectRectIntersectAllowed(rect, doAA)) {
544 element->fDoAA = doAA;
559 new (fDeque.push_back()) Element(fSaveCount, rect, op, doAA);
567 void SkClipStack::clipDevPath(const SkPath& path, SkRegion::Op op, bool doAA) {
570 return this->clipDevRect(alt, op, doAA);
596 new (fDeque.push_back()) Element(fSaveCount, path, op, doAA);
SkCanvas.cpp     [all...]
  /external/skia/bench/
LineBench.cpp 30 LineBench(void* param, SkScalar width, bool doAA) : INHERITED(param) {
32 fDoAA = doAA;
33 fName.printf("lines_%g_%s", width, doAA ? "AA" : "BW");
AAClipBench.cpp 31 AAClipBench(void* param, bool doPath, bool doAA)
34 , fDoAA(doAA) {
38 doAA ? "AA" : "BW");
106 NestedAAClipBench(void* param, bool doAA)
108 , fDoAA(doAA) {
110 fName.printf("nested_aaclip_%s", doAA ? "AA" : "BW");
196 AAClipBuilderBench(void* param, bool doPath, bool doAA) : INHERITED(param) {
198 fDoAA = doAA;
201 doAA ? "AA" : "BW");
  /external/skia/include/images/
SkFlipPixelRef.h 31 void inval(const SkRect& r, bool doAA) { fFlipper.inval(r, doAA); }
  /external/skia/legacy/include/core/
SkClipStack.h 39 void clipDevRect(const SkRect&, SkRegion::Op, bool doAA);
40 void clipDevPath(const SkPath&, SkRegion::Op, bool doAA);
  /external/skia/legacy/include/images/
SkFlipPixelRef.h 31 void inval(const SkRect& r, bool doAA) { fFlipper.inval(r, doAA); }
  /external/skia/src/utils/
SkNWayCanvas.cpp 139 bool SkNWayCanvas::clipRect(const SkRect& rect, SkRegion::Op op, bool doAA) {
142 iter->clipRect(rect, op, doAA);
144 return this->INHERITED::clipRect(rect, op, doAA);
147 bool SkNWayCanvas::clipRRect(const SkRRect& rrect, SkRegion::Op op, bool doAA) {
150 iter->clipRRect(rrect, op, doAA);
152 return this->INHERITED::clipRRect(rrect, op, doAA);
155 bool SkNWayCanvas::clipPath(const SkPath& path, SkRegion::Op op, bool doAA) {
158 iter->clipPath(path, op, doAA);
160 return this->INHERITED::clipPath(path, op, doAA);
SkProxyCanvas.cpp 61 bool SkProxyCanvas::clipRect(const SkRect& rect, SkRegion::Op op, bool doAA) {
62 return fProxy->clipRect(rect, op, doAA);
65 bool SkProxyCanvas::clipRRect(const SkRRect& rrect, SkRegion::Op op, bool doAA) {
66 return fProxy->clipRRect(rrect, op, doAA);
69 bool SkProxyCanvas::clipPath(const SkPath& path, SkRegion::Op op, bool doAA) {
70 return fProxy->clipPath(path, op, doAA);
SkDumpCanvas.cpp 268 static const char* bool_to_aastring(bool doAA) {
269 return doAA ? "AA" : "BW";
272 bool SkDumpCanvas::clipRect(const SkRect& rect, SkRegion::Op op, bool doAA) {
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) {
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) {
292 bool_to_aastring(doAA));
    [all...]
SkPictureUtils.cpp 175 bool doAA) SK_OVERRIDE {
182 bool doAA) SK_OVERRIDE {
186 bool doAA) SK_OVERRIDE {
  /external/skia/legacy/src/utils/
SkNWayCanvas.cpp 136 bool SkNWayCanvas::clipRect(const SkRect& rect, SkRegion::Op op, bool doAA) {
139 iter->clipRect(rect, op, doAA);
141 return this->INHERITED::clipRect(rect, op, doAA);
144 bool SkNWayCanvas::clipPath(const SkPath& path, SkRegion::Op op, bool doAA) {
147 iter->clipPath(path, op, doAA);
149 return this->INHERITED::clipPath(path, op, doAA);
SkProxyCanvas.cpp 61 bool SkProxyCanvas::clipRect(const SkRect& rect, SkRegion::Op op, bool doAA) {
62 return fProxy->clipRect(rect, op, doAA);
65 bool SkProxyCanvas::clipPath(const SkPath& path, SkRegion::Op op, bool doAA) {
66 return fProxy->clipPath(path, op, doAA);
SkDumpCanvas.cpp 236 static const char* bool_to_aastring(bool doAA) {
237 return doAA ? "AA" : "BW";
240 bool SkDumpCanvas::clipRect(const SkRect& rect, SkRegion::Op op, bool doAA) {
244 bool_to_aastring(doAA));
245 return this->INHERITED::clipRect(rect, op, doAA);
248 bool SkDumpCanvas::clipPath(const SkPath& path, SkRegion::Op op, bool doAA) {
252 bool_to_aastring(doAA));
253 return this->INHERITED::clipPath(path, op, doAA);
  /external/skia/gm/
rrects.cpp 17 RRectGM(bool doAA, bool doClip) : fDoAA(doAA), fDoClip(doClip) {

Completed in 2756 milliseconds

1 2