Home
last modified time | relevance | path

Searched refs:fCurrentContour (Results 1 – 2 of 2) sorted by relevance

/external/skia/src/pathops/
DSkOpEdgeBuilder.cpp12 fCurrentContour = fContoursHead; in init()
45 if (fCurrentContour && !fCurrentContour->count()) { in finish()
46 fContoursHead->remove(fCurrentContour); in finish()
178 if (fCurrentContour && fCurrentContour->count()) { in walk()
185 if (!fCurrentContour) { in walk()
186 fCurrentContour = fContoursHead->appendContour(allocator); in walk()
188 fCurrentContour->init(fGlobalState, fOperand, in walk()
193 fCurrentContour->addLine(pointsPtr, fAllocator); in walk()
196 fCurrentContour->addQuad(pointsPtr, fAllocator); in walk()
199 fCurrentContour->addConic(pointsPtr, *weightPtr++, fAllocator); in walk()
[all …]
DSkOpEdgeBuilder.h38 if (fCurrentContour && fCurrentContour->count()) { in complete()
39 fCurrentContour->complete(); in complete()
40 fCurrentContour = NULL; in complete()
67 SkOpContour* fCurrentContour; variable