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

Comparing ray/src/util/rtcontrib.c (file contents):
Revision 1.56 by greg, Fri Jun 11 20:26:09 2010 UTC vs.
Revision 1.57 by greg, Sun Sep 26 15:44:00 2010 UTC

# Line 14 | Line 14 | static const char RCSid[] = "$Id$";
14   #include  "color.h"
15   #include  "resolu.h"
16   #include  "lookup.h"
17 + #include  "random.h"
18   #include  "calcomp.h"
19  
20   #ifndef MAXMODLIST
# Line 545 | Line 546 | init(int np)
546                  raysleft = 0;
547          if ((account = accumulate) > 0)
548                  raysleft *= accumulate;
549 <        waitflush = xres;
549 >        waitflush = (yres > 0) & (xres > 1) ? 0 : xres;
550          if (!recover)
551                  return;
552                                          /* recover previous values */
# Line 736 | Line 737 | printresolu(FILE *fout, int xr, int yr)
737   {
738          if ((xr > 0) & (yr > 0))        /* resolution string */
739                  fprtresolu(xr, yr, fout);
739        if (xres > 0)                   /* global flush flag */
740                fflush(fout);
740   }
741  
742   /* Get output stream pointer (open and write header if new and noopen==0) */
# Line 758 | Line 757 | getostream(const char *ospec, const char *mname, int b
757                          if (header)
758                                  printheader(stdout, NULL);
759                          printresolu(stdout, xres, yres);
760 +                        if (waitflush > 0)
761 +                                fflush(stdout);
762                          stdos.xr = xres; stdos.yr = yres;
763                          using_stdout = 1;
764                  }
# Line 826 | Line 827 | getostream(const char *ospec, const char *mname, int b
827                          if (outfmt == 'a')
828                                  putc('\n', sop->ofp);
829                  }
830 <                if (xres > 0)
830 >                if (waitflush > 0)
831                          fflush(sop->ofp);
832          }
833          sop->reclen += noopen;                  /* add to length if noopen */
# Line 956 | Line 957 | put_contrib(const DCOLOR cnt, FILE *fout)
957          default:
958                  error(INTERNAL, "botched output format");
959          }
960 +        if (waitflush < 0 && frandom() < 0.001)
961 +                fflush(fout);                   /* staggers writes */
962   }
963  
964   /* output ray tallies and clear for next accumulation */
# Line 993 | Line 996 | done_contrib(int navg)
996          if (using_stdout & (outfmt == 'a'))
997                  putc('\n', stdout);
998          if (!waitflush) {
999 <                waitflush = xres;
999 >                waitflush = (yres > 0) & (xres > 1) ? 0 : xres;
1000                  if (using_stdout)
1001                          fflush(stdout);
1002          }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines