Lines Matching refs:sy
52 void DrawStrokes(const PRCStrokes *strokes, int sx, int sy);
633 u16 sx, sy, ey, wx, wy; in DrawLine() local
644 sy = (u16)y1; in DrawLine()
651 sy = (u16)y2; in DrawLine()
656 point += sy * VRAM_LINE_SIZE + sx; in DrawLine()
657 if (sy <= ey) in DrawLine()
660 wy = (u16)(ey - sy); // Height in DrawLine()
702 wy = (u16)(sy - ey); // Height in DrawLine()
753 void DrawStrokes(const PRCStrokes *strokes, int sx, int sy) in DrawStrokes() argument
768 PutDot(sx + point->x, sy + point->y, 1); in DrawStrokes()
772 DrawLine(sx + prev.x, sy + prev.y, sx + point->x, sy + point->y, 1); in DrawStrokes()