Home
last modified time | relevance | path

Searched refs:fLastY (Results 1 – 8 of 8) sorted by relevance

/external/skia/src/core/
DSkEdgeBuilder.cpp30 if (edge->fLastY + 1 == last->fFirstY) { in CombineVertical()
34 if (edge->fFirstY == last->fLastY + 1) { in CombineVertical()
35 last->fLastY = edge->fLastY; in CombineVertical()
41 if (edge->fLastY == last->fLastY) { in CombineVertical()
44 if (edge->fLastY < last->fLastY) { in CombineVertical()
45 last->fFirstY = edge->fLastY + 1; in CombineVertical()
48 last->fFirstY = last->fLastY + 1; in CombineVertical()
49 last->fLastY = edge->fLastY; in CombineVertical()
53 if (edge->fLastY == last->fLastY) { in CombineVertical()
55 last->fLastY = edge->fFirstY - 1; in CombineVertical()
[all …]
DSkRegion_path.cpp54 SkDebugf("SkRgnBuilder::Scanline: LastY=%d, fXCount=%d", line->fLastY, line->fXCount); in dump()
78 SkRegion::RunType fLastY; member
98 fPrevScanline->fLastY + 1 == fCurrScanline->fLastY && in collapsWithPrev()
103 fPrevScanline->fLastY = fCurrScanline->fLastY; in collapsWithPrev()
163 fCurrScanline->fLastY = (SkRegion::RunType)(y); in blitH()
166 SkASSERT(y >= fCurrScanline->fLastY); in blitH()
168 if (y > fCurrScanline->fLastY) { in blitH()
172 int prevLastY = fCurrScanline->fLastY; in blitH()
179 fCurrScanline->fLastY = (SkRegion::RunType)(y - 1); in blitH()
184 fCurrScanline->fLastY = (SkRegion::RunType)(y); in blitH()
[all …]
DSkEdge.h33 int32_t fLastY; member
47 return fLastY >= clip.fTop; in intersectsClip()
52 …SkDebugf("edge: firstY:%d lastY:%d x:%g dx:%g w:%d\n", fFirstY, fLastY, SkFixedToFloat(fX), SkFixe… in dump()
60 SkASSERT(fFirstY <= fLastY); in validate()
127 fLastY = bot - 1; in setLine()
DSkScan_Path.cpp112 SkASSERT(edge->fFirstY <= edge->fLastY); in validate_edges_for_y()
154 SkASSERT(currE->fLastY >= curr_y); in walk_edges()
173 if (currE->fLastY == curr_y) { // are we done with this edge? in walk_edges()
189 SkASSERT(currE->fLastY > curr_y); in walk_edges()
226 SkASSERT(edge->fLastY >= last_y); in update_edge()
227 if (last_y == edge->fLastY) { in update_edge()
272 int local_bot = SkMin32(leftE->fLastY, riteE->fLastY); in walk_convex_edges()
DSkEdge.cpp79 fLastY = bot - 1; in setLine()
120 fLastY = bot - 1; in updateLine()
134 SkASSERT(fLastY >= clip.fTop); in chopLineWithClip()
DSkAAClip.cpp1234 int fLastY; member in SkAAClip::BuilderBlitter
1243 SkASSERT(y >= fLastY); in checkForYGap()
1244 if (fLastY > -SK_MaxS32) { in checkForYGap()
1245 int gap = y - fLastY; in checkForYGap()
1250 fLastY = y; in checkForYGap()
1260 fLastY = -SK_MaxS32; // sentinel in BuilderBlitter()
1279 fLastY = y + height - 1; in blitV()
1286 fLastY = y + height - 1; in blitRect()
1294 fLastY = y + height - 1; in blitAntiRect()
/external/skia/src/views/
DSkTouchGesture.cpp140 rec->fStartY = rec->fPrevY = rec->fLastY = y; in appendNewRec()
222 if (close_enough_for_jitter(rec.fLastX, rec.fLastY, x, y)) { in touchMoved()
229 rec.fPrevY = rec.fLastY; rec.fLastY = y; in touchMoved()
235 float dy = rec.fLastY - rec.fStartY; in touchMoved()
252 center(rec0.fLastY, rec1.fLastY)); in touchMoved()
269 if (this->handleDblTap(rec.fLastX, rec.fLastY)) { in touchEnd()
278 float dy = rec.fLastY - rec.fPrevY; in touchEnd()
304 dy = rec0.fLastY - rec1.fLastY; in computePinch()
/external/skia/include/views/
DSkTouchGesture.h57 float fLastX, fLastY; member