Home
last modified time | relevance | path

Searched refs:evalAt (Results 1 – 8 of 8) sorted by relevance

/external/skia/tests/
DGeometryTest.cpp74 conic.evalAt(t, &p0, nullptr); in test_conic_eval_pos()
75 p1 = conic.evalAt(t); in test_conic_eval_pos()
81 conic.evalAt(t, nullptr, &v0); in test_conic_eval_tan()
DPathTest.cpp3653 halfway = conic.evalAt(0.5f); in test_contains()
/external/skia/src/core/
DSkGeometry.h217 void evalAt(SkScalar t, SkPoint* pos, SkVector* tangent = nullptr) const;
222 SkPoint evalAt(SkScalar t) const;
DSkGeometry.cpp1035 SkPoint SkConic::evalAt(SkScalar t) const { in evalAt() function in SkConic
1061 void SkConic::evalAt(SkScalar t, SkPoint* pt, SkVector* tangent) const { in evalAt() function in SkConic
1065 *pt = this->evalAt(t); in evalAt()
1224 this->evalAt(t, &pts[count++]); in computeTightBounds()
1227 this->evalAt(t, &pts[count++]); in computeTightBounds()
DSkPathMeasure.cpp174 SkPoint halfPt = conic.evalAt(tValue2Scalar(halft)); in compute_conic_segs()
368 SkConic(pts[0], pts[2], pts[3], pts[1].fX).evalAt(t, pos, tangent); in compute_pos_tan()
DSkStroke.cpp635 conic.evalAt(t, reduction, nullptr); in CheckConicLinear()
763 conic.evalAt(t, tPt, &dxy); in conicPerpRay()
/external/skia/bench/
DPathBench.cpp848 fDst[0].fPts[0] = fRQ.evalAt(0.4f); in onDraw()
854 fRQ.evalAt(0.4f, &fDst[0].fPts[0], nullptr); in onDraw()
879 fRQ.evalAt(0.4f, nullptr, &fDst[0].fPts[0]); in onDraw()
/external/skia/samplecode/
DSampleQuadStroker.cpp368 pos = conic.evalAt(t); in draw_t_divs()