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

Comparing ray/src/rt/source.c (file contents):
Revision 1.48 by greg, Mon Oct 28 08:08:19 1991 UTC vs.
Revision 2.3 by greg, Sun Apr 12 10:05:32 1992 UTC

# Line 41 | Line 41 | static int  maxcntr = 0;               /* size of contribution arra
41  
42   marksources()                   /* find and mark source objects */
43   {
44 +        int  foundsource = 0;
45          int  i;
46          register OBJREC  *o, *m;
47          register int  ns;
# Line 93 | Line 94 | marksources()                  /* find and mark source objects */
94                                  source[ns].sflags |= SSKIP;
95                          }
96                  }
97 +                if (!(source[ns].sflags & SSKIP))
98 +                        foundsource++;
99          }
100 <        if (nsources <= 0) {
100 >        if (!foundsource) {
101                  error(WARNING, "no light sources found");
102                  return;
103          }
# Line 261 | Line 264 | char  *p;                      /* data for f */
264                          l = m;
265                  }
266          }
267 +        if (ncnts == 0)
268 +                return;         /* no contributions! */
269                                                  /* accumulate tail */
270          for (sn = ncnts-1; sn > 0; sn--)
271                  cntord[sn-1].brt += cntord[sn].brt;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines