ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/radiance/ray/src/rt/pmaptype.c
Revision: 2.3
Committed: Tue Aug 18 18:45:55 2015 UTC (8 years, 9 months ago) by greg
Content type: text/plain
Branch: MAIN
Changes since 2.2: +4 -1 lines
Log Message:
Added missing RCSid forgotten during initial check-in

File Contents

# Content
1 #ifndef lint
2 static const char RCSid[] = "$Id$";
3 #endif
4 /*
5 ==================================================================
6 Photon map types and corresponding file format strings
7
8 Roland Schregle (roland.schregle@{hslu.ch, gmail.com})
9 (c) Fraunhofer Institute for Solar Energy Systems,
10 (c) Lucerne University of Applied Sciences and Arts,
11 supported by the Swiss National Science Foundation (SNSF, #147053)
12 ==================================================================
13
14 $Id: pmaptype.c,v 2.2 2015/05/08 13:20:23 rschregle Exp $
15 */
16
17
18 #include "pmaptype.h"
19
20
21 /* Format strings for photon map files corresponding to PhotonMapType */
22 const char *pmapFormat [NUM_PMAP_TYPES] = {
23 "Radiance_Global_Photon_Map", "Radiance_PreComp_Photon_Map",
24 "Radiance_Caustic_Photon_Map", "Radiance_Volume_Photon_Map",
25 "Radiance_Direct_Photon_Map", "Radiance_Contrib_Photon_Map"
26 };
27
28 /* Photon map names per type */
29 const char *pmapName [NUM_PMAP_TYPES] = {
30 "global", "precomp", "caustic", "volume", "direct", "contrib"
31 };