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

Comparing ray/src/rt/m_bsdf.c (file contents):
Revision 2.54 by greg, Wed Aug 8 04:15:18 2018 UTC vs.
Revision 2.55 by greg, Tue Aug 21 23:31:01 2018 UTC

# Line 634 | Line 634 | m_bsdf(OBJREC *m, RAY *r)
634                                                  /* get BSDF data */
635          nd.sd = loadBSDF(m->oargs.sarg[hasthick]);
636                                                  /* early shadow check #2 */
637 <        if (r->crtype & SHADOW && (nd.sd->tf == NULL) & (nd.sd->tb == NULL))
637 >        if (r->crtype & SHADOW && (nd.sd->tf == NULL) & (nd.sd->tb == NULL)) {
638 >                SDfreeCache(nd.sd);
639                  return(1);
640 +        }
641                                                  /* diffuse reflectance */
642          if (hitfront) {
643                  cvt_sdcolor(nd.rdiff, &nd.sd->rLambFront);
# Line 691 | Line 693 | m_bsdf(OBJREC *m, RAY *r)
693          }
694          if (ec) {
695                  objerror(m, WARNING, "Illegal orientation vector");
696 +                SDfreeCache(nd.sd);
697                  return(1);
698          }
699          setcolor(nd.cthru, 0, 0, 0);            /* consider through component */
# Line 698 | Line 701 | m_bsdf(OBJREC *m, RAY *r)
701                  compute_through(&nd);
702                  if (r->crtype & SHADOW) {
703                          RAY     tr;             /* attempt to pass shadow ray */
704 +                        SDfreeCache(nd.sd);
705                          if (rayorigin(&tr, TRANS, r, nd.cthru) < 0)
706                                  return(1);      /* no through component */
707                          VCOPY(tr.rdir, r->rdir);

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines