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

  /external/chromium_org/third_party/skia/experimental/Intersection/
CubicIntersection.cpp 307 #define LINE_FRACTION (1.0 / gPrecisionUnit)
309 #define LINE_FRACTION 0.1
367 double tMin1 = start ? 0 : 1 - LINE_FRACTION;
368 double tMax1 = start ? LINE_FRACTION : 1;
375 double tMin2 = SkTMax(tVals[tIdx] - LINE_FRACTION, 0.0);
376 double tMax2 = SkTMin(tVals[tLast] + LINE_FRACTION, 1.0);
  /external/skia/experimental/Intersection/
CubicIntersection.cpp 307 #define LINE_FRACTION (1.0 / gPrecisionUnit)
309 #define LINE_FRACTION 0.1
367 double tMin1 = start ? 0 : 1 - LINE_FRACTION;
368 double tMax1 = start ? LINE_FRACTION : 1;
375 double tMin2 = SkTMax(tVals[tIdx] - LINE_FRACTION, 0.0);
376 double tMax2 = SkTMin(tVals[tLast] + LINE_FRACTION, 1.0);
  /external/chromium_org/third_party/skia/src/pathops/
SkDCubicIntersection.cpp 283 #define LINE_FRACTION 0.1
387 double tMin1 = start ? 0 : 1 - LINE_FRACTION;
388 double tMax1 = start ? LINE_FRACTION : 1;
395 double tMin2 = SkTMax(tVals[tIdx] - LINE_FRACTION, 0.0);
396 double tMax2 = SkTMin(tVals[tLast] + LINE_FRACTION, 1.0);
  /external/skia/src/pathops/
SkDCubicIntersection.cpp 283 #define LINE_FRACTION 0.1
387 double tMin1 = start ? 0 : 1 - LINE_FRACTION;
388 double tMax1 = start ? LINE_FRACTION : 1;
395 double tMin2 = SkTMax(tVals[tIdx] - LINE_FRACTION, 0.0);
396 double tMax2 = SkTMin(tVals[tLast] + LINE_FRACTION, 1.0);

Completed in 144 milliseconds