ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/radiance/ray/src/rt/devtable.c
Revision: 1.2
Committed: Wed Mar 15 14:01:55 1989 UTC (35 years, 1 month ago) by greg
Content type: text/plain
Branch: MAIN
Changes since 1.1: +2 -0 lines
Log Message:
added conditional compile for Suns

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     extern struct driver *aed_init(), *x_init(), *sun_init();
16    
17     struct device devtable[] = { /* supported devices */
18     {"aed", "AED 512 color graphics terminal", aed_init},
19 greg 1.2 #ifdef sun
20 greg 1.1 {"sun", "SunView color or greyscale screen", sun_init},
21 greg 1.2 #endif
22 greg 1.1 {"X", "X-window color or greyscale display", x_init},
23     {0} /* terminator */
24     };