Home
last modified time | relevance | path

Searched refs:SkEvalCubicAt (Results 1 – 11 of 11) sorted by relevance

/third_party/skia/samplecode/
DSamplePath.cpp486 SkEvalCubicAt(fPts, t[i], &loc, &tan, nullptr); in onDrawContent()
495 SkEvalCubicAt(fPts, 0.5f, &loc, nullptr, nullptr); in onDrawContent()
499 SkEvalCubicAt(fPts, 1.0f/3, &loc, nullptr, nullptr); in onDrawContent()
501 SkEvalCubicAt(fPts, 2.0f/3, &loc, nullptr, nullptr); in onDrawContent()
652 SkEvalCubicAt(fPts, ts[0], &anchor, nullptr, nullptr); in showFlattness()
656 SkEvalCubicAt(fPts, ts[1], &anchor, nullptr, nullptr); in showFlattness()
739 SkEvalCubicAt(fPts, ts[i], &p, nullptr, nullptr); in onDrawContent()
DSamplePatch.cpp74 SkEvalCubicAt(cubic, t, &samples[i], nullptr, nullptr); in eval_patch_edge()
DSampleQuadStroker.cpp380 SkEvalCubicAt(pts, t, &pos, &tan, nullptr); in draw_t_divs()
DSampleVariableWidthStroker.cpp1002 SkEvalCubicAt(seg.fPoints.data(), t, nullptr, &tangent, nullptr); in unitNormal()
/third_party/skia/tests/
DGeometryTest.cpp74 SkEvalCubicAt(pts, chopT, &expectedPt, nullptr, nullptr); in testChopCubic()
276 SkEvalCubicAt(&pts[index * 4], 0, nullptr, &start, nullptr); in test_cubic_tangents()
277 SkEvalCubicAt(&pts[index * 4], .5f, nullptr, &mid, nullptr); in test_cubic_tangents()
278 SkEvalCubicAt(&pts[index * 4], 1, nullptr, &end, nullptr); in test_cubic_tangents()
DPathTest.cpp4213 SkEvalCubicAt(&pts[i], 0.5f, &halfway, nullptr, nullptr); in test_contains()
4215 SkEvalCubicAt(&pts[i + 3], 0.5f, &halfway, nullptr, nullptr); in test_contains()
/third_party/skia/src/core/
DSkGeometry.h132 void SkEvalCubicAt(const SkPoint src[4], SkScalar t, SkPoint* locOrNull,
DSkStroke.cpp661 SkEvalCubicAt(cubic, t, &reduction[rCount], nullptr, nullptr); in CheckCubicLinear()
847 SkEvalCubicAt(cubic, t, tPt, &dxy, nullptr); in cubicPerpRay()
1329 SkEvalCubicAt(cubic, cusp, &cuspLoc, nullptr, nullptr); in cubicTo()
DSkContourMeasure.cpp460 SkEvalCubicAt(pts, t, pos, tangent, nullptr); in compute_pos_tan()
DSkPath.cpp2938 SkEvalCubicAt(c, t, nullptr, &tangent, nullptr); in tangent_cubic()
3322 SkEvalCubicAt(src, ts[i], &extremas[i], nullptr, nullptr); in compute_cubic_extremas()
DSkGeometry.cpp399 void SkEvalCubicAt(const SkPoint src[4], SkScalar t, SkPoint* loc, in SkEvalCubicAt() function