/external/chromium_org/third_party/skia/include/core/ |
SkClipStack.h | 53 Element(const SkRect& rect, SkRegion::Op op, bool doAA) { 54 this->initRect(0, rect, op, doAA); 57 Element(const SkPath& path, SkRegion::Op op, bool doAA) { 58 this->initPath(0, path, op, doAA); 192 Element(int saveCount, const SkRect& rect, SkRegion::Op op, bool doAA) { 193 this->initRect(saveCount, rect, op, doAA); 196 Element(int saveCount, const SkPath& path, SkRegion::Op op, bool doAA) { 197 this->initPath(saveCount, path, op, doAA); 200 void initCommon(int saveCount, SkRegion::Op op, bool doAA) { 203 fDoAA = doAA; [all...] |
/external/skia/include/core/ |
SkClipStack.h | 53 Element(const SkRect& rect, SkRegion::Op op, bool doAA) { 54 this->initRect(0, rect, op, doAA); 57 Element(const SkPath& path, SkRegion::Op op, bool doAA) { 58 this->initPath(0, path, op, doAA); 192 Element(int saveCount, const SkRect& rect, SkRegion::Op op, bool doAA) { 193 this->initRect(saveCount, rect, op, doAA); 196 Element(int saveCount, const SkPath& path, SkRegion::Op op, bool doAA) { 197 this->initPath(saveCount, path, op, doAA); 200 void initCommon(int saveCount, SkRegion::Op op, bool doAA) { 203 fDoAA = doAA; [all...] |
/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");
|
/external/chromium_org/third_party/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...] |
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);
|
/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...] |
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);
|
/external/chromium_org/third_party/skia/src/utils/ |
SkLuaCanvas.cpp | 147 bool SkLuaCanvas::clipRect(const SkRect& r, SkRegion::Op op, bool doAA) { 150 lua.pushBool(doAA, "aa"); 151 return this->INHERITED::clipRect(r, op, doAA); 154 bool SkLuaCanvas::clipRRect(const SkRRect& rrect, SkRegion::Op op, bool doAA) { 157 lua.pushBool(doAA, "aa"); 158 return this->INHERITED::clipRRect(rrect, op, doAA); 161 bool SkLuaCanvas::clipPath(const SkPath& path, SkRegion::Op op, bool doAA) { 164 lua.pushBool(doAA, "aa"); 165 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::clipRRect(const SkRRect& rrect, SkRegion::Op op, bool doAA) { 66 return fProxy->clipRRect(rrect, op, doAA); 69 bool SkProxyCanvas::clipPath(const SkPath& path, SkRegion::Op op, bool doAA) { 70 return fProxy->clipPath(path, op, doAA);
|
SkNWayCanvas.cpp | 139 bool SkNWayCanvas::clipRect(const SkRect& rect, SkRegion::Op op, bool doAA) { 142 iter->clipRect(rect, op, doAA); 144 return this->INHERITED::clipRect(rect, op, doAA); 147 bool SkNWayCanvas::clipRRect(const SkRRect& rrect, SkRegion::Op op, bool doAA) { 150 iter->clipRRect(rrect, op, doAA); 152 return this->INHERITED::clipRRect(rrect, op, doAA); 155 bool SkNWayCanvas::clipPath(const SkPath& path, SkRegion::Op op, bool doAA) { 158 iter->clipPath(path, op, doAA); 160 return this->INHERITED::clipPath(path, op, doAA);
|
SkDumpCanvas.cpp | 270 static const char* bool_to_aastring(bool doAA) { 271 return doAA ? "AA" : "BW"; 274 bool SkDumpCanvas::clipRect(const SkRect& rect, SkRegion::Op op, bool doAA) { 278 bool_to_aastring(doAA)); 279 return this->INHERITED::clipRect(rect, op, doAA); 282 bool SkDumpCanvas::clipRRect(const SkRRect& rrect, SkRegion::Op op, bool doAA) { 286 bool_to_aastring(doAA)); 287 return this->INHERITED::clipRRect(rrect, op, doAA); 290 bool SkDumpCanvas::clipPath(const SkPath& path, SkRegion::Op op, bool doAA) { 294 bool_to_aastring(doAA)); [all...] |
SkPictureUtils.cpp | 222 bool doAA) SK_OVERRIDE { 229 bool doAA) SK_OVERRIDE { 233 bool doAA) SK_OVERRIDE {
|
/external/skia/src/utils/ |
SkLuaCanvas.cpp | 147 bool SkLuaCanvas::clipRect(const SkRect& r, SkRegion::Op op, bool doAA) { 150 lua.pushBool(doAA, "aa"); 151 return this->INHERITED::clipRect(r, op, doAA); 154 bool SkLuaCanvas::clipRRect(const SkRRect& rrect, SkRegion::Op op, bool doAA) { 157 lua.pushBool(doAA, "aa"); 158 return this->INHERITED::clipRRect(rrect, op, doAA); 161 bool SkLuaCanvas::clipPath(const SkPath& path, SkRegion::Op op, bool doAA) { 164 lua.pushBool(doAA, "aa"); 165 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::clipRRect(const SkRRect& rrect, SkRegion::Op op, bool doAA) { 66 return fProxy->clipRRect(rrect, op, doAA); 69 bool SkProxyCanvas::clipPath(const SkPath& path, SkRegion::Op op, bool doAA) { 70 return fProxy->clipPath(path, op, doAA);
|
SkNWayCanvas.cpp | 139 bool SkNWayCanvas::clipRect(const SkRect& rect, SkRegion::Op op, bool doAA) { 142 iter->clipRect(rect, op, doAA); 144 return this->INHERITED::clipRect(rect, op, doAA); 147 bool SkNWayCanvas::clipRRect(const SkRRect& rrect, SkRegion::Op op, bool doAA) { 150 iter->clipRRect(rrect, op, doAA); 152 return this->INHERITED::clipRRect(rrect, op, doAA); 155 bool SkNWayCanvas::clipPath(const SkPath& path, SkRegion::Op op, bool doAA) { 158 iter->clipPath(path, op, doAA); 160 return this->INHERITED::clipPath(path, op, doAA);
|
SkDumpCanvas.cpp | 270 static const char* bool_to_aastring(bool doAA) { 271 return doAA ? "AA" : "BW"; 274 bool SkDumpCanvas::clipRect(const SkRect& rect, SkRegion::Op op, bool doAA) { 278 bool_to_aastring(doAA)); 279 return this->INHERITED::clipRect(rect, op, doAA); 282 bool SkDumpCanvas::clipRRect(const SkRRect& rrect, SkRegion::Op op, bool doAA) { 286 bool_to_aastring(doAA)); 287 return this->INHERITED::clipRRect(rrect, op, doAA); 290 bool SkDumpCanvas::clipPath(const SkPath& path, SkRegion::Op op, bool doAA) { 294 bool_to_aastring(doAA)); [all...] |
/external/skia/gm/ |
nested.cpp | 17 NestedGM(bool doAA) : fDoAA(doAA) {
|
rrects.cpp | 17 RRectGM(bool doAA, bool doClip) : fDoAA(doAA), fDoClip(doClip) {
|
/external/chromium_org/third_party/skia/src/utils/debugger/ |
SkObjectParser.h | 30 @param doAA boolean 32 static SkString* BoolToString(bool doAA);
|
SkDebugCanvas.cpp | 307 bool SkDebugCanvas::clipPath(const SkPath& path, SkRegion::Op op, bool doAA) { 308 addDrawCommand(new SkClipPathCommand(path, op, doAA)); 312 bool SkDebugCanvas::clipRect(const SkRect& rect, SkRegion::Op op, bool doAA) { 313 addDrawCommand(new SkClipRectCommand(rect, op, doAA)); 317 bool SkDebugCanvas::clipRRect(const SkRRect& rrect, SkRegion::Op op, bool doAA) { 318 addDrawCommand(new SkClipRRectCommand(rrect, op, doAA));
|
/external/skia/src/utils/debugger/ |
SkObjectParser.h | 30 @param doAA boolean 32 static SkString* BoolToString(bool doAA);
|
SkDebugCanvas.cpp | 307 bool SkDebugCanvas::clipPath(const SkPath& path, SkRegion::Op op, bool doAA) { 308 addDrawCommand(new SkClipPathCommand(path, op, doAA)); 312 bool SkDebugCanvas::clipRect(const SkRect& rect, SkRegion::Op op, bool doAA) { 313 addDrawCommand(new SkClipRectCommand(rect, op, doAA)); 317 bool SkDebugCanvas::clipRRect(const SkRRect& rrect, SkRegion::Op op, bool doAA) { 318 addDrawCommand(new SkClipRRectCommand(rrect, op, doAA));
|