Home
last modified time | relevance | path

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

/third_party/flutter/skia/third_party/externals/sdl/src/video/
DSDL_rect.c328 int outcode1, outcode2; in SDL_IntersectRectAndLine() local
413 outcode2 = ComputeOutCode(rect, x2, y2); in SDL_IntersectRectAndLine()
414 while (outcode1 || outcode2) { in SDL_IntersectRectAndLine()
415 if (outcode1 & outcode2) { in SDL_IntersectRectAndLine()
437 if (outcode2 & CODE_TOP) { in SDL_IntersectRectAndLine()
440 } else if (outcode2 & CODE_BOTTOM) { in SDL_IntersectRectAndLine()
443 } else if (outcode2 & CODE_LEFT) { in SDL_IntersectRectAndLine()
446 } else if (outcode2 & CODE_RIGHT) { in SDL_IntersectRectAndLine()
452 outcode2 = ComputeOutCode(rect, x, y); in SDL_IntersectRectAndLine()