Lines Matching refs:contour
320 void setNext(SkOpContour* contour) {
321 // SkASSERT(!fNext == !!contour);
322 fNext = contour;
383 bool fReverse; // true if contour should be reverse written to path (used only by fix winding)
393 SkOpContour* contour = this->globalState()->allocator()->make<SkOpContour>();
394 contour->setNext(nullptr);
400 prev->setNext(contour);
401 return contour;
414 void remove(SkOpContour* contour) {
415 if (contour == this) {
419 SkASSERT(contour->next() == nullptr);
422 while ((next = prev->next()) != contour) {
434 SkOpContourBuilder(SkOpContour* contour)
435 : fContour(contour)
445 SkOpContour* contour() { return fContour; }
446 void setContour(SkOpContour* contour) { flush(); fContour = contour; }