ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/radiance/ray/src/rt/devtable.c
Revision: 2.5
Committed: Tue Feb 25 02:47:22 2003 UTC (21 years, 2 months ago) by greg
Content type: text/plain
Branch: MAIN
CVS Tags: rad3R5
Changes since 2.4: +1 -56 lines
Log Message:
Replaced inline copyright notice with #include "copyright.h"

File Contents

# User Rev Content
1 greg 1.1 #ifndef lint
2 greg 2.4 static const char RCSid[] = "$Id$";
3 greg 1.1 #endif
4     /*
5     * devtable.c - device table for rview.
6 greg 2.4 */
7    
8 greg 2.5 #include "copyright.h"
9 greg 1.1
10 greg 2.4 #include "color.h"
11    
12 greg 1.1 #include "driver.h"
13    
14 greg 1.9 char dev_default[] = "x11";
15 greg 1.6
16 greg 1.9 extern struct driver *x11_init();
17 greg 1.1
18     struct device devtable[] = { /* supported devices */
19 greg 2.4 {"slave", "Slave driver", slave_init},
20 greg 1.9 {"x11", "X11 color or greyscale display", x11_init},
21 greg 2.3 {"x11d", "X11 display using stdin/stdout", x11_init},
22 greg 1.1 {0} /* terminator */
23     };