Home
last modified time | relevance | path

Searched refs:to_point (Results 1 – 4 of 4) sorted by relevance

/external/skia/src/core/
DSkGeometry.cpp114 return to_point(SkQuadCoeff(src).eval(t)); in SkEvalQuadAt()
153 dst[0] = to_point(p0); in SkChopQuadAt()
154 dst[1] = to_point(p01); in SkChopQuadAt()
155 dst[2] = to_point(interp(p01, p12, tt)); in SkChopQuadAt()
156 dst[3] = to_point(p12); in SkChopQuadAt()
157 dst[4] = to_point(p2); in SkChopQuadAt()
277 dst[1] = to_point(s0 + (s1 - s0) * scale); in SkConvertQuadToCubic()
278 dst[2] = to_point(s2 + (s1 - s2) * scale); in SkConvertQuadToCubic()
316 *loc = to_point(SkCubicCoeff(src).eval(t)); in SkEvalCubicAt()
373 dst[1] = to_point(ab); in SkChopCubicAt()
[all …]
DSkGeometry.h18 static inline SkPoint to_point(const Sk2s& x) { in to_point() function
/external/skia/src/utils/
DSkPatchUtils.cpp90 fFwDiff[3] = to_point(fwDiff3); in restart()
91 fFwDiff[2] = to_point(fwDiff3 + times_2(fCoefs.fB) * h2); in restart()
92 fFwDiff[1] = to_point(fCoefs.fA * h3 + fCoefs.fB * h2 + fCoefs.fC * h); in restart()
93 fFwDiff[0] = to_point(fCoefs.fD); in restart()
/external/skia/src/gpu/
DGrTessellator.cpp632 SkPoint p0 = to_point(quad.eval(t - 0.5f * u)); in quad_error_at()
633 SkPoint mid = to_point(quad.eval(t)); in quad_error_at()
634 SkPoint p1 = to_point(quad.eval(t + 0.5f * u)); in quad_error_at()
660 append_point_to_contour(to_point(quad.eval(j * u)), contour, alloc); in append_quadratic_to_contour()