Searched refs:doAA (Results 1 - 25 of 69) sorted by relevance

123

/external/chromium_org/third_party/skia/include/core/
H A DSkClipStack.h63 Element(const SkRect& rect, SkRegion::Op op, bool doAA) { argument
64 this->initRect(0, rect, op, doAA);
67 Element(const SkRRect& rrect, SkRegion::Op op, bool doAA) { argument
68 this->initRRect(0, rrect, op, doAA);
71 Element(const SkPath& path, SkRegion::Op op, bool doAA) { argument
72 this->initPath(0, path, op, doAA);
213 Element(int saveCount, const SkRRect& rrect, SkRegion::Op op, bool doAA) { argument
214 this->initRRect(saveCount, rrect, op, doAA);
217 Element(int saveCount, const SkRect& rect, SkRegion::Op op, bool doAA) { argument
218 this->initRect(saveCount, rect, op, doAA);
221 Element(int saveCount, const SkPath& path, SkRegion::Op op, bool doAA) argument
225 initCommon(int saveCount, SkRegion::Op op, bool doAA) argument
237 initRect(int saveCount, const SkRect& rect, SkRegion::Op op, bool doAA) argument
243 initRRect(int saveCount, const SkRRect& rrect, SkRegion::Op op, bool doAA) argument
[all...]
/external/skia/include/core/
H A DSkClipStack.h63 Element(const SkRect& rect, SkRegion::Op op, bool doAA) { argument
64 this->initRect(0, rect, op, doAA);
67 Element(const SkRRect& rrect, SkRegion::Op op, bool doAA) { argument
68 this->initRRect(0, rrect, op, doAA);
71 Element(const SkPath& path, SkRegion::Op op, bool doAA) { argument
72 this->initPath(0, path, op, doAA);
213 Element(int saveCount, const SkRRect& rrect, SkRegion::Op op, bool doAA) { argument
214 this->initRRect(saveCount, rrect, op, doAA);
217 Element(int saveCount, const SkRect& rect, SkRegion::Op op, bool doAA) { argument
218 this->initRect(saveCount, rect, op, doAA);
221 Element(int saveCount, const SkPath& path, SkRegion::Op op, bool doAA) argument
225 initCommon(int saveCount, SkRegion::Op op, bool doAA) argument
237 initRect(int saveCount, const SkRect& rect, SkRegion::Op op, bool doAA) argument
243 initRRect(int saveCount, const SkRRect& rrect, SkRegion::Op op, bool doAA) argument
[all...]
/external/chromium_org/third_party/skia/bench/
H A DLineBench.cpp29 LineBench(SkScalar width, bool doAA) { argument
31 fDoAA = doAA;
32 fName.printf("lines_%g_%s", width, doAA ? "AA" : "BW");
H A DAAClipBench.cpp27 AAClipBench(bool doPath, bool doAA) argument
29 , fDoAA(doAA) {
33 doAA ? "AA" : "BW");
100 NestedAAClipBench(bool doAA) : fDoAA(doAA) { argument
101 fName.printf("nested_aaclip_%s", doAA ? "AA" : "BW");
183 AAClipBuilderBench(bool doPath, bool doAA) { argument
185 fDoAA = doAA;
188 doAA ? "AA" : "BW");
H A DDashBench.cpp259 DrawPointsDashingBench(int dashLength, int strokeWidth, bool doAA) argument
261 fName.printf("drawpointsdash_%d_%d%s", dashLength, strokeWidth, doAA ? "_aa" : "_bw");
263 fDoAA = doAA;
386 DashGridBench(int dashLength, int strokeWidth, bool doAA) { argument
387 fName.printf("dashgrid_%d_%d%s", dashLength, strokeWidth, doAA ? "_aa" : "_bw");
389 fDoAA = doAA;
/external/skia/bench/
H A DLineBench.cpp29 LineBench(SkScalar width, bool doAA) { argument
31 fDoAA = doAA;
32 fName.printf("lines_%g_%s", width, doAA ? "AA" : "BW");
H A DAAClipBench.cpp27 AAClipBench(bool doPath, bool doAA) argument
29 , fDoAA(doAA) {
33 doAA ? "AA" : "BW");
100 NestedAAClipBench(bool doAA) : fDoAA(doAA) { argument
101 fName.printf("nested_aaclip_%s", doAA ? "AA" : "BW");
183 AAClipBuilderBench(bool doPath, bool doAA) { argument
185 fDoAA = doAA;
188 doAA ? "AA" : "BW");
H A DDashBench.cpp259 DrawPointsDashingBench(int dashLength, int strokeWidth, bool doAA) argument
261 fName.printf("drawpointsdash_%d_%d%s", dashLength, strokeWidth, doAA ? "_aa" : "_bw");
263 fDoAA = doAA;
386 DashGridBench(int dashLength, int strokeWidth, bool doAA) { argument
387 fName.printf("dashgrid_%d_%d%s", dashLength, strokeWidth, doAA ? "_aa" : "_bw");
389 fDoAA = doAA;
/external/chromium_org/third_party/skia/src/core/
H A DSkRasterClip.cpp147 bool SkRasterClip::setPath(const SkPath& path, const SkRegion& clip, bool doAA) { argument
154 if (this->isBW() && !doAA) {
162 (void)fAA.setPath(path, &clip, doAA);
167 bool SkRasterClip::op(const SkPath& path, const SkISize& size, SkRegion::Op op, bool doAA) { argument
195 return this->setPath(path, this->bwRgn(), doAA);
199 clip.setPath(path, base, doAA);
206 return this->setPath(path, base, doAA);
209 clip.setPath(path, base, doAA);
215 bool SkRasterClip::setPath(const SkPath& path, const SkIRect& clip, bool doAA) { argument
218 return this->setPath(path, tmp, doAA);
278 op(const SkRect& r, const SkISize& size, SkRegion::Op op, bool doAA) argument
[all...]
H A DSkAAClip.h38 bool setRect(const SkRect&, bool doAA = true);
39 bool setPath(const SkPath&, const SkRegion* clip = NULL, bool doAA = true);
47 bool op(const SkRect&, SkRegion::Op, bool doAA);
H A DSkRasterClip.h46 bool op(const SkRect&, const SkISize&, SkRegion::Op, bool doAA);
47 bool op(const SkPath&, const SkISize&, SkRegion::Op, bool doAA);
110 bool setPath(const SkPath& path, const SkRegion& clip, bool doAA);
111 bool setPath(const SkPath& path, const SkIRect& clip, bool doAA);
H A DSkClipStack.cpp113 bool doAA) {
116 this->initRect(saveCount, path.getBounds(), op, doAA);
123 this->initRRect(saveCount, rrect, op, doAA);
129 this->initCommon(saveCount, op, doAA);
710 void SkClipStack::clipDevRRect(const SkRRect& rrect, SkRegion::Op op, bool doAA) { argument
711 Element element(fSaveCount, rrect, op, doAA);
715 void SkClipStack::clipDevRect(const SkRect& rect, SkRegion::Op op, bool doAA) { argument
716 Element element(fSaveCount, rect, op, doAA);
720 void SkClipStack::clipDevPath(const SkPath& path, SkRegion::Op op, bool doAA) { argument
721 Element element(fSaveCount, path, op, doAA);
112 initPath(int saveCount, const SkPath& path, SkRegion::Op op, bool doAA) argument
[all...]
H A DSkPicturePlayback.cpp182 bool doAA = ClipParams_unpackDoAA(packed); local
185 canvas->clipPath(path, regionOp, doAA);
206 bool doAA = ClipParams_unpackDoAA(packed); local
209 canvas->clipRect(rect, regionOp, doAA);
219 bool doAA = ClipParams_unpackDoAA(packed); local
222 canvas->clipRRect(rrect, regionOp, doAA);
/external/chromium_org/third_party/skia/samplecode/
H A DSampleClip.cpp19 static void show_text(SkCanvas* canvas, bool doAA) { argument
22 paint.setAntiAlias(doAA);
34 static void show_fill(SkCanvas* canvas, bool doAA) { argument
37 paint.setAntiAlias(doAA);
61 static void show_stroke(SkCanvas* canvas, bool doAA, SkScalar strokeWidth, int n) { argument
64 paint.setAntiAlias(doAA);
94 static void show_hair(SkCanvas* canvas, bool doAA) { argument
95 show_stroke(canvas, doAA, 0, 150);
98 static void show_thick(SkCanvas* canvas, bool doAA) { argument
99 show_stroke(canvas, doAA, SkIntToScala
[all...]
/external/skia/samplecode/
H A DSampleClip.cpp19 static void show_text(SkCanvas* canvas, bool doAA) { argument
22 paint.setAntiAlias(doAA);
34 static void show_fill(SkCanvas* canvas, bool doAA) { argument
37 paint.setAntiAlias(doAA);
61 static void show_stroke(SkCanvas* canvas, bool doAA, SkScalar strokeWidth, int n) { argument
64 paint.setAntiAlias(doAA);
94 static void show_hair(SkCanvas* canvas, bool doAA) { argument
95 show_stroke(canvas, doAA, 0, 150);
98 static void show_thick(SkCanvas* canvas, bool doAA) { argument
99 show_stroke(canvas, doAA, SkIntToScala
[all...]
/external/skia/src/core/
H A DSkRasterClip.cpp73 bool SkRasterClip::setPath(const SkPath& path, const SkRegion& clip, bool doAA) { argument
76 if (this->isBW() && !doAA) {
84 (void)fAA.setPath(path, &clip, doAA);
89 bool SkRasterClip::setPath(const SkPath& path, const SkIRect& clip, bool doAA) { argument
92 return this->setPath(path, tmp, doAA);
152 bool SkRasterClip::op(const SkRect& r, SkRegion::Op op, bool doAA) { argument
155 if (fIsBW && doAA) {
160 doAA = false;
164 if (fIsBW && !doAA) {
172 (void)fAA.op(r, op, doAA);
[all...]
H A DSkMatrixClipStateMgr.h117 bool doAA,
123 newClip->fDoAA = doAA;
130 bool doAA,
136 newClip->fDoAA = doAA;
144 bool doAA,
318 bool clipRect(const SkRect& rect, SkRegion::Op op, bool doAA) { argument
320 return fCurMCState->fClipInfo->clipRect(rect, op, doAA,
324 bool clipRRect(const SkRRect& rrect, SkRegion::Op op, bool doAA) { argument
326 return fCurMCState->fClipInfo->clipRRect(rrect, op, doAA,
330 bool clipPath(const SkPath& path, SkRegion::Op op, bool doAA) { argument
115 clipRect(const SkRect& rect, SkRegion::Op op, bool doAA, int matrixID) argument
128 clipRRect(const SkRRect& rrect, SkRegion::Op op, bool doAA, int matrixID) argument
[all...]
H A DSkAAClip.h34 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);
H A DSkRasterClip.h42 bool setPath(const SkPath& path, const SkRegion& clip, bool doAA);
43 bool setPath(const SkPath& path, const SkIRect& clip, bool doAA);
48 bool op(const SkRect&, SkRegion::Op, bool doAA);
H A DSkClipStack.cpp113 bool doAA) {
116 this->initRect(saveCount, path.getBounds(), op, doAA);
123 this->initRRect(saveCount, rrect, op, doAA);
129 this->initCommon(saveCount, op, doAA);
710 void SkClipStack::clipDevRRect(const SkRRect& rrect, SkRegion::Op op, bool doAA) { argument
711 Element element(fSaveCount, rrect, op, doAA);
715 void SkClipStack::clipDevRect(const SkRect& rect, SkRegion::Op op, bool doAA) { argument
716 Element element(fSaveCount, rect, op, doAA);
720 void SkClipStack::clipDevPath(const SkPath& path, SkRegion::Op op, bool doAA) { argument
721 Element element(fSaveCount, path, op, doAA);
112 initPath(int saveCount, const SkPath& path, SkRegion::Op op, bool doAA) argument
[all...]
H A DSkRecordDraw.cpp43 DRAW(ClipPath, clipPath(r.path, r.op, r.doAA));
44 DRAW(ClipRRect, clipRRect(r.rrect, r.op, r.doAA));
45 DRAW(ClipRect, clipRect(r.rect, r.op, r.doAA));
/external/chromium_org/third_party/skia/gm/
H A Dnested.cpp17 NestedGM(bool doAA) : fDoAA(doAA) { argument
/external/skia/gm/
H A Dnested.cpp17 NestedGM(bool doAA) : fDoAA(doAA) { argument
/external/chromium_org/third_party/skia/src/utils/debugger/
H A DSkObjectParser.h30 @param doAA boolean
32 static SkString* BoolToString(bool doAA);
/external/skia/src/utils/debugger/
H A DSkObjectParser.h30 @param doAA boolean
32 static SkString* BoolToString(bool doAA);

Completed in 823 milliseconds

123