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

Comparing ray/src/rt/rv3.c (file contents):
Revision 2.24 by greg, Fri Aug 22 17:39:26 2008 UTC vs.
Revision 2.26 by greg, Fri Aug 29 05:46:03 2008 UTC

# Line 146 | Line 146 | greyof(                                /* convert color to greyscale */
146          return(gcol);
147   }
148  
149 + static void
150 + recolor(                                        /* recolor the given node */
151 +        PNODE *p
152 + )
153 + {
154 +        while (p->kid != NULL) {                /* need to propogate down */
155 +                int  mx = (p->xmin + p->xmax) >> 1;
156 +                int  my = (p->ymin + p->ymax) >> 1;
157 +                int  ki;
158 +                if (p->x >= mx)
159 +                        ki = (p->y >= my) ? UR : DR;
160 +                else
161 +                        ki = (p->y >= my) ? UL : DL;
162 +                pcopy(p, p->kid+ki);
163 +                p = p->kid + ki;
164 +        }
165  
166 +        (*dev->paintr)(greyscale?greyof(p->v):p->v,
167 +                        p->xmin, p->ymin, p->xmax, p->ymax);
168 + }
169 +
170   int
171   paint(                  /* compute and paint a rectangle */
172          PNODE  *p
# Line 186 | Line 206 | paint(                 /* compute and paint a rectangle */
206          copycolor(p->v, thisray.rcol);
207          scalecolor(p->v, exposure);
208  
209 <        (*dev->paintr)(greyscale?greyof(p->v):p->v,
190 <                        p->xmin, p->ymin, p->xmax, p->ymax);
209 >        recolor(p);                             /* paint it */
210  
211          if (ambounce <= 0)                      /* shall we check for input? */
212                  flushintvl = ray_pnprocs*WFLUSH;
# Line 216 | Line 235 | waitrays(void)                                 /* finish up pending rays */
235                  PNODE  *p = (PNODE *)raydone.rno;
236                  copycolor(p->v, raydone.rcol);
237                  scalecolor(p->v, exposure);
238 <                (*dev->paintr)(greyscale?greyof(p->v):p->v,
220 <                                p->xmin, p->ymin, p->xmax, p->ymax);
238 >                recolor(p);
239                  nwaited++;
240          }
241          if (rval < 0)

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines