Home | History | Annotate | Download | only in pathops

Lines Matching refs:startT

103 static SkPoint quad_top(const SkPoint a[3], double startT, double endT) {
106 SkDPoint topPt = quad.top(startT, endT);
110 static SkPoint cubic_top(const SkPoint a[4], double startT, double endT) {
113 SkDPoint topPt = cubic.top(startT, endT);
124 static bool line_is_vertical(const SkPoint a[2], double startT, double endT) {
127 SkDPoint dst[2] = { line.ptAtT(startT), line.ptAtT(endT) };
131 static bool quad_is_vertical(const SkPoint a[3], double startT, double endT) {
134 SkDQuad dst = quad.subDivide(startT, endT);
138 static bool cubic_is_vertical(const SkPoint a[4], double startT, double endT) {
141 SkDCubic dst = cubic.subDivide(startT, endT);