ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/radiance/ray/src/rt/devtable.c
(Generate patch)

Comparing ray/src/rt/devtable.c (file contents):
Revision 1.10 by greg, Fri Mar 8 12:55:40 1991 UTC vs.
Revision 2.6 by greg, Mon Jun 30 19:04:29 2003 UTC

# Line 1 | Line 1
1 /* Copyright (c) 1988 Regents of the University of California */
2
1   #ifndef lint
2 < static char SCCSid[] = "$SunId$ LBL";
2 > static const char       RCSid[] = "$Id$";
3   #endif
6
4   /*
5   *  devtable.c - device table for rview.
9 *
10 *      3/30/88
6   */
7  
8 + #include "copyright.h"
9 +
10 + #include  <stdio.h>
11 +
12 + #include  "color.h"
13 +
14   #include  "driver.h"
15  
16   char  dev_default[] = "x11";
# Line 17 | Line 18 | char  dev_default[] = "x11";
18   extern struct driver  *x11_init();
19  
20   struct device  devtable[] = {                   /* supported devices */
21 <        {"aed", "AED 512 color graphics terminal", comm_init},
21 <        {"sun", "SunView color or greyscale screen", comm_init},
22 <        {"x10", "X10 color or greyscale display", comm_init},
21 >        {"slave", "Slave driver", slave_init},
22          {"x11", "X11 color or greyscale display", x11_init},
23 +        {"x11d", "X11 display using stdin/stdout", x11_init},
24          {0}                                     /* terminator */
25   };

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines