Home
last modified time | relevance | path

Searched refs:outcode1 (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
412 outcode1 = ComputeOutCode(rect, x1, y1); in SDL_IntersectRectAndLine()
414 while (outcode1 || outcode2) { in SDL_IntersectRectAndLine()
415 if (outcode1 & outcode2) { in SDL_IntersectRectAndLine()
419 if (outcode1) { in SDL_IntersectRectAndLine()
420 if (outcode1 & CODE_TOP) { in SDL_IntersectRectAndLine()
423 } else if (outcode1 & CODE_BOTTOM) { in SDL_IntersectRectAndLine()
426 } else if (outcode1 & CODE_LEFT) { in SDL_IntersectRectAndLine()
429 } else if (outcode1 & CODE_RIGHT) { in SDL_IntersectRectAndLine()
435 outcode1 = ComputeOutCode(rect, x, y); in SDL_IntersectRectAndLine()