--- ray/src/gen/mkillum.c 2003/06/26 00:58:09 2.14 +++ ray/src/gen/mkillum.c 2003/10/22 02:06:34 2.18 @@ -1,5 +1,5 @@ #ifndef lint -static const char RCSid[] = "$Id: mkillum.c,v 2.14 2003/06/26 00:58:09 schorsch Exp $"; +static const char RCSid[] = "$Id: mkillum.c,v 2.18 2003/10/22 02:06:34 greg Exp $"; #endif /* * Make illum sources for optimizing rendering process @@ -7,9 +7,7 @@ static const char RCSid[] = "$Id: mkillum.c,v 2.14 200 #include #include -#include -#include "standard.h" #include "platform.h" #include "mkillum.h" @@ -26,7 +24,7 @@ static const char RCSid[] = "$Id: mkillum.c,v 2.14 200 /* rtrace command and defaults */ char *rtargv[64] = { "rtrace", "-dj", ".25", "-dr", "3", "-dv-", - "-ab", "2", "-ad", "256", "-as", "128", "-aa", ".15", }; + "-ab", "2", "-ad", "1024", "-as", "512", "-aa", ".1", }; int rtargc = 14; /* overriding rtrace options */ char *myrtopts[] = { "-I-", "-i-", "-ld-", "-ov", "-h-", @@ -139,12 +137,13 @@ int status; int rtstat; rtstat = close_process(&(rt.pd)); - if (status == 0) + if (status == 0) { if (rtstat < 0) error(WARNING, "unknown return status from rtrace process"); else status = rtstat; + } exit(status); }