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.5 by greg, Fri Oct 20 13:53:58 1989 UTC vs.
Revision 1.7 by greg, Fri Oct 20 20:36:02 1989 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);
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 125 | 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);
139 <        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