Home
last modified time | relevance | path

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

/third_party/flutter/skia/tests/
DGeometryTest.cpp88 conic.evalAt(t, &p0, nullptr); in test_conic_eval_pos()
89 p1 = conic.evalAt(t); in test_conic_eval_pos()
95 conic.evalAt(t, nullptr, &v0); in test_conic_eval_tan()
DPathTest.cpp4127 halfway = conic.evalAt(0.5f); in test_contains()
/third_party/flutter/skia/src/core/
DSkGeometry.h261 void evalAt(SkScalar t, SkPoint* pos, SkVector* tangent = nullptr) const;
266 SkPoint evalAt(SkScalar t) const;
DSkGeometry.cpp1106 SkPoint SkConic::evalAt(SkScalar t) const { in evalAt() function in SkConic
1132 void SkConic::evalAt(SkScalar t, SkPoint* pt, SkVector* tangent) const { in evalAt() function in SkConic
1136 *pt = this->evalAt(t); in evalAt()
1364 this->evalAt(t, &pts[count++]); in computeTightBounds()
1367 this->evalAt(t, &pts[count++]); in computeTightBounds()
DSkContourMeasure.cpp200 SkPoint halfPt = conic.evalAt(tValue2Scalar(halft)); in compute_conic_segs()
420 SkConic(pts[0], pts[2], pts[3], pts[1].fX).evalAt(t, pos, tangent); in compute_pos_tan()
DSkStroke.cpp662 conic.evalAt(t, reduction, nullptr); in CheckConicLinear()
785 conic.evalAt(t, tPt, &dxy); in conicPerpRay()
DSkPath.cpp3793 extremas[i] = conic.evalAt(ts[i]); in compute_conic_extremas()
/third_party/skia/src/core/
DSkGeometry.h332 void evalAt(SkScalar t, SkPoint* pos, SkVector* tangent = nullptr) const;
337 SkPoint evalAt(SkScalar t) const;
DSkGeometry.cpp1305 SkPoint SkConic::evalAt(SkScalar t) const { in evalAt() function in SkConic
1331 void SkConic::evalAt(SkScalar t, SkPoint* pt, SkVector* tangent) const { in evalAt() function in SkConic
1335 *pt = this->evalAt(t); in evalAt()
1600 this->evalAt(t, &pts[count++]); in computeTightBounds()
1603 this->evalAt(t, &pts[count++]); in computeTightBounds()
DSkContourMeasure.cpp238 SkPoint halfPt = conic.evalAt(tValue2Scalar(halft)); in compute_conic_segs()
454 SkConic(pts[0], pts[2], pts[3], pts[1].fX).evalAt(t, pos, tangent); in compute_pos_tan()
DSkStroke.cpp695 conic.evalAt(t, reduction, nullptr); in CheckConicLinear()
818 conic.evalAt(t, tPt, &dxy); in conicPerpRay()
DSkPath.cpp3310 extremas[i] = conic.evalAt(ts[i]); in compute_conic_extremas()
/third_party/skia/tests/
DGeometryTest.cpp156 conic.evalAt(t, &p0, nullptr); in test_conic_eval_pos()
157 p1 = conic.evalAt(t); in test_conic_eval_pos()
163 conic.evalAt(t, nullptr, &v0); in test_conic_eval_tan()
DPathTest.cpp4193 halfway = conic.evalAt(0.5f); in test_contains()
/third_party/skia/bench/
DPathBench.cpp931 fDst[0].fPts[0] = fRQ.evalAt(0.4f); in onDraw()
937 fRQ.evalAt(0.4f, &fDst[0].fPts[0], nullptr); in onDraw()
962 fRQ.evalAt(0.4f, nullptr, &fDst[0].fPts[0]); in onDraw()
/third_party/flutter/skia/bench/
DPathBench.cpp929 fDst[0].fPts[0] = fRQ.evalAt(0.4f); in onDraw()
935 fRQ.evalAt(0.4f, &fDst[0].fPts[0], nullptr); in onDraw()
960 fRQ.evalAt(0.4f, nullptr, &fDst[0].fPts[0]); in onDraw()
/third_party/skia/src/gpu/tessellate/
DStrokeFixedCountTessellator.cpp327 SkPoint cusp = conic.evalAt(conic.findMidTangent()); in prepare()
DStrokeHardwareTessellator.cpp826 SkPoint cusp = conic.evalAt(conic.findMidTangent()); in prepare()
/third_party/skia/samplecode/
DSampleQuadStroker.cpp376 pos = conic.evalAt(t); in draw_t_divs()
/third_party/flutter/skia/samplecode/
DSampleQuadStroker.cpp383 pos = conic.evalAt(t); in draw_t_divs()