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

Comparing ray/src/hd/rhd_qtree.h (file contents):
Revision 3.3 by gregl, Fri Nov 21 13:35:58 1997 UTC vs.
Revision 3.11 by gwlarson, Mon Aug 17 17:59:59 1998 UTC

# Line 1 | Line 1
1 < /* Copyright (c) 1997 Silicon Graphics, Inc. */
1 > /* Copyright (c) 1998 Silicon Graphics, Inc. */
2  
3   /* SCCSid "$SunId$ SGI" */
4  
# Line 6 | Line 6
6   * Quadtree data structures for holodeck display drivers.
7   */
8  
9 + #include "color.h"
10   #include "tonemap.h"
11   #include "rhdriver.h"
12 <                                /* quantity of leaves to free at a time */
12 < #ifndef LFREEPCT
13 < #define LFREEPCT        15
14 < #endif
15 <                                /* child ordering */
12 >
13   #define DL              0               /* down left */
14   #define DR              1               /* down right */
15   #define UL              2               /* up left */
# Line 37 | Line 34 | typedef struct rtree {
34  
35   extern struct rleaves {
36          float           (*wp)[3];       /* world intersection point array */
37 +        int4            *wd;            /* world direction array */
38          TMbright        *brt;           /* encoded brightness array */
39          BYTE            (*chr)[3];      /* encoded chrominance array */
40          BYTE            (*rgb)[3];      /* tone-mapped color array */
# Line 46 | Line 44 | extern struct rleaves {
44          char            *base;          /* base of allocated memory */
45   }       qtL;                    /* our pile of leaves */
46  
47 + #define is_stump(t)     (!((t)->flgs & (BR_ANY|LF_ANY)))
48 +
49   extern RTREE    qtrunk;         /* trunk of quadtree */
50   extern double   qtDepthEps;     /* epsilon to compare depths (z fraction) */
51   extern int      qtMinNodesiz;   /* minimum node dimension (pixels) */
52  
53 + extern int      rayqleft;       /* number of rays to queue before flush */
54  
55 < /************************************************************************
56 < * These driver support routines implement the dev_value() call, but
56 < * require the following callbacks:
57 <
58 < dev_paintr(rgb, x0, y0, x1, y1) : paint a rectangle
59 < BYTE    rgb[3];                 : rectangle color
60 < int     x0, y0, x1, y1;         : rectangle boundaries
61 <
62 < Draws an open rectangle between [x0,x1) and [y0,y1) with the color rgb.
63 < This function is called many times by qtUpdate(), qtRedraw() and qtReplant().
64 <
65 < ************************************************************************/
55 > extern int4     encodedir();
56 > extern double   fdir2diff(), dir2diff();

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines