Home
last modified time | relevance | path

Searched refs:fLowerY (Results 1 - 4 of 4) sorted by relevance

/third_party/skia/src/core/
H A DSkEdgeBuilder.cpp70 if (edge->fLowerY == last->fUpperY) { in combineVertical()
75 if (approximately_equal(edge->fUpperY, last->fLowerY)) { in combineVertical()
76 last->fLowerY = edge->fLowerY; in combineVertical()
82 if (approximately_equal(edge->fLowerY, last->fLowerY)) { in combineVertical()
85 if (edge->fLowerY < last->fLowerY) { in combineVertical()
86 last->fUpperY = edge->fLowerY; in combineVertical()
90 last->fUpperY = last->fLowerY; in combineVertical()
[all...]
H A DSkScan_AAAPath.cpp1067 nextEdge->fLowerY - nextEdge->fUpperY >= SK_Fixed1; // Dy should be large
1079 if (leftE->fLowerY + SK_Fixed1 < riteE->fLowerY) {
1081 } else if (leftE->fLowerY > riteE->fLowerY + SK_Fixed1) {
1113 // We have to check fLowerY first because some edges might be alone (e.g., there's only
1115 while (leftE->fLowerY <= y) { // Due to smooth jump, we may pass multiple short edges
1124 while (riteE->fLowerY <= y) { // Due to smooth jump, we may pass multiple short edges
1152 SkFixed local_bot_fixed = std::min(leftE->fLowerY, riteE->fLowerY);
[all...]
H A DSkAnalyticEdge.h35 SkFixed fUpperY; // The upper bound of y (our edge is from y = fUpperY to y = fLowerY)
36 SkFixed fLowerY; // The lower bound of y (our edge is from y = fUpperY to y = fLowerY) member
92 fUpperY, fLowerY, SkFixedToFloat(fY), SkFixedToFloat(fX), in dump()
101 SkASSERT(fUpperY < fLowerY); in validate()
H A DSkAnalyticEdge.cpp269 fLowerY = y1; in setLine()
317 fLowerY = y1;
328 SkASSERT(last_y >= fLowerY); // we shouldn't update edge if last_y < fLowerY

Completed in 7 milliseconds