Searched refs:doFill (Results 1 – 9 of 9) sorted by relevance
/external/skia/gm/ |
D | strokerect.cpp | 15 SkPaint::Join join, int doFill) { in draw_path() argument 18 paint.setStyle(doFill ? SkPaint::kStrokeAndFill_Style : SkPaint::kStroke_Style); in draw_path() 83 for (int doFill = 0; doFill <= 1; ++doFill) { in onDraw() local 95 draw_path(canvas, fillPath, r, join, doFill); in onDraw()
|
/external/skia/src/effects/ |
D | SkDiscretePathEffect.cpp | 30 bool doFill = rec->isFillStyle(); in filterPath() local 32 SkPathMeasure meas(src, doFill); in filterPath() 42 if (fSegLength * (2 + doFill) > length) { in filterPath()
|
/external/skia/legacy/src/effects/ |
D | SkDiscretePathEffect.cpp | 30 bool doFill = *width < 0; in filterPath() local 32 SkPathMeasure meas(src, doFill); in filterPath() 42 if (fSegLength * (2 + doFill) > length) { in filterPath()
|
/external/skia/src/core/ |
D | SkStroke.h | 37 void setDoFill(bool doFill) { fDoFill = SkToU8(doFill); } in setDoFill() argument
|
D | SkDraw.cpp | 1026 bool doFill = true; in drawPath() local 1085 doFill = paint->getFillPath(*pathPtr, &tmpPath, cullRectPtr); in drawPath() 1109 SkPaint::Style style = doFill ? SkPaint::kFill_Style : in drawPath() 1118 if (fBounder && !fBounder->doPath(*devPathPtr, *paint, doFill)) { in drawPath() 1123 if (doFill) { in drawPath() 2665 bool SkBounder::doPath(const SkPath& path, const SkPaint& paint, bool doFill) { in doPath() argument 2669 if (doFill) { in doPath()
|
/external/skia/legacy/include/core/ |
D | SkStroke.h | 41 void setDoFill(bool doFill) { fDoFill = SkToU8(doFill); } in setDoFill() argument
|
D | SkBounder.h | 78 bool doPath(const SkPath&, const SkPaint&, bool doFill);
|
/external/skia/include/core/ |
D | SkBounder.h | 80 bool doPath(const SkPath&, const SkPaint&, bool doFill);
|
/external/skia/legacy/src/core/ |
D | SkDraw.cpp | 907 bool doFill = true; in drawPath() local 965 doFill = paint->getFillPath(*pathPtr, &tmpPath); in drawPath() 995 if (fBounder && !fBounder->doPath(*devPathPtr, *paint, doFill)) { in drawPath() 1000 if (doFill) { in drawPath() 2515 bool SkBounder::doPath(const SkPath& path, const SkPaint& paint, bool doFill) { in doPath() argument 2519 if (doFill) { in doPath()
|