1: #include <X/mit-copyright.h> 2: 3: /* $Header: XPixFill.c,v 10.4 86/02/01 15:38:05 tony Rel $ */ 4: /* Copyright Massachusetts Institute of Technology 1985 */ 5: 6: #include "XlibInternal.h" 7: XPixFill (w, x, y, width, height, pixel, clipmask, func, planes) 8: Window w; 9: int x, y; 10: int pixel; 11: int width, height; 12: Bitmap clipmask; 13: int func, planes; 14: { 15: register Display *dpy; 16: register XReq *req; 17: 18: GetReq(X_PixFill, w); 19: req->mask = planes; 20: req->func = func; 21: req->param.s[0] = height; 22: req->param.s[1] = width; 23: req->param.s[2] = x; 24: req->param.s[3] = y; 25: req->param.u[4] = pixel; 26: req->param.l[3] = clipmask; 27: }