ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/radiance/ray/src/px/x11raster.c
(Generate patch)

Comparing ray/src/px/x11raster.c (file contents):
Revision 1.2 by greg, Thu Mar 1 18:13:34 1990 UTC vs.
Revision 2.7 by greg, Mon Oct 12 14:52:19 1992 UTC

# Line 14 | Line 14 | static char SCCSid[] = "$SunId$ LBL";
14   #include <X11/Xlib.h>
15   #include <X11/Xutil.h>
16  
17 + #include "color.h"
18   #include "x11raster.h"
19  
20  
21   XRASTER *
22 < make_raster(disp, scrn, depth, data, width, height, bm_pad)
22 > make_raster(disp, vis, npixbits, data, width, height, bm_pad)
23   Display *disp;
24 < int     scrn;
25 < int     depth;
24 > XVisualInfo     *vis;
25 > int     npixbits;
26   char    *data;
27   int     width, height;
28   int     bm_pad;
29   {
30 +        static long     swaptest = 1;
31          register XRASTER        *xr;
32 <        XVisualInfo     ourvinfo;
31 <                                                /* Pick appropriate Visual */
32 <        if (depth == 1) {
33 <                ourvinfo.visual = DefaultVisual(disp,scrn);
34 <        } else if (depth == 8) {
35 <                if (!XMatchVisualInfo(disp,scrn,8,PseudoColor,&ourvinfo))
36 <                        return(NULL);
37 <        } else if (depth > 12) {
38 <                if (!XMatchVisualInfo(disp,scrn,24,TrueColor,&ourvinfo))
39 <                        return(NULL);
40 <        } else
41 <                return(NULL);
32 >
33          if ((xr = (XRASTER *)calloc(1, sizeof(XRASTER))) == NULL)
34                  return(NULL);
35          xr->disp = disp;
36 <        xr->screen = scrn;
37 <        xr->visual = ourvinfo.visual;
38 <        xr->image = XCreateImage(disp,ourvinfo.visual,depth,
39 <                        ZPixmap,0,data,width,height,bm_pad,0);
40 <        xr->gc = XCreateGC(disp, RootWindow(disp,scrn), 0, 0);
41 <        XSetState(disp, xr->gc, BlackPixel(disp,scrn), WhitePixel(disp,scrn),
42 <                        GXcopy, AllPlanes);
36 >        xr->screen = vis->screen;
37 >        xr->visual = vis->visual;
38 >        if (npixbits == 1)
39 >                xr->image = XCreateImage(disp,vis->visual,1,
40 >                                XYBitmap,0,data,width,height,bm_pad,0);
41 >        else
42 >                xr->image = XCreateImage(disp,vis->visual,vis->depth,
43 >                                ZPixmap,0,data,width,height,bm_pad,0);
44 >        xr->image->bitmap_bit_order = MSBFirst;
45 >        xr->image->bitmap_unit = bm_pad;
46 >        xr->image->byte_order = *(char *)&swaptest ? LSBFirst : MSBFirst;
47 >        if (vis->depth >= 24 && (xr->image->red_mask != 0xff ||
48 >                        xr->image->green_mask != 0xff00 ||
49 >                        xr->image->blue_mask != 0xff0000) &&
50 >                        (xr->image->red_mask != 0xff0000 ||
51 >                        xr->image->green_mask != 0xff00 ||
52 >                        xr->image->blue_mask != 0xff)) {
53 >                xr->image->red_mask = 0xff;
54 >                xr->image->green_mask = 0xff00;
55 >                xr->image->blue_mask = 0xff0000;
56 >        }
57 >        xr->gc = 0;
58          return(xr);
59   }
60  
61  
62   int
63 < init_rcolors(xr, rmap, gmap, bmap)              /* initialize colors */
63 > init_rcolors(xr, cmap)                  /* initialize colors */
64   register XRASTER        *xr;
65 < unsigned char   rmap[256], gmap[256], bmap[256];
65 > BYTE    cmap[][3];
66   {
67          register unsigned char  *p;
68          register int    i;
69  
70 <        if (xr->image->depth != 8 || xr->ncolors != 0)
70 >        if (xr->image->depth > 8 | xr->ncolors != 0)
71                  return(xr->ncolors);
72          xr->pmap = (short *)malloc(256*sizeof(short));
73          if (xr->pmap == NULL)
# Line 75 | Line 81 | unsigned char  rmap[256], gmap[256], bmap[256];
81                          i = xr->image->width*xr->image->height;
82                          i--; p++)
83                  if (xr->pmap[*p] == -1) {
84 <                        xr->cdefs[xr->ncolors].red = rmap[*p] << 8;
85 <                        xr->cdefs[xr->ncolors].green = gmap[*p] << 8;
86 <                        xr->cdefs[xr->ncolors].blue = bmap[*p] << 8;
84 >                        xr->cdefs[xr->ncolors].red = cmap[*p][RED] << 8;
85 >                        xr->cdefs[xr->ncolors].green = cmap[*p][GRN] << 8;
86 >                        xr->cdefs[xr->ncolors].blue = cmap[*p][BLU] << 8;
87                          xr->cdefs[xr->ncolors].pixel = *p;
88                          xr->cdefs[xr->ncolors].flags = DoRed|DoGreen|DoBlue;
89                          xr->pmap[*p] = xr->ncolors++;
# Line 90 | Line 96 | unsigned char  rmap[256], gmap[256], bmap[256];
96   }
97  
98  
99 + Colormap
100 + newcmap(disp, scrn, w, vis)             /* get colormap and fix b & w */
101 + Display *disp;
102 + int     scrn;
103 + Window  w;
104 + Visual  *vis;
105 + {
106 +        XColor  thiscolor;
107 +        unsigned long   *pixels;
108 +        Colormap        cmap;
109 +        int     n;
110 +        register int    i, j;
111 +
112 +        cmap = XCreateColormap(disp, w, vis, AllocNone);
113 +        if (cmap == 0)
114 +                return(0);
115 +        pixels=(unsigned long *)malloc(vis->map_entries*sizeof(unsigned long));
116 +        if (pixels == NULL)
117 +                return(0);
118 +        for (n = vis->map_entries; n > 0; n--)
119 +                if (XAllocColorCells(disp, cmap, 0, NULL, 0, pixels, n) != 0)
120 +                        break;
121 +        if (n == 0)
122 +                return(0);
123 +                                        /* reset black and white */
124 +        for (i = 0; i < n; i++) {
125 +                if (pixels[i] != BlackPixel(disp,scrn)
126 +                                && pixels[i] != WhitePixel(disp,scrn))
127 +                        continue;
128 +                thiscolor.pixel = pixels[i];
129 +                thiscolor.flags = DoRed|DoGreen|DoBlue;
130 +                XQueryColor(disp, DefaultColormap(disp,scrn), &thiscolor);
131 +                XStoreColor(disp, cmap, &thiscolor);
132 +                for (j = i; j+1 < n; j++)
133 +                        pixels[j] = pixels[j+1];
134 +                n--;
135 +                i--;
136 +        }
137 +        XFreeColors(disp, cmap, pixels, n, 0);
138 +        free((char *)pixels);
139 +        return(cmap);
140 + }
141 +
142 +
143   unsigned long *
144   map_rcolors(xr, w)                              /* get and assign pixels */
145   register XRASTER        *xr;
# Line 97 | Line 147 | Window w;
147   {
148          register int    i;
149          register unsigned char  *p;
100        int     j;
150  
151 <        if (xr->ncolors == 0 || xr->image->depth != 8)
151 >        if (xr->ncolors == 0 || xr->image->depth > 8)
152                  return(NULL);
153          if (xr->pixels != NULL)
154                  return(xr->pixels);
155          xr->pixels = (unsigned long *)malloc(xr->ncolors*sizeof(unsigned long));
156          if (xr->pixels == NULL)
157                  return(NULL);
158 <        if (xr->visual == DefaultVisual(xr->disp, xr->screen)) {
158 >        if (xr->visual == DefaultVisual(xr->disp, xr->screen))
159                  xr->cmap = DefaultColormap(xr->disp, xr->screen);
160 <                goto gotmap;
161 <        }
162 < getmap:
163 <        xr->cmap = XCreateColormap(xr->disp, w, xr->visual, AllocNone);
115 < gotmap:
116 <        if (XAllocColorCells(xr->disp, xr->cmap, 0,
117 <                        &j, 0, xr->pixels, xr->ncolors) == 0) {
160 >        else
161 >                xr->cmap = newcmap(xr->disp, xr->screen, w, xr->visual);
162 >        while (XAllocColorCells(xr->disp, xr->cmap, 0,
163 >                        NULL, 0, xr->pixels, xr->ncolors) == 0)
164                  if (xr->cmap == DefaultColormap(xr->disp, xr->screen))
165 <                        goto getmap;
166 <                free((char *)xr->pixels);
167 <                xr->pixels = NULL;
168 <                return(NULL);
169 <        }
165 >                        xr->cmap = newcmap(xr->disp, xr->screen, w, xr->visual);
166 >                else {
167 >                        free((char *)xr->pixels);
168 >                        xr->pixels = NULL;
169 >                        return(NULL);
170 >                }
171          for (i = 0; i < xr->ncolors; i++)
172                  if (xr->pmap[xr->pixels[i]] == -1)
173                          break;
# Line 144 | Line 191 | gotmap:
191  
192  
193   Pixmap
194 < make_rpixmap(xr)                        /* make pixmap for raster */
194 > make_rpixmap(xr, w)                     /* make pixmap for raster */
195   register XRASTER        *xr;
196 + Window  w;
197   {
198 +        XWindowAttributes       xwattr;
199          Pixmap  pm;
200  
201          if (xr->pm != 0)
202                  return(xr->pm);
203 <        pm = XCreatePixmap(xr->disp, RootWindow(xr->disp, xr->screen),
204 <                        xr->image->width, xr->image->height, xr->image->depth);
203 >        XGetWindowAttributes(xr->disp, w, &xwattr);
204 >        pm = XCreatePixmap(xr->disp, w,
205 >                        xr->image->width, xr->image->height,
206 >                        xwattr.depth);
207          if (pm == 0)
208                  return(0);
209          put_raster(pm, 0, 0, xr);
# Line 183 | Line 234 | register XRASTER       *xr;
234          if (ysrc + height > xr->image->height)
235                  height = xr->image->height - ysrc;
236  
237 +        if (xr->gc == 0) {
238 +                xr->gc = XCreateGC(xr->disp, d, 0, 0);
239 +                XSetState(xr->disp, xr->gc, BlackPixel(xr->disp,xr->screen),
240 +                        WhitePixel(xr->disp,xr->screen), GXcopy, AllPlanes);
241 +        }
242          if (xr->pm == 0)
243                  XPutImage(xr->disp, d, xr->gc, xr->image, xsrc, ysrc,
244                                  xdst, ydst, width, height);
# Line 225 | Line 281 | register XRASTER       *xr;
281                  free((char *)xr->cdefs);
282          }
283          XDestroyImage(xr->image);
284 <        XFreeGC(xr->disp, xr->gc);
284 >        if (xr->gc != 0)
285 >                XFreeGC(xr->disp, xr->gc);
286          free((char *)xr);
287   }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines