ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/radiance/ray/src/rt/devtable.c
Revision: 2.3
Committed: Mon Sep 12 15:47:17 1994 UTC (29 years, 7 months ago) by greg
Content type: text/plain
Branch: MAIN
Changes since 2.2: +2 -3 lines
Log Message:
added "x11d" driver for using stdin & stdout instead of command line

File Contents

# Content
1 /* Copyright (c) 1991 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 char dev_default[] = "x11";
16
17 extern struct driver *x11_init();
18
19 struct device devtable[] = { /* supported devices */
20 {"slave", "Slave driver", comm_init},
21 {"x11", "X11 color or greyscale display", x11_init},
22 {"x11d", "X11 display using stdin/stdout", x11_init},
23 {0} /* terminator */
24 };