Lines Matching defs:curr
334 Vertex* curr = v;
337 return this->emitTriangle(prev, curr, next, monotonePoly->fWinding, data);
339 double ax = static_cast<double>(curr->fPoint.fX) - prev->fPoint.fX;
340 double ay = static_cast<double>(curr->fPoint.fY) - prev->fPoint.fY;
341 double bx = static_cast<double>(next->fPoint.fX) - curr->fPoint.fX;
342 double by = static_cast<double>(next->fPoint.fY) - curr->fPoint.fY;
344 data = this->emitTriangle(prev, curr, next, monotonePoly->fWinding, data);
360 void* GrTriangulator::emitTriangle(Vertex* prev, Vertex* curr, Vertex* next, int winding,
371 fBreadcrumbList.append(fAlloc, prev->fPoint, curr->fPoint, next->fPoint, abs(winding) - 1);
373 return emit_triangle(prev, curr, next, fEmitCoverage, data);