| 1 |
greg |
1.1 |
/* Copyright 1990 Regents of the University of California */
|
| 2 |
|
|
|
| 3 |
|
|
/* SCCSid "$SunId$ LBL" */
|
| 4 |
|
|
|
| 5 |
|
|
/*
|
| 6 |
|
|
* x11raster.h - header file for X routines using images.
|
| 7 |
|
|
*
|
| 8 |
|
|
* 3/1/90
|
| 9 |
|
|
*/
|
| 10 |
|
|
|
| 11 |
|
|
typedef struct {
|
| 12 |
|
|
Display *disp; /* the display */
|
| 13 |
|
|
int screen; /* the screen */
|
| 14 |
|
|
Visual *visual; /* pointer to visual used */
|
| 15 |
|
|
XImage *image; /* the X image */
|
| 16 |
|
|
GC gc; /* private graphics context */
|
| 17 |
|
|
int ncolors; /* number of colors */
|
| 18 |
|
|
XColor *cdefs; /* color definitions */
|
| 19 |
|
|
short *pmap; /* inverse pixel mapping */
|
| 20 |
|
|
unsigned long *pixels; /* allocated table entries */
|
| 21 |
|
|
Colormap cmap; /* installed color map */
|
| 22 |
|
|
Pixmap pm; /* storage on server side */
|
| 23 |
|
|
} XRASTER;
|
| 24 |
|
|
|
| 25 |
|
|
extern unsigned long *map_rcolors();
|
| 26 |
|
|
|
| 27 |
|
|
extern Pixmap make_rpixmap();
|
| 28 |
|
|
|
| 29 |
|
|
extern XRASTER *make_raster();
|
| 30 |
|
|
|
| 31 |
greg |
1.2 |
#define put_raster(d,xdst,ydst,xr) patch_raster(d,0,0,xdst,ydst, \
|
| 32 |
greg |
1.1 |
(xr)->image->width,(xr)->image->height,xr)
|