ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/radiance/ray/src/rt/devtable.c
Revision: 2.7
Committed: Tue Mar 30 16:13:01 2004 UTC (20 years ago) by schorsch
Content type: text/plain
Branch: MAIN
CVS Tags: rad3R7P2, rad3R7P1, rad4R0, rad3R6, rad3R6P1, rad3R8, rad3R9
Changes since 2.6: +2 -3 lines
Log Message:
Continued ANSIfication. There are only bits and pieces left now.

File Contents

# Content
1 #ifndef lint
2 static const char RCSid[] = "$Id: devtable.c,v 2.6 2003/06/30 19:04:29 greg Exp $";
3 #endif
4 /*
5 * devtable.c - device table for rview.
6 */
7
8 #include "copyright.h"
9
10 #include <stdio.h>
11
12 #include "color.h"
13 #include "driver.h"
14
15 char dev_default[] = "x11";
16
17 extern dr_initf_t x11_init; /* XXX this should be in a seperate header file */
18
19 struct device devtable[] = { /* supported devices */
20 {"slave", "Slave driver", slave_init},
21 {"x11", "X11 color or greyscale display", x11_init},
22 {"x11d", "X11 display using stdin/stdout", x11_init},
23 {0} /* terminator */
24 };