Lines Matching refs:hit
261 SkOpRayHit* hit = hitHead; in sortableTop() local
262 while (hit) { in sortableTop()
263 sorted.push_back(hit); in sortableTop()
264 hit = hit->fNext; in sortableTop()
276 hit = sorted[index]; in sortableTop()
277 SkOpSpan* span = hit->fSpan; in sortableTop()
280 bool ccw = ccw_dxdy(hit->fSlope, dir); in sortableTop()
282 hit->fValid, operand, span ? span->debugID() : -1, ccw); in sortableTop()
286 SkDebugf(" t=%1.9g pt=(%1.9g,%1.9g) slope=(%1.9g,%1.9g)\n", hit->fT, in sortableTop()
287 hit->fPt.fX, hit->fPt.fY, hit->fSlope.fX, hit->fSlope.fY); in sortableTop()
294 hit = sorted[index]; in sortableTop()
295 if (!hit->fValid) { in sortableTop()
298 bool ccw = ccw_dxdy(hit->fSlope, dir); in sortableTop()
300 SkOpSpan* span = hit->fSpan; in sortableTop()
308 if (last && SkDPoint::ApproximatelyEqual(*last, hit->fPt)) { in sortableTop()
313 if (SkDPoint::ApproximatelyEqual(next, hit->fPt)) { in sortableTop()
366 last = &hit->fPt; in sortableTop()