/third_party/skia/docs/examples/ |
H A D | Path_incReserve.cpp | 7 auto addPoly = [](int sides, SkScalar size, SkPath* path) -> void { in REG_FIDDLE() local 18 addPoly(sides, sides, &path); in REG_FIDDLE()
|
H A D | Canvas_quickReject_2.cpp | 10 testPath.addPoly(testPoints, SK_ARRAY_COUNT(testPoints), true); in REG_FIDDLE() 11 clipPath.addPoly(clipPoints, SK_ARRAY_COUNT(clipPoints), true); in REG_FIDDLE()
|
H A D | Path_Convexity.cpp | 14 path.addPoly(quad, SK_ARRAY_COUNT(quad), true); in REG_FIDDLE()
|
H A D | Path_isConvex.cpp | 13 path.addPoly(quad, SK_ARRAY_COUNT(quad), true); in REG_FIDDLE()
|
H A D | Path_addPoly_2.cpp | 12 path.addPoly({{20, 20}, {70, 20}, {40, 90}}, close); in REG_FIDDLE()
|
H A D | Path_addPoly.cpp | 13 path.addPoly(points, SK_ARRAY_COUNT(points), close); in REG_FIDDLE()
|
H A D | Path_addRect_2.cpp | 14 arrowPath.addPoly(arrow, SK_ARRAY_COUNT(arrow), true); in REG_FIDDLE()
|
H A D | Path_isRect.cpp | 27 path.addPoly(pts, SK_ARRAY_COUNT(pts), false); in REG_FIDDLE() 28 debugster("addPoly", path); in REG_FIDDLE()
|
H A D | getLocalBounds_working.cpp | 13 clipPath.addPoly(clipPoints, SK_ARRAY_COUNT(clipPoints), true); in REG_FIDDLE()
|
H A D | getLocalBounds_broken.cpp | 13 clipPath.addPoly(clipPoints, SK_ARRAY_COUNT(clipPoints), true); in REG_FIDDLE()
|
H A D | Path_close.cpp | 12 path.addPoly(points, SK_ARRAY_COUNT(points), false); in REG_FIDDLE()
|
H A D | Canvas_PointMode.cpp | 17 path.addPoly(points, 3, false); in REG_FIDDLE()
|
H A D | Canvas_getLocalClipBounds.cpp | 14 clipPath.addPoly(clipPoints, SK_ARRAY_COUNT(clipPoints), true); in REG_FIDDLE()
|
H A D | Canvas_clipPath_3.cpp | 12 path.addPoly(poly, SK_ARRAY_COUNT(poly), true); in REG_FIDDLE()
|
H A D | Path_addOval_2.cpp | 16 arrowPath.addPoly(arrow, SK_ARRAY_COUNT(arrow), true); in REG_FIDDLE()
|
H A D | Path_Direction.cpp | 16 arrowPath.addPoly(arrow, SK_ARRAY_COUNT(arrow), true); in REG_FIDDLE()
|
H A D | Canvas_drawPoints.cpp | 18 path.addPoly(points, 3, false); in REG_FIDDLE()
|
H A D | Canvas_getDeviceClipBounds.cpp | 14 clipPath.addPoly(clipPoints, SK_ARRAY_COUNT(clipPoints), true); in REG_FIDDLE()
|
/third_party/skia/samplecode/ |
H A D | SampleDegenerateQuads.cpp | 67 shape.addPoly(corners, 4, true); in get_area_coverage() 352 outsetPath.addPoly(gpuOutset, 4, true); 357 insetPath.addPoly(gpuInset, 4, true); 370 path.addPoly(fCorners, 4, true); 376 path.addPoly(fCorners, 4, true); 408 path.addPoly(fCorners, 4, true);
|
H A D | SamplePathClip.cpp | 140 path.addPoly(verts, count, false); in draw_clipped_line() 182 path.addPoly(fPoly, N, true); 286 path.addPoly(fPoly, N, true);
|
/third_party/skia/tests/ |
H A D | PathOpsAsWindingTest.cpp | 79 test.addPoly(ell, SK_ARRAY_COUNT(ell), true); in DEF_TEST() 94 test.addPoly(ell, SK_ARRAY_COUNT(ell), true); in DEF_TEST() 143 test.addPoly(SkPathDirection::kCW == dirA ? revBccw : revBcw, true); in DEF_TEST()
|
/third_party/skia/include/core/ |
H A D | SkPath.h | 1222 SkPath& addPoly(const SkPoint pts[], int count, bool close); 1234 SkPath& addPoly(const std::initializer_list<SkPoint>& list, bool close) { in addPoly() function in SkPath 1235 return this->addPoly(list.begin(), SkToInt(list.size()), close); in addPoly()
|
/third_party/skia/gm/ |
H A D | patharcto.cpp | 62 path.addPoly(pts, count, isClosed); in old_school_polygon()
|
/third_party/skia/src/core/ |
H A D | SkDevice.cpp | 254 clipPath.addPoly(clip, 4, true); in drawEdgeAAQuad() 295 clipPath.addPoly(dstClips + clipIndex, 4, true); in drawEdgeAAImageSet()
|
H A D | SkDraw_atlas.cpp | 38 scratchPath->addPoly(pts, 4, true); in fill_rect()
|