Lines Matching refs:x0Int

173     int16_t x0Int = MATH_ROUND(x0);  in DrawWuLine()  local
184 …DrawThinWuLine(gfxDstBuffer, { x0Int, y0Int }, { x3Int, y3Int }, mask, 2, color, opacity); // 2 : … in DrawWuLine()
187 dx = MATH_ABS(x0Int - x1Int); in DrawWuLine()
194 SWAP_IF_Y_LARGER(x0Int, x1Int, y0Int, y1Int); in DrawWuLine()
197 SWAP_IF_Y_LARGER(x0Int, x1Int, y0Int, y1Int); in DrawWuLine()
199 SWAP_IF_Y_LARGER(x0Int, x1Int, y0Int, y1Int); in DrawWuLine()
201 SWAP_IF_X_SMALLER(x1Int, x0Int, y1Int, y0Int); in DrawWuLine()
204 SWAP_IF_X_SMALLER(x0Int, x1Int, y0Int, y1Int); in DrawWuLine()
208 SWAP_IF_X_SMALLER(x0Int, x1Int, y0Int, y1Int); in DrawWuLine()
211 SWAP_IF_X_SMALLER(x0Int, x1Int, y0Int, y1Int); in DrawWuLine()
213 SWAP_IF_X_SMALLER(x0Int, x1Int, y0Int, y1Int); in DrawWuLine()
215 SWAP_IF_Y_LARGER(x1Int, x0Int, y1Int, y0Int); in DrawWuLine()
218 SWAP_IF_Y_LARGER(x0Int, x1Int, y0Int, y1Int); in DrawWuLine()
244 static_cast<uint64_t>(MATH_ABS(x1Int - x0Int)); in DrawWuLine()
247 dx = MATH_ABS(x1Int - x0Int); in DrawWuLine()
248 sx = x0Int; in DrawWuLine()
250 drawUtils->DrawPixel(gfxDstBuffer, x0Int, y0Int, mask, color, opacity); in DrawWuLine()
292 rect.SetRect(MATH_MIN(x0Int, x1Int), y0Int, MATH_MAX(x0Int, x1Int), y1Int); in DrawWuLine()
298 sx = x0Int; in DrawWuLine()
341 adj1 = static_cast<uint64_t>(MATH_ABS(x1Int - x0Int) << SHIFT_16) / in DrawWuLine()
346 sx = x0Int; in DrawWuLine()
353 if (x0Int - sx < MAX_LINE_WIDTH) { in DrawWuLine()
354 endPoints0[x0Int - sx] = sy; in DrawWuLine()
362 if (x0Int - sx < MAX_LINE_WIDTH) { in DrawWuLine()
363 endPoints0[x0Int - sx] = sy - dir; in DrawWuLine()
390 rect.SetRect(x1Int, MATH_MIN(y0Int, y1Int), x0Int, MATH_MAX(y0Int, y1Int)); in DrawWuLine()
396 sx = x0Int - 1; in DrawWuLine()
398 dx = MATH_ABS(x3Int - x0Int); in DrawWuLine()