Lines Matching refs:y
43 int y; member
135 void FillRect(int x, int y, int wx, int wy, RGB555 col);
136 void BlitRect(int x, int y, int wx, int wy, RGB555 * src, int stroke);
137 void TransRect(int x, int y, int wx, int wy, RGB555 * src, int stroke);
141 static inline void MoveTo(int x, int y) in MoveTo() argument
143 cur_pt.x = x, cur_pt.y = y; in MoveTo()
146 static inline void LineTo(int x, int y) in LineTo() argument
148 DrawLine(cur_pt.x, cur_pt.y, x, y, col_text); in LineTo()
149 MoveTo(x, y); in LineTo()
152 void DrawTextLen(int x, int y, const char *s, int n);
154 void DrawText(int x, int y, const char *s, ...);
156 static inline void DrawChar(int x, int y, char c) in DrawChar() argument
158 DrawTextLen(x, y, &c, 1); in DrawChar()