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

Comparing ray/src/px/pcond2.c (file contents):
Revision 3.3 by greg, Fri Oct 4 18:34:57 1996 UTC vs.
Revision 3.6 by greg, Thu Jan 30 17:06:27 1997 UTC

# Line 60 | Line 60 | COLOR *
60   nextscan()                              /* read and condition next scanline */
61   {
62          if (nread >= numscans(&inpres)) {
63 < #ifdef DEBUG
64 <                fputs("done\n", stderr);
65 < #endif
66 <                return(NULL);
63 >                free((char *)scanbuf);
64 >                return(scanbuf = NULL);
65          }
66          if (what2do&DO_ACUITY)
67                  acuscan(scanbuf, nread);
# Line 99 | Line 97 | firstscan()                            /* return first processed scanline */
97                          comprgb2rgbmat(mbcond.cmat, inprims, outprims);
98                  else
99                          compxyz2rgbmat(mbcond.cmat, outprims);
100 <        if (what2do&DO_ACUITY) {
103 < #ifdef DEBUG
104 <                fprintf(stderr, "%s: initializing acuity sampling...",
105 <                                progname);
106 < #endif
100 >        if (what2do&DO_ACUITY)
101                  initacuity();
108 #ifdef DEBUG
109                fprintf(stderr, "done\n");
110 #endif
111        }
102          scanbuf = (COLOR *)malloc(scanlen(&inpres)*sizeof(COLOR));
103          if (scanbuf == NULL)
104                  syserror("malloc");
105          nread = 0;
116 #ifdef DEBUG
117        fprintf(stderr, "%s: processing image...", progname);
118 #endif
106          return(nextscan());
107   }
108  
# Line 153 | Line 140 | register struct mbc    *mb;
140          register int    i, j;
141  
142          while (len--) {
143 +                colortrans(sl[0], mb->cmat, sl[0]);
144                  for (i = 0; i < 3; i++) {
145                          d = colval(sl[0],i);
146                          for (j = 0; j < 4 && mb->xa[i][j+1] <= d; j++)
# Line 161 | Line 149 | register struct mbc    *mb;
149                                          (d - mb->xa[i][j])*mb->ya[i][j+1] ) /
150                                          (mb->xa[i][j+1] - mb->xa[i][j]);
151                  }
164                colortrans(sl[0], mb->cmat, sl[0]);
152                  sl++;
153          }
154   }
# Line 229 | Line 216 | register struct mbc    *mb;
216                          inpflags |= 040;
217                  else if (!(inpflags & 0100) &&
218                                  sscanf(buf,
219 <                                "ro = %f*rn + %f*gn + %f*bn",
219 >                                "r = %f*r1 + %f*g1 + %f*b1",
220                                  &mb->cmat[0][0], &mb->cmat[0][1],
221                                  &mb->cmat[0][2]) == 3)
222                          inpflags |= 0100;
223                  else if (!(inpflags & 0200) &&
224                                  sscanf(buf,
225 <                                "go = %f*rn + %f*gn + %f*bn",
225 >                                "g = %f*r1 + %f*g1 + %f*b1",
226                                  &mb->cmat[1][0], &mb->cmat[1][1],
227                                  &mb->cmat[1][2]) == 3)
228                          inpflags |= 0200;
229                  else if (!(inpflags & 0400) &&
230                                  sscanf(buf,
231 <                                "bo = %f*rn + %f*gn + %f*bn",
231 >                                "b = %f*r1 + %f*g1 + %f*b1",
232                                  &mb->cmat[2][0], &mb->cmat[2][1],
233                                  &mb->cmat[2][2]) == 3)
234                          inpflags |= 0400;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines