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

  /external/skia/src/pathops/
SkPathOpsRect.cpp 13 void SkDRect::setBounds(const SkDQuad& curve, const SkDQuad& sub, double startT, double endT) {
25 double t = startT + (endT - startT) * tValues[index];
30 void SkDRect::setBounds(const SkDConic& curve, const SkDConic& sub, double startT, double endT) {
42 double t = startT + (endT - startT) * tValues[index];
47 void SkDRect::setBounds(const SkDCubic& curve, const SkDCubic& sub, double startT, double endT) {
59 double t = startT + (endT - startT) * tValues[index];
SkPathOpsCurve.h 262 static bool line_is_vertical(const SkPoint a[2], SkScalar , double startT, double endT) {
265 SkDPoint dst[2] = { line.ptAtT(startT), line.ptAtT(endT) };
269 static bool quad_is_vertical(const SkPoint a[3], SkScalar , double startT, double endT) {
272 SkDQuad dst = quad.subDivide(startT, endT);
276 static bool conic_is_vertical(const SkPoint a[3], SkScalar weight, double startT, double endT) {
279 SkDConic dst = conic.subDivide(startT, endT);
283 static bool cubic_is_vertical(const SkPoint a[4], SkScalar , double startT, double endT) {
286 SkDCubic dst = cubic.subDivide(startT, endT);
SkPathOpsCubic.h 131 double top(const SkDCubic& dCurve, double startT, double endT, SkDPoint*topPt) const;
SkOpSegment.h 107 bool collapsed(double startT, double endT) const;
127 void debugAddAngle(double startT, double endT);
SkPathOpsTSect.h 183 double startT() const {
    [all...]
SkOpSegment.cpp     [all...]
SkPathOpsCubic.cpp 721 double SkDCubic::top(const SkDCubic& dCurve, double startT, double endT, SkDPoint*topPt) const {
726 double t = startT + (endT - startT) * extremeTs[index];
SkOpAngle.cpp     [all...]
SkPathOpsDebug.cpp 190 void record(GlitchType type, const SkOpSegment* seg, double startT,
194 glitch->fStartT = startT;
405 SkDebugf(" startT=%g", glitch.fStartT);
    [all...]
  /external/skia/src/core/
SkPathMeasurePriv.h 27 SkScalar startT, SkScalar stopT, SkPath* dst);
SkPathMeasure.cpp 37 SkScalar startT, SkScalar stopT, SkPath* dst) {
38 SkASSERT(startT >= 0 && startT <= SK_Scalar1);
40 SkASSERT(startT <= stopT);
42 if (startT == stopT) {
63 if (0 == startT) {
71 SkChopQuadAt(pts, tmp0, startT);
75 SkChopQuadAt(&tmp0[2], tmp1, (stopT - startT) / (1 - startT));
83 if (0 == startT) {
    [all...]
  /external/skia/tests/
PathOpsAngleTest.cpp 481 void SkOpSegment::debugAddAngle(double startT, double endT) {
482 SkOpPtT* startPtT = startT == 0 ? fHead.ptT() : startT == 1 ? fTail.ptT()
483 : this->addT(startT);
496 if (startT < endT) {

Completed in 2935 milliseconds