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

  /external/skia/include/core/
SkPathMeasure.h 110 int mint, int maxt, int ptIndex);
113 int maxt, const SkPoint& maxPt, int ptIndex);
115 int mint, int maxt, int ptIndex);
  /external/skia/gm/
polygons.cpp 73 for (size_t ptIndex = 1; ptIndex < pgs[pgIndex].fPointNum; ++ptIndex) {
74 fPolygons.back().lineTo(pgs[pgIndex].fPoints[ptIndex].fX,
75 pgs[pgIndex].fPoints[ptIndex].fY);
  /external/skia/src/core/
SkPathMeasure.cpp 28 unsigned ptIndex = seg->fPtIndex;
32 } while (seg->fPtIndex == ptIndex);
232 SkScalar distance, int mint, int maxt, int ptIndex) {
238 distance = this->compute_quad_segs(tmp, distance, mint, halft, ptIndex);
239 distance = this->compute_quad_segs(&tmp[2], distance, halft, maxt, ptIndex);
247 seg->fPtIndex = ptIndex;
257 int maxt, const SkPoint& maxPt, int ptIndex) {
261 distance = this->compute_conic_segs(conic, distance, mint, minPt, halft, halfPt, ptIndex);
262 distance = this->compute_conic_segs(conic, distance, halft, halfPt, maxt, maxPt, ptIndex);
270 seg->fPtIndex = ptIndex;
    [all...]

Completed in 468 milliseconds