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

Comparing ray/src/px/oki20c.c (file contents):
Revision 1.8 by greg, Fri Jan 26 08:17:33 1990 UTC vs.
Revision 1.10 by greg, Thu Apr 18 14:35:11 1991 UTC

# Line 24 | Line 24 | static char SCCSid[] = "$SunId$ LBL";
24  
25   #define  sub_add(sub)   (2-(sub))       /* map subtractive to additive pri. */
26  
27 + #ifdef  BSD
28 + #define  clearlbuf()    bzero((char *)lpat, sizeof(lpat))
29 + #else
30 + #define  clearlbuf()    (void)memset((char *)lpat, 0, sizeof(lpat))
31 + #endif
32  
33 + long  lpat[NCOLS][3];
34 +
35 +
36   main(argc, argv)
37   int  argc;
38   char  *argv[];
# Line 56 | Line 64 | char  *fname;
64                  return(-1);
65          }
66                                  /* discard header */
67 <        getheader(input, NULL);
67 >        if (checkheader(input, COLRFMT, NULL) < 0) {
68 >                fprintf(stderr, "%s: not a Radiance picture\n", fname);
69 >                return(-1);
70 >        }
71                                  /* get picture dimensions */
72          if (fgetresolu(&xres, &yres, input) != (YMAJOR|YDECR)) {
73                  fprintf(stderr, "%s: bad picture size\n", fname);
# Line 68 | Line 79 | char  *fname;
79          }
80                                  /* set line spacing (overlap for knitting) */
81          fputs("\0333\042", stdout);
82 +                                /* clear line buffer */
83 +        clearlbuf();
84                                  /* put out scanlines */
85          for (i = yres-1; i >= 0; i--) {
86                  if (freadcolrs(scanline, xres, input) < 0) {
# Line 91 | Line 104 | COLR  scan[];
104   int  len;
105   int  y;
106   {
94        static long  pat[NCOLS][3];
107          int  bpos;
108          register long  c;
109          register int  i, j;
# Line 100 | Line 112 | int  y;
112  
113                  for (j = 0; j < 3; j++)
114                          for (i = 0; i < len; i++)
115 <                                pat[i][j] |= (long)colbit(scan[i],i,j) << bpos;
115 >                                lpat[i][j] |= (long)colbit(scan[i],i,j) << bpos;
116  
117          } else {
118  
# Line 111 | Line 123 | int  y;
123                          putchar(len & 255);
124                          putchar(len >> 8);
125                          for (i = 0; i < len; i++) {
126 <                                c = pat[i][j] | colbit(scan[i],i,j);
126 >                                c = lpat[i][j] | colbit(scan[i],i,j);
127                                                          /* repeat this row */
128 <                                pat[i][j] = (c & 1) << 23;
128 >                                lpat[i][j] = (c & 1) << 23;
129                                  putchar(c>>16);
130                                  putchar(c>>8 & 255);
131                                  putchar(c & 255);

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines