HomeSort by relevance Sort by last modified time
    Searched refs:fFirstY (Results 1 - 5 of 5) sorted by null

  /external/chromium_org/third_party/skia/src/core/
SkScan_Path.cpp 31 while (edge->fFirstY != SK_MaxS32) {
33 SkASSERT(y <= edge->fFirstY);
35 y = edge->fFirstY;
70 SkASSERT(prev && prev->fFirstY <= curr_y + 1);
80 SkASSERT(newEdge->fFirstY >= curr_y);
82 while (newEdge->fFirstY == curr_y) {
91 while (edge->fFirstY <= curr_y) {
95 SkASSERT(edge->fFirstY <= edge->fLastY);
136 while (currE->fFirstY <= curr_y) {
159 SkASSERT(currE->fFirstY == curr_y + 1)
    [all...]
SkEdge.h 32 int32_t fFirstY;
47 SkASSERT(fFirstY < clip.fBottom);
53 SkDebugf("edge: firstY:%d lastY:%d x:%g dx:%g w:%d\n", fFirstY, fLastY, SkFixedToFloat(fX), SkFixedToFloat(fDX), fWinding);
61 SkASSERT(fFirstY <= fLastY);
127 fFirstY = top;
SkEdge.cpp 78 fFirstY = top;
105 // SkASSERT(top >= fFirstY);
119 fFirstY = top;
127 int top = fFirstY;
136 fFirstY = clip.fTop;
  /external/chromium_org/third_party/skia/experimental/Intersection/
SkAntiEdge.cpp 22 float y1 = SkFixedToFloat(fFirstY);
36 SkAssertResult(y >= fFirstY && y <= fLastY);
45 fFirstY = SkScalarToFixed(p0.fY);
47 if (fFirstY == fLastY) {
52 if (fFirstY > fLastY) {
54 SkTSwap(fFirstY, fLastY);
61 SkFixed dy = fLastY - fFirstY;
70 SkFixed yStartFrac = SkFixedFraction(fFirstY);
81 fY0 = fFirstY + SkFixedMul(fDY, distX);
82 SkFixed rowBottom = SkIntToFixed(SkFixedCeil(fFirstY + 1))
    [all...]
SkAntiEdge.h 22 SkFixed fFirstY; // starting Y

Completed in 252 milliseconds