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.3 by greg, Fri Oct 20 10:28:59 1989 UTC vs.
Revision 1.8 by greg, Fri Jan 26 08:17:33 1990 UTC

# Line 45 | Line 45 | char  *fname;
45   {
46          FILE  *input;
47          int  xres, yres;
48 <        COLOR  scanline[NCOLS];
48 >        COLR  scanline[NCOLS];
49          int  i;
50  
51          if (fname == NULL) {
# Line 70 | Line 70 | char  *fname;
70          fputs("\0333\042", stdout);
71                                  /* put out scanlines */
72          for (i = yres-1; i >= 0; i--) {
73 <                if (freadscan(scanline, xres, input) < 0) {
73 >                if (freadcolrs(scanline, xres, input) < 0) {
74                          fprintf(stderr, "%s: read error (y=%d)\n", fname, i);
75                          return(-1);
76                  }
77 +                normcolrs(scanline, xres, 0);
78                  plotscan(scanline, xres, i);
79          }
80                                  /* advance page */
# Line 86 | Line 87 | char  *fname;
87  
88  
89   plotscan(scan, len, y)                  /* plot a scanline */
90 < COLOR  scan[];
90 > COLR  scan[];
91   int  len;
92   int  y;
93   {
# Line 110 | Line 111 | int  y;
111                          putchar(len & 255);
112                          putchar(len >> 8);
113                          for (i = 0; i < len; i++) {
114 <                                if (y!=0 & i+j) {       /* knit bit */
115 <                                        c = pat[i][j];
116 <                                        pat[i][j] = colbit(scan[i],i,j) << 23;
116 <                                } else {
117 <                                        c = pat[i][j] | colbit(scan[i],i,j);
118 <                                        pat[i][j] = 0;
119 <                                }
114 >                                c = pat[i][j] | colbit(scan[i],i,j);
115 >                                                        /* repeat this row */
116 >                                pat[i][j] = (c & 1) << 23;
117                                  putchar(c>>16);
118                                  putchar(c>>8 & 255);
119                                  putchar(c & 255);
# Line 129 | Line 126 | int  y;
126  
127  
128   colbit(col, x, s)               /* determine bit value for primary at x */
129 < COLOR  col;
129 > COLR  col;
130   register int  x;
131   int  s;
132   {
133 <        static float  cerr[NCOLS][3];
134 <        static double  err[3];
135 <        double  b;
133 >        static int  cerr[NCOLS][3];
134 >        static int  err[3];
135 >        int  b;
136          register int  a, ison;
137  
138          a = sub_add(s);                 /* use additive primary */
139 <        b = colval(col,a);
143 <        if (b > 1.0) b = 1.0;
139 >        b = col[a];
140          err[a] += b + cerr[x][a];
141 <        ison = err[a] < 0.5;
142 <        if (!ison) err[a] -= 1.0;
143 <        cerr[x][a] = err[a] *= 0.5;
141 >        ison = err[a] < 128;
142 >        if (!ison) err[a] -= 256;
143 >        cerr[x][a] = err[a] /= 2;
144          return(ison);
145   }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines