ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/radiance/ray/src/rt/devtable.c
Revision: 1.8
Committed: Wed Oct 31 14:07:07 1990 UTC (33 years, 6 months ago) by greg
Content type: text/plain
Branch: MAIN
Changes since 1.7: +4 -4 lines
Log Message:
changed driver names

File Contents

# User Rev Content
1 greg 1.1 /* Copyright (c) 1988 Regents of the University of California */
2    
3     #ifndef lint
4     static char SCCSid[] = "$SunId$ LBL";
5     #endif
6    
7     /*
8     * devtable.c - device table for rview.
9     *
10     * 3/30/88
11     */
12    
13     #include "driver.h"
14    
15 greg 1.8 char dev_default[] = "x10";
16 greg 1.6
17 greg 1.7 extern struct driver *aed_init(), *x_init(), *nws_init();
18 greg 1.1
19     struct device devtable[] = { /* supported devices */
20     {"aed", "AED 512 color graphics terminal", aed_init},
21 greg 1.7 {"news", "NeWS color or greyscale display", nws_init},
22 greg 1.8 {"sun", "SunView color or greyscale screen", comm_init},
23     {"x10", "X10 color or greyscale display", x_init},
24     {"x11", "X11 color or greyscale display", comm_init},
25 greg 1.1 {0} /* terminator */
26     };