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

Comparing ray/src/rt/ambient.c (file contents):
Revision 2.52 by schorsch, Mon Jun 30 14:59:12 2003 UTC vs.
Revision 2.55 by greg, Mon Oct 20 16:01:55 2003 UTC

# Line 158 | Line 158 | setambient()                           /* initialize calculation */
158                  }
159                                                  /* align file pointer */
160                  pos += (long)nambvals*AMBVALSIZ;
161 <                flen = lseek(fileno(ambfp), (off_t)0L, 2);
161 >                flen = lseek(fileno(ambfp), (off_t)0, SEEK_END);
162                  if (flen != pos) {
163                          sprintf(errmsg,
164                          "ignoring last %ld values in ambient file (corrupted)",
# Line 280 | Line 280 | FVECT  nrm;
280                  return;
281   dumbamb:                                        /* return global value */
282          copycolor(acol, ambval);
283 <        if (ambvwt <= 0 | navsum == 0)
283 >        if ((ambvwt <= 0) | (navsum == 0))
284                  return;
285          l = bright(ambval);                     /* average in computations */
286          if (l > FTINY) {
# Line 529 | Line 529 | register AMBVAL  *aval;
529  
530          if ((av = newambval()) == NULL)
531                  error(SYSTEM, "out of memory in avstore");
532 <        copystruct(av, aval);
532 >        *av = *aval;
533          av->latick = ambclock;
534          av->next = NULL;
535          nambvals++;
# Line 741 | Line 741 | int    always;
741                  if (avlist2 != NULL)
742                          free((void *)avlist2);
743                  if (always) {           /* rebuild without sorting */
744 <                        copystruct(&oldatrunk, &atrunk);
744 >                        oldatrunk = atrunk;
745                          atrunk.alist = NULL;
746                          atrunk.kid = NULL;
747                          unloadatree(&oldatrunk, avinsert);
# Line 772 | Line 772 | int    always;
772                          if (avlist1[i].p == NULL)
773                                  continue;
774                          tap = avlist2[i];
775 <                        copystruct(&tav, tap);
775 >                        tav = *tap;
776                          for (j = i; (pnext = avlist1[j].p) != tap;
777                                          j = avlmemi(pnext)) {
778 <                                copystruct(avlist2[j], pnext);
778 >                                *(avlist2[j]) = *pnext;
779                                  avinsert(avlist2[j]);
780                                  avlist1[j].p = NULL;
781                          }
782 <                        copystruct(avlist2[j], &tav);
782 >                        *(avlist2[j]) = tav;
783                          avinsert(avlist2[j]);
784                          avlist1[j].p = NULL;
785                  }
# Line 829 | Line 829 | ambsync()                      /* synchronize ambient file */
829                                  /* gain exclusive access */
830          aflock(F_WRLCK);
831                                  /* see if file has grown */
832 <        if ((flen = lseek(fileno(ambfp), (off_t)0L, 2)) < 0)
832 >        if ((flen = lseek(fileno(ambfp), (off_t)0, SEEK_END)) < 0)
833                  goto seekerr;
834 <        if (n = flen - lastpos) {               /* file has grown */
834 >        if ( (n = flen - lastpos) ) {           /* file has grown */
835                  if (ambinp == NULL) {           /* use duplicate filedes */
836                          ambinp = fdopen(dup(fileno(ambfp)), "r");
837                          if (ambinp == NULL)
# Line 852 | Line 852 | ambsync()                      /* synchronize ambient file */
852                  }
853                  /*** seek always as safety measure
854                  if (n) ***/                     /* alignment */
855 <                        if (lseek(fileno(ambfp), (off_t)(flen-n), 0) < 0)
855 >                        if (lseek(fileno(ambfp), (off_t)(flen-n), SEEK_SET) < 0)
856                                  goto seekerr;
857          }
858   #ifdef  DEBUG
# Line 865 | Line 865 | ambsync()                      /* synchronize ambient file */
865   #endif
866   syncend:
867          n = fflush(ambfp);                      /* calls write() at last */
868 <        if ((lastpos = lseek(fileno(ambfp), (off_t)0L, 1)) < 0)
868 >        if ((lastpos = lseek(fileno(ambfp), (off_t)0, SEEK_CUR)) < 0)
869                  goto seekerr;
870          aflock(F_UNLCK);                        /* release file */
871          nunflshed = 0;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines