XMesaDrawLine macro, not currently used

This commit is contained in:
Brian Paul 2006-03-30 14:20:26 +00:00
parent 87af12dbdc
commit 8ea3353ec3
2 changed files with 13 additions and 0 deletions

View file

@ -64,6 +64,7 @@ typedef XColor XMesaColor;
#define XMesaDrawPoint XDrawPoint
#define XMesaDrawPoints XDrawPoints
#define XMesaDrawLine XDrawLine
#define XMesaFillRectangle XFillRectangle
#define XMesaPutImage XPutImage
#define XMesaCopyArea XCopyArea

View file

@ -95,6 +95,18 @@ do { \
(*gc->ops->PolyPoint)(__b, __gc, __m, __n, __p); \
} while (0)
#define XMesaDrawLine(__d, __b, __gc, __x0, __y0, __x1, __y1) \
do { \
XMesaPoint __p[2]; \
(void) __d; \
__p[0].x = __x0; \
__p[0].y = __y0; \
__p[1].x = __x1; \
__p[1].y = __y1; \
ValidateGC(__b, __gc); \
(*gc->ops->PolyLines)(__b, __gc, CoordModeOrigin, 2, __p); \
} while (0)
#define XMesaFillRectangle(__d,__b,__gc,__x,__y,__w,__h) \
do { \
xRectangle __r[1]; \