--- ray/src/common/loadbsdf.c 2011/02/19 01:48:59 3.2 +++ ray/src/common/loadbsdf.c 2011/02/19 23:42:09 3.3 @@ -1,5 +1,5 @@ #ifndef lint -static const char RCSid[] = "$Id: loadbsdf.c,v 3.2 2011/02/19 01:48:59 greg Exp $"; +static const char RCSid[] = "$Id: loadbsdf.c,v 3.3 2011/02/19 23:42:09 greg Exp $"; #endif /* * Simple interface for loading BSDF, Radiance-specific search @@ -59,6 +59,7 @@ loadBSDF(char *fname) checkDF(sd->name, sd->rLambFront.cieY, sd->rf, "front reflection"); checkDF(sd->name, sd->rLambBack.cieY, sd->rb, "rear reflection"); checkDF(sd->name, sd->tLamb.cieY, sd->tf, "transmission"); +#if 0 fprintf(stderr, "Loaded BSDF '%s' (file \"%s\")\n", sd->name, pname); fprintf(stderr, "Front diffuse reflectance: %.1f%%\n", sd->rLambFront.cieY*100.); fprintf(stderr, "Back diffuse reflectance: %.1f%%\n", sd->rLambBack.cieY*100.); @@ -72,6 +73,7 @@ sd->rb->maxHemi*100.); if (sd->tf) fprintf(stderr, "Maximum direct hemispherical transmission: %.1f%%\n", sd->tf->maxHemi*100.); +#endif SDretainSet = SDretainAll; /* keep data in core */ return(sd); }