|
|
1.1 ! root 1: #include <X/mit-copyright.h> ! 2: ! 3: /* $Header: XDrawFilled.c,v 10.6 86/04/22 15:24:31 jg Rel $ */ ! 4: /* Copyright Massachusetts Institute of Technology 1985 */ ! 5: ! 6: #include "XlibInternal.h" ! 7: XDrawFilled (w, vlist, vcount, pixel, func, planes) ! 8: Window w; ! 9: int func; ! 10: int pixel, planes, vcount; ! 11: Vertex *vlist; ! 12: { ! 13: register Display *dpy; ! 14: register XReq *req; ! 15: int nbytes; ! 16: ! 17: GetReq(X_DrawFilled, w); ! 18: dpy->lastdraw = (caddr_t) req; ! 19: req->func = func; ! 20: req->mask = planes; ! 21: req->params0 = vcount; ! 22: req->paramu1 = pixel; ! 23: req->param.l[1] = 0; /* means "no tile--use pixel" */ ! 24: nbytes = vcount*psizeof(Vertex); ! 25: PackData(dpy, vlist, nbytes); ! 26: } ! 27:
This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.