Searched defs:nextV (Results 1 - 2 of 2) sorted by relevance

/external/skia/src/gpu/
H A DGrTessellator.cpp1168 Vertex* nextV = prevV ? prevV->fNext : mesh->fHead; local
1169 while (nextV && c.sweep_lt(nextV->fPoint, p)) {
1170 prevV = nextV;
1171 nextV = nextV->fNext;
1176 } else if (nextV && coincident(nextV->fPoint, p)) {
1177 v = nextV;
1183 } else if (!nextV) {
1974 Vertex* nextV = e->fWinding > 0 ? e->fBottom : e->fTop; local
[all...]
/external/skqp/src/gpu/
H A DGrTessellator.cpp1168 Vertex* nextV = prevV ? prevV->fNext : mesh->fHead; local
1169 while (nextV && c.sweep_lt(nextV->fPoint, p)) {
1170 prevV = nextV;
1171 nextV = nextV->fNext;
1176 } else if (nextV && coincident(nextV->fPoint, p)) {
1177 v = nextV;
1183 } else if (!nextV) {
1974 Vertex* nextV = e->fWinding > 0 ? e->fBottom : e->fTop; local
[all...]

Completed in 306 milliseconds