1: #include <X/mit-copyright.h>
2:
3: /* $Header: XPixSet.c,v 10.4 86/02/01 15:38:09 tony Rel $ */
4: /* Copyright Massachusetts Institute of Technology 1985 */
5:
6: #include "XlibInternal.h"
7: XPixSet (w, x, y, width, height, pixel)
8: Window w;
9: int x, y;
10: int pixel;
11: int width, height;
12: {
13: register Display *dpy;
14: register XReq *req;
15:
16: GetReq(X_PixFill, w);
17: req->mask = ~0; /* all planes */
18: req->func = GXcopy;
19: req->param.s[0] = height;
20: req->param.s[1] = width;
21: req->param.s[2] = x;
22: req->param.s[3] = y;
23: req->param.s[4] = pixel;
24: req->param.l[3] = 0; /* no mask bitmap */
25: }
Defined functions
XPixSet
defined in line
7; used 27 times
- in /usr/src/new/X/XMenu/XMenuInternal.c line
890,
905-906(2),
912,
918,
924
- in /usr/src/new/X/Xlib/Xtextlib.c line
247,
280,
724
- in /usr/src/new/X/bitmap/bitmap.c line
750,
1168,
1193
- in /usr/src/new/X/hacks/maze/maze.c line
162,
301-308(6),
321
- in /usr/src/new/X/uwm/Menu.c line
50
- in /usr/src/new/X/xdvi/dv.c line
1196
- in /usr/src/new/X/xgedit/gx.c line
183,
388,
441
- in /usr/src/new/X/xnwm/wmsubs.c line
734
- in /usr/src/new/X/xnwm/xnwm.c line
842