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

Comparing ray/src/rt/pmapamb.c (file contents):
Revision 2.1 by greg, Tue Feb 24 19:39:26 2015 UTC vs.
Revision 2.6 by greg, Tue Aug 18 18:45:55 2015 UTC

# Line 1 | Line 1
1 + #ifndef lint
2 + static const char RCSid[] = "$Id$";
3 + #endif
4   /*
5     ==================================================================
6     Photon map interface to RADIANCE ambient calculation
7  
8     Roland Schregle (roland.schregle@{hslu.ch, gmail.com})
9     (c) Fraunhofer Institute for Solar Energy Systems,
10 <       Lucerne University of Applied Sciences & Arts
10 >   (c) Lucerne University of Applied Sciences and Arts,
11 >   supported by the Swiss National Science Foundation (SNSF, #147053)
12     ==================================================================  
13    
14     $Id$
# Line 57 | Line 61 | int ambPmapCaustic (COLOR aval, RAY *r, int rdepth)
61     /* Handle precedence in case of multiple photon maps: contrib > caustic */
62     PhotonMap *pmap = contribPhotonMapping ? contribPmap : causticPmap;
63  
64 <   /* Get caustic photon density estimate only at primary rays */
65 <   if (pmap && !rdepth) {
64 >   /* Get caustic photon density estimate at primary rays or when
65 >    * filling in ambient rays that have no global photon map to use */
66 >   if (pmap && (!rdepth || !globalPmap & !contribPmap & !preCompPmap)) {
67        /* Temporarily factor ambient value into ray coefficient
68         * (required for contribution photon map) */
69        copycolor(rcoef, r -> rcoef);      

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines