/third_party/skia/bench/ |
H A D | AAClipBench.cpp | 24 bool fDoAA; member in AAClipBench 29 , fDoAA(doAA) { in AAClipBench() 60 canvas->clipPath(fClipPath, SkClipOp::kIntersect, fDoAA); 62 canvas->clipRect(fClipRect, SkClipOp::kIntersect, fDoAA); 88 bool fDoAA; member in NestedAAClipBench 98 NestedAAClipBench(bool doAA) : fDoAA(doAA) { in NestedAAClipBench() 130 canvas->clipPath(path, SkClipOp::kIntersect, fDoAA); in recurse() 175 bool fDoAA; member in AAClipBuilderBench 180 fDoAA = doAA; in AAClipBuilderBench() 199 clip.setPath(fPath, fBounds, fDoAA); 202 clip.setPath(SkPath::Rect(fRect), fBounds, fDoAA); global() variable [all...] |
H A D | LineBench.cpp | 21 bool fDoAA; member in LineBench 31 fDoAA = doAA; in LineBench() 50 paint.setAntiAlias(fDoAA);
|
H A D | DashBench.cpp | 250 bool fDoAA; member in DrawPointsDashingBench 259 fDoAA = doAA; in DrawPointsDashingBench() 277 p.setAntiAlias(fDoAA); 376 bool fDoAA; member in DashGridBench 384 fDoAA = doAA; in DashGridBench() 402 p.setAntiAlias(fDoAA);
|
/third_party/skia/gm/ |
H A D | perspshaders.cpp | 43 PerspShadersGM(bool doAA) : fDoAA(doAA) { } in PerspShadersGM() 49 fDoAA ? "aa" : "bw"); 92 filterPaint.setAntiAlias(fDoAA); in drawRow() 96 pathPaint.setAntiAlias(fDoAA); in drawRow() 100 gradPaint1.setAntiAlias(fDoAA); in drawRow() 103 gradPaint2.setAntiAlias(fDoAA); in drawRow() 167 bool fDoAA; member in skiagm::PerspShadersGM
|
H A D | nested.cpp | 26 NestedGM(bool doAA, bool flipped) : fDoAA(doAA), fFlipped(flipped) { in NestedGM() 37 if (fDoAA) { 79 shapePaint.setAntiAlias(fDoAA); 137 bool fDoAA; member in skiagm::NestedGM
|
H A D | dashing.cpp | 408 Dashing5GM(bool doAA) : fDoAA(doAA) {} in Dashing5GM() 413 SkString onShortName() override { return SkString(fDoAA ? "dashing5_aa" : "dashing5_bw"); } 436 paint.setAntiAlias(fDoAA); 471 bool fDoAA; member in Dashing5GM
|
/third_party/skia/src/core/ |
H A D | SkClipStack.cpp | 47 fDoAA = that.fDoAA; in Element() 69 fDoAA != element.fDoAA || fIsReplace != element.fIsReplace || in operator ==() 176 fDoAA = doAA; in initCommon() 322 if (fDoAA == newAA) { in rectRectIntersectAllowed() 436 prior->rectRectIntersectAllowed(this->getDeviceSpaceRect(), fDoAA))) { in updateBoundAndGenID() 732 prior->fDoAA = element.isAA(); in pushElement() 980 opName, (fDoAA ? "yes" : "no"), fSaveCount); in dump()
|
H A D | SkClipStack.h | 151 bool isAA() const { return fDoAA; } in isAA() 219 bool fDoAA; member in SkClipStack::Element::DeviceSpaceType
|
/third_party/skia/src/ports/ |
H A D | SkScalerContext_mac_ct.h | 59 , fDoAA(false) in Offscreen() 78 bool fDoAA; member in SkScalerContext_Mac::Offscreen
|
H A D | SkScalerContext_mac_ct.cpp | 221 fDoAA = !doAA; in getCG() 227 if (fDoAA != doAA) { in getCG() 229 fDoAA = doAA; in getCG()
|
/third_party/skia/tools/debugger/ |
H A D | DrawCommand.cpp | 993 fDoAA = doAA; in ClipPathCommand() 996 void ClipPathCommand::execute(SkCanvas* canvas) const { canvas->clipPath(fPath, fOp, fDoAA); } in execute() 1008 writer.appendBool(DEBUGCANVAS_ATTRIBUTE_ANTIALIAS, fDoAA); in toJSON() 1030 fDoAA = doAA; in ClipRectCommand() 1033 void ClipRectCommand::execute(SkCanvas* canvas) const { canvas->clipRect(fRect, fOp, fDoAA); } in execute() 1040 writer.appendBool(DEBUGCANVAS_ATTRIBUTE_ANTIALIAS, fDoAA); in toJSON() 1050 fDoAA = doAA; in ClipRRectCommand() 1053 void ClipRRectCommand::execute(SkCanvas* canvas) const { canvas->clipRRect(fRRect, fOp, fDoAA); } in execute() 1065 writer.appendBool(DEBUGCANVAS_ATTRIBUTE_ANTIALIAS, fDoAA); in toJSON()
|
H A D | DrawCommand.h | 155 bool fDoAA; member in ClipPathCommand 182 bool fDoAA; member in ClipRectCommand 197 bool fDoAA; member in ClipRRectCommand
|