ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/radiance/ray/src/hd/rhdriver.h
(Generate patch)

Comparing ray/src/hd/rhdriver.h (file contents):
Revision 3.17 by gwlarson, Thu Dec 10 10:45:55 1998 UTC vs.
Revision 3.21 by greg, Sat Feb 22 02:07:25 2003 UTC

# Line 1 | Line 1
1 < /* Copyright (c) 1998 Silicon Graphics, Inc. */
2 <
3 < /* SCCSid "$SunId$ SGI" */
4 <
1 > /* RCSid: $Id$ */
2   /*
3   * Header file for holodeck device driver routines.
4   */
# Line 13 | Line 10 | extern struct driver {
10          VIEW    v;              /* base view parameters */
11          int     hres, vres;     /* base view resolution */
12          int     ifd;            /* input file descriptor (for select) */
13 +        int     firstuse;       /* non-zero if driver can't recycle samples */
14          int     inpready;       /* number of unprocessed input events */
15   } odev;                 /* our open device */
16  
# Line 132 | Line 130 | views.  The zeroeth auxiliary view is the base view it
130  
131  
132   void
133 + dev_section(gf, pf)     : add geometry and ports for rendering
134 + char    *gf;            : geometry file name
135 + char    *pf;            : portal file name(s)
136 +
137 + Add the given geometry file to the list of geometry to render for
138 + intermediate views if direct geometry rendering is available.  The
139 + second argument gives the name(s) of any portal geometry files
140 + associated with this section.  Multiple portal file names are separated
141 + by spaces.  A single octree file will be given for the geometry, ending
142 + in the ".oct" suffix.  Portal files will be given as zero or more
143 + Radiance scene description file names.  If no portals are given for
144 + this section, the string may be NULL.  The character strings are
145 + guaranteed to be static (or permanently allocated) such that they may
146 + be safely stored as a pointer.  The same pointers or file lists may be
147 + (and often are) given repeatedly.  If a given geometry file does not
148 + exist, the call should be silently ignored.  If gf is NULL, then the
149 + last section has been given, and the display can be updated with the
150 + new information.
151 +
152 +
153 + void
154   dev_close()             : close the display
155  
156   Close the display device and free up resources in preparation for exit.
# Line 142 | Line 161 | Set odev.v.type=0 and odev.hres=odev.vres=0 when done.
161  
162  
163   extern VIEW     *dev_auxview();
164 +
165 + extern int2     *beam_view();

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines