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.61 by schorsch, Mon Jul 21 22:30:19 2003 UTC vs.
Revision 2.68 by greg, Sun Mar 28 16:31:14 2004 UTC

# Line 9 | Line 9 | static const char RCSid[] = "$Id";
9  
10   #include  "platform.h"
11   #include  "ray.h"
12 + #include  "paths.h"
13  
14   #include  <sys/types.h>
15  
# Line 28 | Line 29 | static const char RCSid[] = "$Id";
29   #include  "view.h"
30   #include  "random.h"
31   #include  "paths.h"
32 + #include  "rtmisc.h" /* myhostname() */
33  
34  
35   #define  RFTEMPLATE     "rfXXXXXX"
# Line 81 | Line 83 | double specjitter = 1.;                /* specular sampling jitter *
83  
84   int  backvis = 1;                       /* back face visibility */
85  
86 < int  maxdepth = 6;                      /* maximum recursion depth */
87 < double  minweight = 5e-3;               /* minimum ray weight */
86 > int  maxdepth = 7;                      /* maximum recursion depth */
87 > double  minweight = 4e-3;               /* minimum ray weight */
88  
89   char  *ambfile = NULL;                  /* ambient file name */
90   COLOR  ambval = BLKCOLOR;               /* ambient value */
91   int  ambvwt = 0;                        /* initial weight for ambient value */
92   double  ambacc = 0.2;                   /* ambient accuracy */
93 < int  ambres = 32;                       /* ambient resolution */
94 < int  ambdiv = 128;                      /* ambient divisions */
95 < int  ambssamp = 0;                      /* ambient super-samples */
93 > int  ambres = 64;                       /* ambient resolution */
94 > int  ambdiv = 512;                      /* ambient divisions */
95 > int  ambssamp = 128;                    /* ambient super-samples */
96   int  ambounce = 0;                      /* ambient bounces */
97   char  *amblist[128];                    /* ambient include/exclude list */
98   int  ambincl = -1;                      /* include == 1, exclude == 0 */
# Line 149 | Line 151 | int  code;
151   void
152   report()                /* report progress */
153   {
152        extern char  *myhostname();
154          double  u, s;
155   #ifdef BSD
156          struct rusage  rubuf;
# Line 243 | Line 244 | char  *pout, *zout, *prvr;
244                  setview(&ourview);
245                  prvr = fbuf;                    /* mark for renaming */
246          }
247 <        if (pout != NULL & prvr != NULL) {
247 >        if ((pout != NULL) & (prvr != NULL)) {
248                  sprintf(fbuf, pout, seq);
249                  if (!strcmp(prvr, fbuf)) {      /* rename */
250                          strcpy(fbuf2, fbuf);
# Line 296 | Line 297 | char  *pout, *zout, *prvr;
297                  }
298                  hres = hresolu; vres = vresolu; pa = pixaspect;
299                  if (prvr != NULL) {
300 <                        if (viewfile(prvr, &ourview, &rs) <= 0
300 <                                        || rs.rt != PIXSTANDARD) {
300 >                        if (viewfile(prvr, &ourview, &rs) <= 0) {
301                                  sprintf(errmsg,
302                          "cannot recover view parameters from \"%s\"", prvr);
303                                  error(WARNING, errmsg);
# Line 413 | Line 413 | char  *zfile, *oldfile;
413          if (i >= vres)
414                  goto alldone;
415          if (zfd != -1 && i > 0 &&
416 <                        lseek(zfd, (off_t)i*hres*sizeof(float), 0) < 0)
416 >                        lseek(zfd, (off_t)i*hres*sizeof(float), SEEK_SET) < 0)
417                  error(SYSTEM, "z-file seek error in render");
418          pctdone = 100.0*i/vres;
419          if (ralrm > 0)                  /* report init stats */

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines