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

1 2 3

  /external/chromium_org/third_party/skia/include/core/
SkClipStack.h 63 Element(const SkRect& rect, SkRegion::Op op, bool doAA) {
64 this->initRect(0, rect, op, doAA);
67 Element(const SkRRect& rrect, SkRegion::Op op, bool doAA) {
68 this->initRRect(0, rrect, op, doAA);
71 Element(const SkPath& path, SkRegion::Op op, bool doAA) {
72 this->initPath(0, path, op, doAA);
213 Element(int saveCount, const SkRRect& rrect, SkRegion::Op op, bool doAA) {
214 this->initRRect(saveCount, rrect, op, doAA);
217 Element(int saveCount, const SkRect& rect, SkRegion::Op op, bool doAA) {
218 this->initRect(saveCount, rect, op, doAA);
    [all...]
  /external/skia/include/core/
SkClipStack.h 63 Element(const SkRect& rect, SkRegion::Op op, bool doAA) {
64 this->initRect(0, rect, op, doAA);
67 Element(const SkRRect& rrect, SkRegion::Op op, bool doAA) {
68 this->initRRect(0, rrect, op, doAA);
71 Element(const SkPath& path, SkRegion::Op op, bool doAA) {
72 this->initPath(0, path, op, doAA);
213 Element(int saveCount, const SkRRect& rrect, SkRegion::Op op, bool doAA) {
214 this->initRRect(saveCount, rrect, op, doAA);
217 Element(int saveCount, const SkRect& rect, SkRegion::Op op, bool doAA) {
218 this->initRect(saveCount, rect, op, doAA);
    [all...]
  /external/chromium_org/third_party/skia/bench/
LineBench.cpp 29 LineBench(SkScalar width, bool doAA) {
31 fDoAA = doAA;
32 fName.printf("lines_%g_%s", width, doAA ? "AA" : "BW");
AAClipBench.cpp 27 AAClipBench(bool doPath, bool doAA)
29 , fDoAA(doAA) {
33 doAA ? "AA" : "BW");
100 NestedAAClipBench(bool doAA) : fDoAA(doAA) {
101 fName.printf("nested_aaclip_%s", doAA ? "AA" : "BW");
183 AAClipBuilderBench(bool doPath, bool doAA) {
185 fDoAA = doAA;
188 doAA ? "AA" : "BW");
DashBench.cpp 259 DrawPointsDashingBench(int dashLength, int strokeWidth, bool doAA)
261 fName.printf("drawpointsdash_%d_%d%s", dashLength, strokeWidth, doAA ? "_aa" : "_bw");
263 fDoAA = doAA;
386 DashGridBench(int dashLength, int strokeWidth, bool doAA) {
387 fName.printf("dashgrid_%d_%d%s", dashLength, strokeWidth, doAA ? "_aa" : "_bw");
389 fDoAA = doAA;
  /external/skia/bench/
LineBench.cpp 29 LineBench(SkScalar width, bool doAA) {
31 fDoAA = doAA;
32 fName.printf("lines_%g_%s", width, doAA ? "AA" : "BW");
AAClipBench.cpp 27 AAClipBench(bool doPath, bool doAA)
29 , fDoAA(doAA) {
33 doAA ? "AA" : "BW");
100 NestedAAClipBench(bool doAA) : fDoAA(doAA) {
101 fName.printf("nested_aaclip_%s", doAA ? "AA" : "BW");
183 AAClipBuilderBench(bool doPath, bool doAA) {
185 fDoAA = doAA;
188 doAA ? "AA" : "BW");
DashBench.cpp 259 DrawPointsDashingBench(int dashLength, int strokeWidth, bool doAA)
261 fName.printf("drawpointsdash_%d_%d%s", dashLength, strokeWidth, doAA ? "_aa" : "_bw");
263 fDoAA = doAA;
386 DashGridBench(int dashLength, int strokeWidth, bool doAA) {
387 fName.printf("dashgrid_%d_%d%s", dashLength, strokeWidth, doAA ? "_aa" : "_bw");
389 fDoAA = doAA;
  /external/chromium_org/third_party/skia/src/core/
SkRasterClip.cpp 147 bool SkRasterClip::setPath(const SkPath& path, const SkRegion& clip, bool doAA) {
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) {
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) {
218 return this->setPath(path, tmp, doAA);
    [all...]
SkRasterClip.h 46 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);
SkAAClip.h 38 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);
SkClipStack.cpp 113 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) {
711 Element element(fSaveCount, rrect, op, doAA);
715 void SkClipStack::clipDevRect(const SkRect& rect, SkRegion::Op op, bool doAA) {
716 Element element(fSaveCount, rect, op, doAA);
720 void SkClipStack::clipDevPath(const SkPath& path, SkRegion::Op op, bool doAA) {
721 Element element(fSaveCount, path, op, doAA);
    [all...]
SkPicturePlayback.cpp 182 bool doAA = ClipParams_unpackDoAA(packed);
185 canvas->clipPath(path, regionOp, doAA);
206 bool doAA = ClipParams_unpackDoAA(packed);
209 canvas->clipRect(rect, regionOp, doAA);
219 bool doAA = ClipParams_unpackDoAA(packed);
222 canvas->clipRRect(rrect, regionOp, doAA);
  /external/chromium_org/third_party/skia/samplecode/
SampleClip.cpp 19 static void show_text(SkCanvas* canvas, bool doAA) {
22 paint.setAntiAlias(doAA);
34 static void show_fill(SkCanvas* canvas, bool doAA) {
37 paint.setAntiAlias(doAA);
61 static void show_stroke(SkCanvas* canvas, bool doAA, SkScalar strokeWidth, int n) {
64 paint.setAntiAlias(doAA);
94 static void show_hair(SkCanvas* canvas, bool doAA) {
95 show_stroke(canvas, doAA, 0, 150);
98 static void show_thick(SkCanvas* canvas, bool doAA) {
99 show_stroke(canvas, doAA, SkIntToScalar(5), 50)
    [all...]
  /external/skia/samplecode/
SampleClip.cpp 19 static void show_text(SkCanvas* canvas, bool doAA) {
22 paint.setAntiAlias(doAA);
34 static void show_fill(SkCanvas* canvas, bool doAA) {
37 paint.setAntiAlias(doAA);
61 static void show_stroke(SkCanvas* canvas, bool doAA, SkScalar strokeWidth, int n) {
64 paint.setAntiAlias(doAA);
94 static void show_hair(SkCanvas* canvas, bool doAA) {
95 show_stroke(canvas, doAA, 0, 150);
98 static void show_thick(SkCanvas* canvas, bool doAA) {
99 show_stroke(canvas, doAA, SkIntToScalar(5), 50)
    [all...]
  /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);
152 bool SkRasterClip::op(const SkRect& r, SkRegion::Op op, bool doAA) {
155 if (fIsBW && doAA) {
160 doAA = false;
164 if (fIsBW && !doAA) {
172 (void)fAA.op(r, op, doAA);
    [all...]
SkMatrixClipStateMgr.h 117 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) {
320 return fCurMCState->fClipInfo->clipRect(rect, op, doAA,
324 bool clipRRect(const SkRRect& rrect, SkRegion::Op op, bool doAA) {
326 return fCurMCState->fClipInfo->clipRRect(rrect, op, doAA,
330 bool clipPath(const SkPath& path, SkRegion::Op op, bool doAA) {
    [all...]
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);
SkRasterClip.h 42 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);
SkClipStack.cpp 113 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) {
711 Element element(fSaveCount, rrect, op, doAA);
715 void SkClipStack::clipDevRect(const SkRect& rect, SkRegion::Op op, bool doAA) {
716 Element element(fSaveCount, rect, op, doAA);
720 void SkClipStack::clipDevPath(const SkPath& path, SkRegion::Op op, bool doAA) {
721 Element element(fSaveCount, path, op, doAA);
    [all...]
SkRecordDraw.cpp 43 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/
nested.cpp 17 NestedGM(bool doAA) : fDoAA(doAA) {
  /external/skia/gm/
nested.cpp 17 NestedGM(bool doAA) : fDoAA(doAA) {
  /external/chromium_org/third_party/skia/src/utils/debugger/
SkObjectParser.h 30 @param doAA boolean
32 static SkString* BoolToString(bool doAA);
  /external/skia/src/utils/debugger/
SkObjectParser.h 30 @param doAA boolean
32 static SkString* BoolToString(bool doAA);

Completed in 437 milliseconds

1 2 3