HomeSort by relevance Sort by last modified time
    Searched refs:tValues (Results 1 - 3 of 3) sorted by null

  /external/skia/include/core/
SkGeometry.h 62 Returned count tValues[]
64 1 0 < tValues[0] < 1
66 int SkFindQuadExtrema(SkScalar a, SkScalar b, SkScalar c, SkScalar tValues[1]);
120 Returned count tValues[]
122 1 0 < tValues[0] < 1
123 2 0 < tValues[0] < tValues[1] < 1
125 int SkFindCubicExtrema(SkScalar a, SkScalar b, SkScalar c, SkScalar d, SkScalar tValues[2]);
141 int SkFindCubicInflections(const SkPoint src[4], SkScalar tValues[2]);
148 int SkFindCubicMaxCurvature(const SkPoint src[4], SkScalar tValues[3])
    [all...]
  /external/skia/src/core/
SkGeometry.cpp 535 int SkFindCubicExtrema(SkScalar a, SkScalar b, SkScalar c, SkScalar d, SkScalar tValues[2])
547 return SkFindUnitQuadRoots(A, B, C, tValues);
579 valid_unit_divide in SkChopCubicAt(... tValues[], int roots). The reason is
599 void SkChopCubicAt(const SkPoint src[4], SkPoint dst[], const SkScalar tValues[], int roots)
605 SkASSERT(is_unit_interval(tValues[i]));
606 SkASSERT(is_unit_interval(tValues[i+1]));
607 SkASSERT(tValues[i] < tValues[i+1]);
618 SkScalar t = tValues[0];
633 if (!valid_unit_divide(tValues[i+1] - tValues[i]
    [all...]
SkStroke.cpp 439 SkScalar tValues[3];
447 count = SkChopCubicAtMaxCurvature(pts, tmp, tValues);
470 SkEvalCubicAt(pts, tValues[i - 1], &p, &v, &c);

Completed in 330 milliseconds