Lines Matching refs:sy
50 void DrawStrokes(const PRCStrokes *strokes, int sx, int sy);
367 u16 sx, sy, ey, wx, wy; in DrawLine() local
378 sy = (u16)y1; in DrawLine()
385 sy = (u16)y2; in DrawLine()
390 point += sy * VRAM_LINE_SIZE + sx; in DrawLine()
391 if (sy <= ey) in DrawLine()
394 wy = (u16)(ey - sy); // Height in DrawLine()
436 wy = (u16)(sy - ey); // Height in DrawLine()
487 void DrawStrokes(const PRCStrokes *strokes, int sx, int sy) in DrawStrokes() argument
502 PutDot(sx + point->x, sy + point->y, 1); in DrawStrokes()
506 DrawLine(sx + prev.x, sy + prev.y, sx + point->x, sy + point->y, 1); in DrawStrokes()