Lines Matching refs:wy
234 void FillRect(int x, int y, int wx, int wy, RGB555 col) in FillRect() argument
238 r.wid.x = wx, r.wid.y = wy; in FillRect()
250 void BlitRect(int x, int y, int wx, int wy, RGB555 * src, int stroke) in BlitRect() argument
254 r.wid.x = wx, r.wid.y = wy; in BlitRect()
267 void TransRect(int x, int y, int wx, int wy, RGB555 * src, int stroke) in TransRect() argument
271 r.wid.x = wx, r.wid.y = wy; in TransRect()
296 int wx, wy; in DrawLine() local
302 wx = tx - sx, wy = ty - sy; in DrawLine()
306 if (wy < 0) in DrawLine()
308 wy = -wy; in DrawLine()
316 wy += sy, sy = pc->clip.o.y; in DrawLine()
317 if (wy > pc->clip.t.y - sy) in DrawLine()
318 wy = pc->clip.t.y - sy; in DrawLine()
320 while (--wy >= 0) in DrawLine()
327 else if (!wy) in DrawLine()
346 if (wy < 0) in DrawLine()
348 wy = -wy; in DrawLine()
353 dx = wy - 1, dy = wx - 1; in DrawLine()
355 for (n = wx * wy; --n >= 0;) in DrawLine()
358 if (++dx >= wy) in DrawLine()
451 int wx = 8, wy = 8; in DrawTextLen() local
458 wy -= pc->clip.o.y - y; in DrawTextLen()
462 else if (wy > pc->clip.t.y - y) in DrawTextLen()
463 wy = pc->clip.t.y - y; in DrawTextLen()
464 for (; --wy >= 0; ++pf, dst += GX_LCD_SIZE_X) in DrawTextLen()