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

Comparing ray/src/rt/rpict.c (file contents):
Revision 2.104 by greg, Wed Aug 14 20:05:23 2024 UTC vs.
Revision 2.105 by greg, Fri Nov 15 20:47:42 2024 UTC

# Line 119 | Line 119 | time_t  tstart;                                /* starting time */
119  
120   int  hres, vres;                        /* resolution for this frame */
121  
122 + extern void     sskip_ray(RAY *r, double h, double v);
123 +
124   static VIEW     lastview;               /* the previous view input */
125  
126   static void report(int);
# Line 699 | Line 701 | pixvalue(              /* compute pixel value */
701                  return(0.0);
702  
703          rayorigin(&thisray, PRIMARY, NULL, NULL);
704 <
704 > #ifdef SSKIPOPT
705 >        sskip_ray(&thisray, hpos, vpos);        /* source skip hack */
706 > #endif
707          rayvalue(&thisray);                     /* trace ray */
708                                                  /* -> color */
709          scolor_out(col, out_prims, thisray.rcol);

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines