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.1 by gregl, Wed Nov 19 18:01:03 1997 UTC vs.
Revision 3.5 by gregl, Tue Nov 25 16:52:04 1997 UTC

# Line 8 | Line 8
8  
9   #include "tonemap.h"
10   #include "rhdriver.h"
11                                /* quantity of leaves to free at a time */
12 #ifndef LFREEPCT
13 #define LFREEPCT        15
14 #endif
11                                  /* child ordering */
12   #define DL              0               /* down left */
13   #define DR              1               /* down right */
14   #define UL              2               /* up left */
15   #define UR              3               /* up right */
16  
17 < #define BRF(i)          (1<<(i))        /* branch flag bit */
18 < #define CHF(i)          (0x10<<(i))     /* change flag bit */
19 < #define CHBRF(i)        (0x11<<(i))     /* changed branch flags */
20 < #define CH_ANY          0xf0            /* flags for any change */
17 > #define BRF(i)          (0x1<<(i))      /* branch flag bit */
18 > #define LFF(i)          (0x10<<(i))     /* leaf flag bit */
19 > #define CHF(i)          (0x100<<(i))    /* change flag bit */
20 > #define CHBRF(i)        (0x101<<(i))    /* changed branch bit */
21 > #define CHLFF(i)        (0x110<<(i))    /* changed leaf bit */
22 > #define BR_ANY          0xf             /* flags for any branches */
23 > #define LF_ANY          0xf0            /* flags for any leaves */
24 > #define CH_ANY          0xf00           /* flags for any change */
25  
26 typedef struct {
27        float           wp[3];          /* world intersection point */
28        TMbright        brt;            /* encoded brightness (LogY) */
29        BYTE            chr[3];         /* encoded chrominance (RGB) */
30 }       RLEAF;                  /* recorded ray (leaf) value */
31
26   typedef struct rtree {
27 <        short   flgs;                   /* branch flags */
27 >        short   flgs;                   /* content flags (defined above) */
28          union {
29                  struct rtree    *b;             /* if branch */
30 <                RLEAF   *l;                     /* if leaf */
30 >                int     li;                     /* if leaf */
31          } k[4];                         /* children */
32   }       RTREE;
33  
34 + extern struct rleaves {
35 +        float           (*wp)[3];       /* world intersection point array */
36 +        TMbright        *brt;           /* encoded brightness array */
37 +        BYTE            (*chr)[3];      /* encoded chrominance array */
38 +        BYTE            (*rgb)[3];      /* tone-mapped color array */
39 +        int             nl;             /* count of leaves in our pile */
40 +        int             bl, tl;         /* bottom and top (next) leaf index */
41 +        int             tml;            /* next leaf needing tone-mapping */
42 +        char            *base;          /* base of allocated memory */
43 + }       qtL;                    /* our pile of leaves */
44 +
45 + #define is_stump(t)     (!((t)->flgs & (BR_ANY|LF_ANY)))
46 +
47   extern RTREE    qtrunk;         /* trunk of quadtree */
48   extern double   qtDepthEps;     /* epsilon to compare depths (z fraction) */
49   extern int      qtMinNodesiz;   /* minimum node dimension (pixels) */
43
44
45 /************************************************************************
46 * These driver support routines implement the dev_value() call, but
47 * require the following callbacks:
48
49 dev_paintr(rgb, x0, y0, x1, y1) : paint a rectangle
50 BYTE    rgb[3];                 : rectangle color
51 int     x0, y0, x1, y1;         : rectangle boundaries
52
53 Draws an open rectangle between [x0,x1) and [y0,y1) with the color rgb.
54 This function is called many times by qtUpdate(), qtRedraw() and qtReplant().
55
56 ************************************************************************/

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines