Lines Matching refs:y2
13 Line(HDC hdc, LONG x1, LONG y1, LONG x2, LONG y2, COLORREF color, int thickness) in Line() argument
17 LineTo(hdc, x2, y2); in Line()
18 SetPixelV(hdc, x2, y2, color); in Line()
23 Rect(HDC hdc, LONG x1, LONG y1, LONG x2, LONG y2, COLORREF fg, COLORREF bg, int thickness, int sty… in Rect() argument
32 Rectangle(hdc, x1, y1, x2, y2); in Rect()
38 Ellp(HDC hdc, LONG x1, LONG y1, LONG x2, LONG y2, COLORREF fg, COLORREF bg, int thickness, int sty… in Ellp() argument
47 Ellipse(hdc, x1, y1, x2, y2); in Ellp()
53 RRect(HDC hdc, LONG x1, LONG y1, LONG x2, LONG y2, COLORREF fg, COLORREF bg, int thickness, int st… in RRect() argument
62 RoundRect(hdc, x1, y1, x2, y2, 16, 16); in RRect()
115 Erase(HDC hdc, LONG x1, LONG y1, LONG x2, LONG y2, COLORREF color, LONG radius) in Erase() argument
117 LONG b = max(1, max(labs(x2 - x1), labs(y2 - y1))); in Erase()
123 LONG cy = (y1 * (b - a) + y2 * a) / b; in Erase()
132 Replace(HDC hdc, LONG x1, LONG y1, LONG x2, LONG y2, COLORREF fg, COLORREF bg, LONG radius) in Replace() argument
134 LONG b = max(1, max(labs(x2 - x1), labs(y2 - y1))); in Replace()
139 LONG cy = (y1 * (b - a) + y2 * a) / b; in Replace()
166 Brush(HDC hdc, LONG x1, LONG y1, LONG x2, LONG y2, COLORREF color, LONG style, INT thickness) in Brush() argument
173 Line(hdc, x1, y1, x2, y2, color, thickness); in Brush()
177 LONG a, b = max(1, max(labs(x2 - x1), labs(y2 - y1))); in Brush()
185 (y1 * (b - a) + y2 * a) / b - (thickness / 2), in Brush()
187 (y1 * (b - a) + y2 * a) / b + (thickness / 2)); in Brush()
196 (y1 * (b - a) + y2 * a) / b - (thickness / 2), in Brush()
198 (y1 * (b - a) + y2 * a) / b + (thickness / 2)); in Brush()
220 { x2 + offsetBottom.x, y2 + offsetBottom.y }, in Brush()
221 { x2 + offsetTop.x, y2 + offsetTop.y }, in Brush()
233 RectSel(HDC hdc, LONG x1, LONG y1, LONG x2, LONG y2) in RectSel() argument
246 Rectangle(hdc, x1, y1, x2, y2); in RectSel()
254 Text(HDC hdc, LONG x1, LONG y1, LONG x2, LONG y2, COLORREF fg, COLORREF bg, LPCWSTR lpchText, HFONT… in Text() argument
258 CRect rc = { x1, y1, x2, y2 }; in Text()