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