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

  /external/skia/src/pathops/
SkPathOpsRect.cpp 16 double tValues[2];
19 roots = SkDQuad::FindExtrema(&sub[0].fX, tValues);
22 roots += SkDQuad::FindExtrema(&sub[0].fY, &tValues[roots]);
25 double t = startT + (endT - startT) * tValues[index];
33 double tValues[2];
36 roots = SkDConic::FindExtrema(&sub[0].fX, sub.fWeight, tValues);
39 roots += SkDConic::FindExtrema(&sub[0].fY, sub.fWeight, &tValues[roots]);
42 double t = startT + (endT - startT) * tValues[index];
50 double tValues[4];
53 roots = SkDCubic::FindExtrema(&sub[0].fX, tValues);
    [all...]
SkPathOpsConic.cpp 36 double tValues[2];
37 int roots = SkDQuad::RootsValidT(coeff[0], coeff[1], coeff[2], tValues);
44 t[0] = tValues[0];
  /external/skqp/src/pathops/
SkPathOpsRect.cpp 16 double tValues[2];
19 roots = SkDQuad::FindExtrema(&sub[0].fX, tValues);
22 roots += SkDQuad::FindExtrema(&sub[0].fY, &tValues[roots]);
25 double t = startT + (endT - startT) * tValues[index];
33 double tValues[2];
36 roots = SkDConic::FindExtrema(&sub[0].fX, sub.fWeight, tValues);
39 roots += SkDConic::FindExtrema(&sub[0].fY, sub.fWeight, &tValues[roots]);
42 double t = startT + (endT - startT) * tValues[index];
50 double tValues[4];
53 roots = SkDCubic::FindExtrema(&sub[0].fX, tValues);
    [all...]
SkPathOpsConic.cpp 36 double tValues[2];
37 int roots = SkDQuad::RootsValidT(coeff[0], coeff[1], coeff[2], tValues);
44 t[0] = tValues[0];
  /external/skia/tests/
GeometryTest.cpp 22 Inspired by this test, which used to assert that the tValues had dups
33 SkScalar tValues[3];
35 int count = SkChopCubicAtMaxCurvature(src, dst, tValues);
  /external/skqp/tests/
GeometryTest.cpp 22 Inspired by this test, which used to assert that the tValues had dups
33 SkScalar tValues[3];
35 int count = SkChopCubicAtMaxCurvature(src, dst, tValues);

Completed in 1292 milliseconds