Home
last modified time | relevance | path

Searched refs:fDoAA (Results 1 – 23 of 23) sorted by relevance

/external/chromium_org/third_party/skia/bench/
DAAClipBench.cpp24 bool fDoAA; member in AAClipBench
29 , fDoAA(doAA) { in AAClipBench()
62 canvas->clipPath(fClipPath, SkRegion::kReplace_Op, fDoAA); in onDraw()
64 canvas->clipRect(fClipRect, SkRegion::kReplace_Op, fDoAA); in onDraw()
90 bool fDoAA; member in NestedAAClipBench
100 NestedAAClipBench(bool doAA) : fDoAA(doAA) { in NestedAAClipBench()
135 fDoAA); in recurse()
180 bool fDoAA; member in AAClipBuilderBench
185 fDoAA = doAA; in AAClipBuilderBench()
205 clip.setPath(fPath, &fRegion, fDoAA); in onDraw()
[all …]
DLineBench.cpp21 bool fDoAA; member in LineBench
31 fDoAA = doAA; in LineBench()
50 paint.setAntiAlias(fDoAA); in onDraw()
DDashBench.cpp254 bool fDoAA; member in DrawPointsDashingBench
263 fDoAA = doAA; in DrawPointsDashingBench()
281 p.setAntiAlias(fDoAA); in onDraw()
381 bool fDoAA; member in DashGridBench
389 fDoAA = doAA; in DashGridBench()
407 p.setAntiAlias(fDoAA); in onDraw()
/external/skia/bench/
DAAClipBench.cpp24 bool fDoAA; member in AAClipBench
29 , fDoAA(doAA) { in AAClipBench()
62 canvas->clipPath(fClipPath, SkRegion::kReplace_Op, fDoAA); in onDraw()
64 canvas->clipRect(fClipRect, SkRegion::kReplace_Op, fDoAA); in onDraw()
90 bool fDoAA; member in NestedAAClipBench
100 NestedAAClipBench(bool doAA) : fDoAA(doAA) { in NestedAAClipBench()
135 fDoAA); in recurse()
180 bool fDoAA; member in AAClipBuilderBench
185 fDoAA = doAA; in AAClipBuilderBench()
205 clip.setPath(fPath, &fRegion, fDoAA); in onDraw()
[all …]
DLineBench.cpp21 bool fDoAA; member in LineBench
31 fDoAA = doAA; in LineBench()
50 paint.setAntiAlias(fDoAA); in onDraw()
DDashBench.cpp254 bool fDoAA; member in DrawPointsDashingBench
263 fDoAA = doAA; in DrawPointsDashingBench()
281 p.setAntiAlias(fDoAA); in onDraw()
381 bool fDoAA; member in DashGridBench
389 fDoAA = doAA; in DashGridBench()
407 p.setAntiAlias(fDoAA); in onDraw()
/external/skia/gm/
Dnested.cpp17 NestedGM(bool doAA) : fDoAA(doAA) { in NestedGM()
28 if (fDoAA) { in onShortName()
70 shapePaint.setAntiAlias(fDoAA); in onDraw()
118 bool fDoAA; member in skiagm::NestedGM
/external/chromium_org/third_party/skia/gm/
Dnested.cpp17 NestedGM(bool doAA) : fDoAA(doAA) { in NestedGM()
28 if (fDoAA) { in onShortName()
70 shapePaint.setAntiAlias(fDoAA); in onDraw()
118 bool fDoAA; member in skiagm::NestedGM
Ddashing.cpp414 Dashing5GM(bool doAA) : fDoAA(doAA) {} in Dashing5GM()
420 if (fDoAA) { in onShortName()
448 paint.setAntiAlias(fDoAA); in onDraw()
483 bool fDoAA; member in Dashing5GM
/external/skia/samplecode/
DSampleHairline.cpp191 bool fDoAA; member in HairlineView
196 fDoAA = true; in HairlineView()
237 paint.setAntiAlias(fDoAA); in onDrawContent()
248 fDoAA = !fDoAA; in onDrawContent()
260 fDoAA = !fDoAA; in onFindClickHandler()
/external/chromium_org/third_party/skia/samplecode/
DSampleHairline.cpp191 bool fDoAA; member in HairlineView
196 fDoAA = true; in HairlineView()
237 paint.setAntiAlias(fDoAA); in onDrawContent()
248 fDoAA = !fDoAA; in onDrawContent()
260 fDoAA = !fDoAA; in onFindClickHandler()
/external/chromium_org/third_party/skia/src/core/
DSkClipStack.cpp38 fDoAA = that.fDoAA; in Element()
51 fDoAA != element.fDoAA || in operator ==()
185 if (fDoAA == newAA) { in rectRectIntersectAllowed()
396 prior->rectRectIntersectAllowed(this->getRect(), fDoAA))) { in updateBoundAndGenID()
418 if (!fDoAA) { in updateBoundAndGenID()
686 prior->fDoAA = element.isAA(); in pushElement()
880 kOpStrings[fOp], (fDoAA ? "yes" : "no"), fSaveCount); in dump()
/external/skia/src/core/
DSkClipStack.cpp38 fDoAA = that.fDoAA; in Element()
51 fDoAA != element.fDoAA || in operator ==()
185 if (fDoAA == newAA) { in rectRectIntersectAllowed()
396 prior->rectRectIntersectAllowed(this->getRect(), fDoAA))) { in updateBoundAndGenID()
418 if (!fDoAA) { in updateBoundAndGenID()
686 prior->fDoAA = element.isAA(); in pushElement()
880 kOpStrings[fOp], (fDoAA ? "yes" : "no"), fSaveCount); in dump()
DSkMatrixClipStateMgr.cpp22 newClip->fDoAA = doAA; in clipPath()
35 newClip->fDoAA = true; // not necessary but sanity preserving in clipRegion()
77 curClip.fOp, curClip.fDoAA); in writeClip()
81 curClip.fDoAA); in writeClip()
85 curClip.fDoAA); in writeClip()
DSkMatrixClipStateMgr.h123 newClip->fDoAA = doAA; in clipRect()
136 newClip->fDoAA = doAA; in clipRRect()
172 bool fDoAA; variable
/external/chromium_org/third_party/skia/include/core/
DSkClipStack.h104 bool isAA() const { return fDoAA; } in isAA()
187 bool fDoAA; variable
228 fDoAA = doAA; in initCommon()
/external/skia/include/core/
DSkClipStack.h104 bool isAA() const { return fDoAA; } in isAA()
187 bool fDoAA; variable
228 fDoAA = doAA; in initCommon()
/external/skia/src/utils/debugger/
DSkDrawCommand.h114 bool fDoAA; variable
137 bool doAA() const { return fDoAA; } in doAA()
142 bool fDoAA; variable
155 bool doAA() const { return fDoAA; } in doAA()
160 bool fDoAA; variable
DSkDrawCommand.cpp200 fDoAA = doAA; in SkClipPathCommand()
208 canvas->clipPath(fPath, fOp, fDoAA); in execute()
233 fDoAA = doAA; in SkClipRectCommand()
241 canvas->clipRect(fRect, fOp, fDoAA); in execute()
248 fDoAA = doAA; in SkClipRRectCommand()
256 canvas->clipRRect(fRRect, fOp, fDoAA); in execute()
/external/chromium_org/third_party/skia/src/utils/debugger/
DSkDrawCommand.h114 bool fDoAA; variable
137 bool doAA() const { return fDoAA; } in doAA()
142 bool fDoAA; variable
155 bool doAA() const { return fDoAA; } in doAA()
160 bool fDoAA; variable
DSkDrawCommand.cpp203 fDoAA = doAA; in SkClipPathCommand()
211 canvas->clipPath(fPath, fOp, fDoAA); in execute()
236 fDoAA = doAA; in SkClipRectCommand()
244 canvas->clipRect(fRect, fOp, fDoAA); in execute()
251 fDoAA = doAA; in SkClipRRectCommand()
259 canvas->clipRRect(fRRect, fOp, fDoAA); in execute()
/external/skia/src/ports/
DSkFontHost_mac.cpp344 bool fDoAA; member in Offscreen
353 fDoAA(false), fDoLCD(false) { in Offscreen()
825 fDoAA = !doAA; in getCG()
829 if (fDoAA != doAA) { in getCG()
831 fDoAA = doAA; in getCG()
/external/chromium_org/third_party/skia/src/ports/
DSkFontHost_mac.cpp340 bool fDoAA; member in Offscreen
349 fDoAA(false), fDoLCD(false) { in Offscreen()
825 fDoAA = !doAA; in getCG()
829 if (fDoAA != doAA) { in getCG()
831 fDoAA = doAA; in getCG()