Lines Matching refs:hit
252 SkOpRayHit* hit = hitHead; in sortableTop() local
253 while (hit) { in sortableTop()
254 sorted.push_back(hit); in sortableTop()
255 hit = hit->fNext; in sortableTop()
267 hit = sorted[index]; in sortableTop()
268 SkOpSpan* span = hit->fSpan; in sortableTop()
271 bool ccw = ccw_dxdy(hit->fSlope, dir); in sortableTop()
273 hit->fValid, operand, span ? span->debugID() : -1, ccw); in sortableTop()
277 SkDebugf(" t=%1.9g pt=(%1.9g,%1.9g) slope=(%1.9g,%1.9g)\n", hit->fT, in sortableTop()
278 hit->fPt.fX, hit->fPt.fY, hit->fSlope.fX, hit->fSlope.fY); in sortableTop()
285 hit = sorted[index]; in sortableTop()
286 if (!hit->fValid) { in sortableTop()
289 bool ccw = ccw_dxdy(hit->fSlope, dir); in sortableTop()
291 SkOpSpan* span = hit->fSpan; in sortableTop()
299 if (last && SkDPoint::ApproximatelyEqual(*last, hit->fPt)) { in sortableTop()
304 if (SkDPoint::ApproximatelyEqual(next, hit->fPt)) { in sortableTop()
355 last = &hit->fPt; in sortableTop()