ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/radiance/ray/src/rt/pmaptype.c
Revision: 2.4
Committed: Tue Sep 1 16:27:53 2015 UTC (8 years, 8 months ago) by greg
Content type: text/plain
Branch: MAIN
CVS Tags: rad5R0
Changes since 2.3: +2 -3 lines
Log Message:
Removed redundant $Id: in file

File Contents

# Content
1 #ifndef lint
2 static const char RCSid[] = "$Id: pmaptype.c,v 2.3 2015/08/18 18:45:55 greg Exp $";
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 */
15
16
17 #include "pmaptype.h"
18
19
20 /* Format strings for photon map files corresponding to PhotonMapType */
21 const char *pmapFormat [NUM_PMAP_TYPES] = {
22 "Radiance_Global_Photon_Map", "Radiance_PreComp_Photon_Map",
23 "Radiance_Caustic_Photon_Map", "Radiance_Volume_Photon_Map",
24 "Radiance_Direct_Photon_Map", "Radiance_Contrib_Photon_Map"
25 };
26
27 /* Photon map names per type */
28 const char *pmapName [NUM_PMAP_TYPES] = {
29 "global", "precomp", "caustic", "volume", "direct", "contrib"
30 };