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

  /external/skia/tests/
ClipStackTest.cpp 15 bool doAA = false;
24 s.clipDevPath(p, SkRegion::kIntersect_Op, doAA);
28 s.clipDevRect(r, SkRegion::kIntersect_Op, doAA);
30 s.clipDevRect(r, SkRegion::kIntersect_Op, doAA);
34 s.clipDevRect(r, SkRegion::kUnion_Op, doAA);
47 s.clipDevRect(r, SkRegion::kUnion_Op, doAA);
54 s.clipDevRect(r, SkRegion::kIntersect_Op, doAA);
62 s.clipDevPath(rp, SkRegion::kUnion_Op, doAA);
69 s.clipDevRect(r, SkRegion::kUnion_Op, doAA);
84 s.clipDevPath(p, SkRegion::kIntersect_Op, doAA);
    [all...]
  /external/skia/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;
SkPictureRecord.cpp 182 bool SkPictureRecord::clipRect(const SkRect& rect, SkRegion::Op op, bool doAA) {
185 addInt(ClipParams_pack(op, doAA));
190 return this->INHERITED::clipRect(rect, op, doAA);
193 bool SkPictureRecord::clipPath(const SkPath& path, SkRegion::Op op, bool doAA) {
196 addInt(ClipParams_pack(op, doAA));
203 return this->INHERITED::clipRect(path.getBounds(), op, doAA);
205 return this->INHERITED::clipPath(path, op, doAA);
SkCanvas.cpp 1016 bool SkCanvas::clipRect(const SkRect& rect, SkRegion::Op op, bool doAA) {
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) {
    [all...]
SkAAClip.cpp 671 bool SkAAClip::setRect(const SkRect& r, bool doAA) {
682 return this->setPath(path, NULL, doAA);
    [all...]
SkPicturePlayback.cpp 524 bool doAA = ClipParams_unpackDoAA(packed);
526 if (!canvas.clipPath(path, op, doAA) && offsetToRestore) {
549 bool doAA = ClipParams_unpackDoAA(packed);
551 if (!canvas.clipRect(rect, op, doAA) && offsetToRestore) {
    [all...]
SkPaint.cpp 186 void SkPaint::setAntiAlias(bool doAA) {
187 GEN_ID_INC_EVAL(doAA != isAntiAlias());
188 this->setFlags(SkSetClearMask(fFlags, doAA, kAntiAlias_Flag));
    [all...]
  /external/skia/samplecode/
SampleClip.cpp 19 static void show_text(SkCanvas* canvas, bool doAA) {
22 paint.setAntiAlias(doAA);
38 static void show_fill(SkCanvas* canvas, bool doAA) {
41 paint.setAntiAlias(doAA);
65 static void show_stroke(SkCanvas* canvas, bool doAA, SkScalar strokeWidth, int n) {
68 paint.setAntiAlias(doAA);
98 static void show_hair(SkCanvas* canvas, bool doAA) {
99 show_stroke(canvas, doAA, 0, 150);
102 static void show_thick(SkCanvas* canvas, bool doAA) {
103 show_stroke(canvas, doAA, SkIntToScalar(5), 50)
    [all...]
  /external/skia/bench/
AAClipBench.cpp 27 AAClipBuilderBench(void* param, bool doPath, bool doAA) : INHERITED(param) {
29 fDoAA = doAA;
32 doAA ? "AA" : "BW");
  /external/skia/include/core/
SkClipStack.h 39 void clipDevRect(const SkRect&, SkRegion::Op, bool doAA);
40 void clipDevPath(const SkPath&, SkRegion::Op, bool doAA);
  /external/skia/include/images/
SkFlipPixelRef.h 31 void inval(const SkRect& r, bool doAA) { fFlipper.inval(r, doAA); }
  /external/skia/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);
  /development/samples/BrowserPlugin/jni/navigation/
NavigationPlugin.cpp 54 static void inval(NPP instance, const ANPRectF& r, bool doAA) {
55 const int inset = doAA ? -1 : 0;
  /development/samples/BrowserPlugin/jni/audio/
AudioPlugin.cpp 55 static void inval(NPP instance, const ANPRectF& r, bool doAA) {
56 const int inset = doAA ? -1 : 0;
  /development/samples/BrowserPlugin/jni/form/
FormPlugin.cpp 54 static void inval(NPP instance, const ANPRectF& r, bool doAA) {
55 const int inset = doAA ? -1 : 0;
  /external/skia/src/ports/
SkFontHost_mac_coretext.cpp 706 bool doAA = false;
713 doAA = true;
717 doAA = true;
752 fDoAA = !doAA;
757 if (fDoAA != doAA) {
758 CGContextSetShouldAntialias(fCG, doAA);
759 fDoAA = doAA;
    [all...]
  /external/skia/src/gpu/
GrContext.cpp 957 bool doAA = needAA && apply_aa_to_rect(target, rect, width, matrix,
961 if (doAA)
    [all...]

Completed in 468 milliseconds