home *** CD-ROM | disk | FTP | other *** search
- /* Copyright 1988 Regents of the University of California */
-
- /* SCCSid "@(#)pic.h 2.1 11/12/91 LBL" */
-
- /* the following three structures are used by ciq */
-
- typedef int colormap[3][256];
-
- typedef unsigned char pixel;
-
- typedef struct {
- pixel r,g,b;
- } rgbpixel;
-
- #define rgb_bright(p) (int)((77L*(p)->r+151L*(p)->g+28L*(p)->b)/256)
-
- /* image resolution */
- extern int xmax,ymax;
-