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

123

/external/chromium_org/third_party/skia/include/core/
H A DSkClipStack.h53 Element(const SkRect& rect, SkRegion::Op op, bool doAA) { argument
54 this->initRect(0, rect, op, doAA);
57 Element(const SkPath& path, SkRegion::Op op, bool doAA) { argument
58 this->initPath(0, path, op, doAA);
192 Element(int saveCount, const SkRect& rect, SkRegion::Op op, bool doAA) { argument
193 this->initRect(saveCount, rect, op, doAA);
196 Element(int saveCount, const SkPath& path, SkRegion::Op op, bool doAA) { argument
197 this->initPath(saveCount, path, op, doAA);
200 void initCommon(int saveCount, SkRegion::Op op, bool doAA) { argument
203 fDoAA = doAA;
212 initRect(int saveCount, const SkRect& rect, SkRegion::Op op, bool doAA) argument
218 initPath(int saveCount, const SkPath& path, SkRegion::Op op, bool doAA) argument
[all...]
/external/skia/include/core/
H A DSkClipStack.h53 Element(const SkRect& rect, SkRegion::Op op, bool doAA) { argument
54 this->initRect(0, rect, op, doAA);
57 Element(const SkPath& path, SkRegion::Op op, bool doAA) { argument
58 this->initPath(0, path, op, doAA);
192 Element(int saveCount, const SkRect& rect, SkRegion::Op op, bool doAA) { argument
193 this->initRect(saveCount, rect, op, doAA);
196 Element(int saveCount, const SkPath& path, SkRegion::Op op, bool doAA) { argument
197 this->initPath(saveCount, path, op, doAA);
200 void initCommon(int saveCount, SkRegion::Op op, bool doAA) { argument
203 fDoAA = doAA;
212 initRect(int saveCount, const SkRect& rect, SkRegion::Op op, bool doAA) argument
218 initPath(int saveCount, const SkPath& path, SkRegion::Op op, bool doAA) argument
[all...]
/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");
/external/chromium_org/third_party/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 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);
/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 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);
/external/chromium_org/third_party/skia/src/utils/
H A DSkLuaCanvas.cpp147 bool SkLuaCanvas::clipRect(const SkRect& r, SkRegion::Op op, bool doAA) { argument
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) { argument
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) { argument
164 lua.pushBool(doAA, "aa");
165 return this->INHERITED::clipPath(path, op, doAA);
H A DSkProxyCanvas.cpp61 bool SkProxyCanvas::clipRect(const SkRect& rect, SkRegion::Op op, bool doAA) { argument
62 return fProxy->clipRect(rect, op, doAA);
65 bool SkProxyCanvas::clipRRect(const SkRRect& rrect, SkRegion::Op op, bool doAA) { argument
66 return fProxy->clipRRect(rrect, op, doAA);
69 bool SkProxyCanvas::clipPath(const SkPath& path, SkRegion::Op op, bool doAA) { argument
70 return fProxy->clipPath(path, op, doAA);
H A DSkNWayCanvas.cpp139 bool SkNWayCanvas::clipRect(const SkRect& rect, SkRegion::Op op, bool doAA) { argument
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) { argument
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) { argument
158 iter->clipPath(path, op, doAA);
160 return this->INHERITED::clipPath(path, op, doAA);
H A DSkDumpCanvas.cpp270 static const char* bool_to_aastring(bool doAA) { argument
271 return doAA ? "AA" : "BW";
274 bool SkDumpCanvas::clipRect(const SkRect& rect, SkRegion::Op op, bool doAA) { argument
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) { argument
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) { argument
294 bool_to_aastring(doAA));
[all...]
H A DSkPictureUtils.cpp222 bool doAA) SK_OVERRIDE {
229 bool doAA) SK_OVERRIDE {
233 bool doAA) SK_OVERRIDE {
/external/skia/src/utils/
H A DSkLuaCanvas.cpp147 bool SkLuaCanvas::clipRect(const SkRect& r, SkRegion::Op op, bool doAA) { argument
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) { argument
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) { argument
164 lua.pushBool(doAA, "aa");
165 return this->INHERITED::clipPath(path, op, doAA);
H A DSkProxyCanvas.cpp61 bool SkProxyCanvas::clipRect(const SkRect& rect, SkRegion::Op op, bool doAA) { argument
62 return fProxy->clipRect(rect, op, doAA);
65 bool SkProxyCanvas::clipRRect(const SkRRect& rrect, SkRegion::Op op, bool doAA) { argument
66 return fProxy->clipRRect(rrect, op, doAA);
69 bool SkProxyCanvas::clipPath(const SkPath& path, SkRegion::Op op, bool doAA) { argument
70 return fProxy->clipPath(path, op, doAA);
H A DSkNWayCanvas.cpp139 bool SkNWayCanvas::clipRect(const SkRect& rect, SkRegion::Op op, bool doAA) { argument
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) { argument
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) { argument
158 iter->clipPath(path, op, doAA);
160 return this->INHERITED::clipPath(path, op, doAA);
H A DSkDumpCanvas.cpp270 static const char* bool_to_aastring(bool doAA) { argument
271 return doAA ? "AA" : "BW";
274 bool SkDumpCanvas::clipRect(const SkRect& rect, SkRegion::Op op, bool doAA) { argument
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) { argument
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) { argument
294 bool_to_aastring(doAA));
[all...]
/external/skia/gm/
H A Dnested.cpp17 NestedGM(bool doAA) : fDoAA(doAA) { argument
H A Drrects.cpp17 RRectGM(bool doAA, bool doClip) : fDoAA(doAA), fDoClip(doClip) { argument
/external/chromium_org/third_party/skia/src/utils/debugger/
H A DSkObjectParser.h30 @param doAA boolean
32 static SkString* BoolToString(bool doAA);
H A DSkDebugCanvas.cpp307 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/
H A DSkObjectParser.h30 @param doAA boolean
32 static SkString* BoolToString(bool doAA);
H A DSkDebugCanvas.cpp307 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));

Completed in 547 milliseconds

123