Searched defs:drawPath (Results 1 - 25 of 51) sorted by relevance

123

/external/skia/gm/
H A Dskbug1719.cpp60 SkPath drawPath; variable
61 drawPath.moveTo(823.f, 653.f);
62 drawPath.lineTo(1043.f, 653.f);
63 drawPath.lineTo(1043.f, 733.f);
64 drawPath.lineTo(823.f, 733.f);
65 drawPath.lineTo(823.f, 653.f);
66 drawPath.close();
67 drawPath.moveTo(832.f, 654.f);
68 drawPath.lineTo(1034.f, 654.f);
69 drawPath
[all...]
H A Dcubicpaths.cpp39 canvas->drawPath(path, paint);
64 void drawPath(SkPath& path,SkCanvas* canvas,SkColor color, function in class:CubicPathGM
77 canvas->drawPath(path, paint);
155 this->drawPath(path.fPath, canvas, color, rect,
207 void drawPath(SkPath& path,SkCanvas* canvas,SkColor color, function in class:CubicClosePathGM
220 canvas->drawPath(path, paint);
299 this->drawPath(path.fPath, canvas, color, rect,
H A Dlinepaths.cpp25 void drawPath(SkPath& path,SkCanvas* canvas,SkColor color, function in class:skiagm::LinePathGM
38 canvas->drawPath(path, paint);
114 this->drawPath(path.fPath, canvas, color, rect,
166 void drawPath(SkPath& path,SkCanvas* canvas,SkColor color, function in class:skiagm::LineClosePathGM
179 canvas->drawPath(path, paint);
256 this->drawPath(path.fPath, canvas, color, rect,
H A Dquadpaths.cpp25 void drawPath(SkPath& path,SkCanvas* canvas,SkColor color, function in class:skiagm::QuadPathGM
38 canvas->drawPath(path, paint);
115 this->drawPath(path.fPath, canvas, color, rect,
167 void drawPath(SkPath& path,SkCanvas* canvas,SkColor color, function in class:skiagm::QuadClosePathGM
180 canvas->drawPath(path, paint);
258 this->drawPath(path.fPath, canvas, color, rect,
H A Ddegeneratesegments.cpp192 void drawPath(SkPath& path, SkCanvas* canvas, SkColor color, function in class:skiagm::DegenerateSegmentsGM
205 canvas->drawPath(path, paint);
336 this->drawPath(path, canvas, color, rect,
/external/chromium_org/third_party/skia/include/core/
H A DSkDraw.h48 void drawPath(const SkPath& path, const SkPaint& paint, function in class:SkDraw
50 this->drawPath(path, paint, prePathMatrix, pathIsMutable, false);
53 void drawPath(const SkPath& path, const SkPaint& paint) const { function in class:SkDraw
54 this->drawPath(path, paint, NULL, false, false);
79 this->drawPath(src, paint, NULL, false, true);
120 void drawPath(const SkPath&, const SkPaint&, const SkMatrix* preMatrix,
/external/chromium_org/third_party/skia/src/gpu/
H A DGrPathRenderer.h58 * and calls drawPath(). The path is rendered exactly as the draw state
116 bool drawPath(const SkPath& path, function in class:GrPathRenderer
166 * Subclass implementation of drawPath()
189 this->drawPath(path, stroke, target, false);
/external/skia/include/core/
H A DSkDraw.h48 void drawPath(const SkPath& path, const SkPaint& paint, function in class:SkDraw
50 this->drawPath(path, paint, prePathMatrix, pathIsMutable, false);
53 void drawPath(const SkPath& path, const SkPaint& paint) const { function in class:SkDraw
54 this->drawPath(path, paint, NULL, false, false);
79 this->drawPath(src, paint, NULL, false, true);
120 void drawPath(const SkPath&, const SkPaint&, const SkMatrix* preMatrix,
/external/skia/src/gpu/
H A DGrPathRenderer.h58 * and calls drawPath(). The path is rendered exactly as the draw state
116 bool drawPath(const SkPath& path, function in class:GrPathRenderer
166 * Subclass implementation of drawPath()
189 this->drawPath(path, stroke, target, false);
/external/chromium_org/third_party/skia/src/pdf/
H A DSkPDFDeviceFlattener.cpp70 INHERITED::drawPath(draw, path, paintFlatten, NULL, true);
73 void SkPDFDeviceFlattener::drawPath(const SkDraw& d, const SkPath& origPath, function in class:SkPDFDeviceFlattener
77 INHERITED::drawPath(d, origPath, paint, prePathMatrix, pathIsMutable);
113 INHERITED::drawPath(draw, tmpPath, paintFlatten, NULL, true);
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowCanvas.java88 public void drawPath(Path path, Paint paint) { method in class:ShadowCanvas
/external/skia/src/pdf/
H A DSkPDFDeviceFlattener.cpp70 INHERITED::drawPath(draw, path, paintFlatten, NULL, true);
73 void SkPDFDeviceFlattener::drawPath(const SkDraw& d, const SkPath& origPath, function in class:SkPDFDeviceFlattener
77 INHERITED::drawPath(d, origPath, paint, prePathMatrix, pathIsMutable);
113 INHERITED::drawPath(draw, tmpPath, paintFlatten, NULL, true);
/external/chromium_org/skia/ext/
H A Danalysis_canvas.cc189 // drawPath, but since drawPath ignores the SkPath, just
195 void AnalysisDevice::drawPath(const SkDraw& draw, function in class:skia::AnalysisDevice
/external/chromium_org/third_party/skia/src/core/
H A DSkBBoxRecord.cpp29 void SkBBoxRecord::drawPath(const SkPath& path, const SkPaint& paint) { function in class:SkBBoxRecord
36 INHERITED::drawPath(path, paint);
39 INHERITED::drawPath(path, paint);
H A DSkBitmapDevice.cpp229 // call the VIRTUAL version, so any subclasses who do handle drawPath aren't
231 this->drawPath(draw, path, paint, NULL, true);
241 // call the VIRTUAL version, so any subclasses who do handle drawPath aren't
243 this->drawPath(draw, path, paint, NULL, true);
249 void SkBitmapDevice::drawPath(const SkDraw& draw, const SkPath& path, function in class:SkBitmapDevice
253 draw.drawPath(path, paint, prePathMatrix, pathIsMutable);
/external/skia/src/core/
H A DSkBBoxRecord.cpp29 void SkBBoxRecord::drawPath(const SkPath& path, const SkPaint& paint) { function in class:SkBBoxRecord
36 INHERITED::drawPath(path, paint);
39 INHERITED::drawPath(path, paint);
H A DSkBitmapDevice.cpp229 // call the VIRTUAL version, so any subclasses who do handle drawPath aren't
231 this->drawPath(draw, path, paint, NULL, true);
241 // call the VIRTUAL version, so any subclasses who do handle drawPath aren't
243 this->drawPath(draw, path, paint, NULL, true);
249 void SkBitmapDevice::drawPath(const SkDraw& draw, const SkPath& path, function in class:SkBitmapDevice
253 draw.drawPath(path, paint, prePathMatrix, pathIsMutable);
/external/chromium_org/third_party/skia/src/animator/
H A DSkDrawExtraPathEffect.cpp108 SkDrawPath* drawPath = NULL; local
110 drawPath = (SkDrawPath*) fDraw->addPath;
116 drawPath = (SkDrawPath*) apply->getScope();
137 if (drawPath)
138 dst->addPath(drawPath->getPath(), m);
252 SkDrawPath* drawPath; local
255 drawPath = (SkDrawPath*) fDraw->addPath;
261 drawPath = (SkDrawPath*) apply->getScope();
263 if (drawPath == NULL)
276 dst->addPath(drawPath
[all...]
/external/chromium_org/third_party/skia/src/utils/
H A DSkLuaCanvas.cpp202 void SkLuaCanvas::drawPath(const SkPath& path, const SkPaint& paint) { function in class:SkLuaCanvas
203 AUTO_LUA("drawPath");
H A DSkNWayCanvas.cpp214 void SkNWayCanvas::drawPath(const SkPath& path, const SkPaint& paint) { function in class:SkNWayCanvas
217 iter->drawPath(path, paint);
H A DSkProxyCanvas.cpp98 void SkProxyCanvas::drawPath(const SkPath& path, const SkPaint& paint) { function in class:SkProxyCanvas
99 fProxy->drawPath(path, paint);
/external/skia/src/animator/
H A DSkDrawExtraPathEffect.cpp108 SkDrawPath* drawPath = NULL; local
110 drawPath = (SkDrawPath*) fDraw->addPath;
116 drawPath = (SkDrawPath*) apply->getScope();
137 if (drawPath)
138 dst->addPath(drawPath->getPath(), m);
252 SkDrawPath* drawPath; local
255 drawPath = (SkDrawPath*) fDraw->addPath;
261 drawPath = (SkDrawPath*) apply->getScope();
263 if (drawPath == NULL)
276 dst->addPath(drawPath
[all...]
/external/skia/src/utils/
H A DSkLuaCanvas.cpp202 void SkLuaCanvas::drawPath(const SkPath& path, const SkPaint& paint) { function in class:SkLuaCanvas
203 AUTO_LUA("drawPath");
H A DSkNWayCanvas.cpp214 void SkNWayCanvas::drawPath(const SkPath& path, const SkPaint& paint) { function in class:SkNWayCanvas
217 iter->drawPath(path, paint);
H A DSkProxyCanvas.cpp98 void SkProxyCanvas::drawPath(const SkPath& path, const SkPaint& paint) { function in class:SkProxyCanvas
99 fProxy->drawPath(path, paint);

Completed in 1870 milliseconds

123