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

Comparing ray/src/util/ranimate.c (file contents):
Revision 2.12 by greg, Mon May 20 11:50:19 1996 UTC vs.
Revision 2.13 by greg, Tue May 21 14:27:19 1996 UTC

# Line 512 | Line 512 | animate()                      /* run animation */
512                                          /* figure # frames per batch */
513          d1 = mult*xres*mult*yres*4;             /* space for orig. picture */
514          if ((i=vint(INTERP)) || atoi(vval(MBLUR)))
515 <                d1 += mult*xres*mult*yres*4;    /* space for z-buffer */
515 >                d1 += mult*xres*mult*yres*sizeof(float);        /* Z-buffer */
516          d2 = xres*yres*4;                       /* space for final picture */
517          frames_batch = (i+1)*(vflt(DISKSPACE)*1048576.-d1)/(d1+i*d2);
518          if (frames_batch < i+2) {
# Line 841 | Line 841 | int    rvr;
841                          while (*arcnext) arcnext++;
842                          strcpy(arcnext, ".unf");
843                          arcnext += 4;
844 <                        if (usepinterp || vint(INTERP)) {       /* and z-buf */
844 >                        if (usepinterp || vint(INTERP)) {       /* and Z-buf */
845                                  *arcnext++ = ' ';
846                                  sprintf(arcnext, vval(BASENAME),
847                                                  frame-vint(INTERP)-1);

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines