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

Comparing ray/src/hd/rhd_qtree.c (file contents):
Revision 3.1 by gregl, Wed Nov 19 18:01:03 1997 UTC vs.
Revision 3.16 by gregl, Wed Dec 31 09:06:54 1997 UTC

# Line 10 | Line 10 | static char SCCSid[] = "$SunId$ SGI";
10  
11   #include "standard.h"
12   #include "rhd_qtree.h"
13 +                                /* quantity of leaves to free at a time */
14 + #ifndef LFREEPCT
15 + #define LFREEPCT        25
16 + #endif
17 +                                /* maximum allowed angle difference (deg.) */
18 + #ifndef MAXANG
19 + #define MAXANG          20
20 + #endif
21 + #if MAXANG>0
22 + #define MAXDIFF2        ( MAXANG*MAXANG * (PI*PI/180./180.))
23 + #endif
24  
25 < static RLEAF    *leafpile;      /* our collection of leaf values */
15 < static int      nleaves;        /* count of leaves in our pile */
16 < static int      bleaf, tleaf;   /* bottom and top (next) leaf index (ring) */
25 > #define abs(i)          ((i) < 0 ? -(i) : (i))
26  
27   RTREE   qtrunk;                 /* our quadtree trunk */
28 < double  qtDepthEps = .02;       /* epsilon to compare depths (z fraction) */
28 > double  qtDepthEps = .05;       /* epsilon to compare depths (z fraction) */
29   int     qtMinNodesiz = 2;       /* minimum node dimension (pixels) */
30 + struct rleaves  qtL;            /* our pile of leaves */
31  
32 + static int4     falleaves;      /* our list of fallen leaves */
33 +
34 + #define composted(li)   (qtL.bl <= qtL.tl ? \
35 +                                        ((li) < qtL.bl || (li) >= qtL.tl) : \
36 +                                        ((li) < qtL.bl && (li) >= qtL.tl))
37 +
38   #define TBUNDLESIZ      409     /* number of twigs in a bundle */
39  
40   static RTREE    **twigbundle;   /* free twig blocks (NULL term.) */
41   static int      nexttwig;       /* next free twig */
42  
27 static RTREE    emptytree;      /* empty tree for test below */
43  
29 #define is_stump(t)     (!bcmp((char *)(t), (char *)&emptytree, sizeof(RTREE)))
30
31
44   static RTREE *
45   newtwig()                       /* allocate a twig */
46   {
# Line 58 | Line 70 | memerr:
70   }
71  
72  
73 < static
62 < freetwigs(really)               /* free allocated twigs */
73 > qtFreeTree(really)              /* free allocated twigs */
74   int     really;
75   {
76          register int    i;
77  
78 <        if (tmTop != NULL)
68 <                tmClearHisto();
69 <        bzero((char *)&qtrunk, sizeof(RTREE));
70 <        nexttwig = 0;
78 >        qtrunk.flgs = CH_ANY;   /* chop down tree */
79          if (twigbundle == NULL)
80                  return;
81 +        i = (TBUNDLESIZ-1+nexttwig)/TBUNDLESIZ;
82 +        nexttwig = 0;
83          if (!really) {          /* just clear allocated blocks */
84 <                for (i = 0; twigbundle[i] != NULL; i++)
84 >                while (i--)
85                          bzero((char *)twigbundle[i], TBUNDLESIZ*sizeof(RTREE));
86                  return;
87          }
# Line 83 | Line 93 | int    really;
93   }
94  
95  
96 < static RLEAF *
97 < newleaf()                       /* allocate a leaf from our pile */
88 < {
89 <        if (tleaf++ >= nleaves)         /* get next leaf in ring */
90 <                tleaf = 0;
91 <        if (tleaf == bleaf)             /* need to shake some free */
92 <                qtCompost(LFREEPCT);
93 <        return(leafpile + tleaf);
94 < }
96 > #define LEAFSIZ         (3*sizeof(float)+sizeof(int4)+\
97 >                        sizeof(TMbright)+6*sizeof(BYTE))
98  
96
99   int
100   qtAllocLeaves(n)                /* allocate space for n leaves */
101 < int     n;
101 > register int    n;
102   {
103          unsigned        nbytes;
104          register unsigned       i;
105  
106 <        freetwigs(0);           /* make sure tree is empty */
106 >        qtFreeTree(0);          /* make sure tree is empty */
107          if (n <= 0)
108                  return(0);
109 <        if (nleaves >= n)
110 <                return(nleaves);
111 <        else if (nleaves > 0)
112 <                free((char *)leafpile);
109 >        if (qtL.nl >= n)
110 >                return(qtL.nl);
111 >        else if (qtL.nl > 0)
112 >                free(qtL.base);
113                                  /* round space up to nearest power of 2 */
114 <        nbytes = n*sizeof(RLEAF) + 8;
114 >        nbytes = n*LEAFSIZ + 8;
115          for (i = 1024; nbytes > i; i <<= 1)
116                  ;
117 <        n = (i - 8) / sizeof(RLEAF);
118 <        leafpile = (RLEAF *)malloc(n*sizeof(RLEAF));
119 <        if (leafpile == NULL)
120 <                return(-1);
121 <        nleaves = n;
122 <        bleaf = tleaf = 0;
123 <        return(nleaves);
117 >        n = (i - 8) / LEAFSIZ;  /* should we make sure n is even? */
118 >        qtL.base = (char *)malloc(n*LEAFSIZ);
119 >        if (qtL.base == NULL)
120 >                return(0);
121 >                                /* assign larger alignment types earlier */
122 >        qtL.wp = (float (*)[3])qtL.base;
123 >        qtL.wd = (int4 *)(qtL.wp + n);
124 >        qtL.brt = (TMbright *)(qtL.wd + n);
125 >        qtL.chr = (BYTE (*)[3])(qtL.brt + n);
126 >        qtL.rgb = (BYTE (*)[3])(qtL.chr + n);
127 >        qtL.nl = n;
128 >        qtL.tml = qtL.bl = qtL.tl = 0;
129 >        falleaves = -1;
130 >        return(n);
131   }
132  
133 + #undef  LEAFSIZ
134  
135 +
136   qtFreeLeaves()                  /* free our allocated leaves and twigs */
137   {
138 <        freetwigs(1);           /* free tree also */
139 <        if (nleaves <= 0)
138 >        qtFreeTree(1);          /* free tree also */
139 >        if (qtL.nl <= 0)
140                  return;
141 <        free((char *)leafpile);
142 <        leafpile = NULL;
143 <        nleaves = 0;
141 >        free(qtL.base);
142 >        qtL.base = NULL;
143 >        qtL.nl = 0;
144   }
145  
146  
# Line 141 | Line 152 | register RTREE *tp;
152  
153          for (i = 0; i < 4; i++)
154                  if (tp->flgs & BRF(i)) {
155 <                        if (shaketree(tp->k[i].b))
156 <                                tp->flgs |= CHF(i);
157 <                } else if (tp->k[i].l != NULL) {
158 <                        li = tp->k[i].l - leafpile;
159 <                        if (bleaf < tleaf ? (li < bleaf || li >= tleaf) :
160 <                                        (li < bleaf && li >= tleaf)) {
161 <                                tmAddHisto(&tp->k[i].l->brt, 1, -1);
151 <                                tp->k[i].l = NULL;
152 <                                tp->flgs |= CHF(i);
153 <                        }
155 >                        shaketree(tp->k[i].b);
156 >                        if (is_stump(tp->k[i].b))
157 >                                tp->flgs &= ~BRF(i);
158 >                } else if (tp->flgs & LFF(i)) {
159 >                        li = tp->k[i].li;
160 >                        if (composted(li))
161 >                                tp->flgs &= ~LFF(i);
162                  }
155        return(tp->flgs & CH_ANY);
163   }
164  
165  
# Line 160 | Line 167 | int
167   qtCompost(pct)                  /* free up some leaves */
168   int     pct;
169   {
170 <        int     nused, nclear;
170 >        register int4   *fl;
171 >        int     nused, nclear, nmapped;
172                                  /* figure out how many leaves to clear */
173 <        nclear = nleaves * pct / 100;
173 >        nclear = qtL.nl * pct / 100;
174 >        nused = qtL.tl - qtL.bl;
175 >        if (nused <= 0) nused += qtL.nl;
176 >        nclear -= qtL.nl - nused;
177          if (nclear <= 0)
178                  return(0);
168        nused = tleaf > bleaf ? tleaf-bleaf : tleaf+nleaves-bleaf;
179          if (nclear >= nused) {  /* clear them all */
180 <                freetwigs(0);
181 <                bleaf = tleaf = 0;
180 >                qtFreeTree(0);
181 >                qtL.tml = qtL.bl = qtL.tl = 0;
182 >                falleaves = -1;
183                  return(nused);
184          }
185                                  /* else clear leaves from bottom */
186 <        bleaf = (bleaf + nclear) % nleaves;
187 <        shaketree(&qtrunk);
186 >        nmapped = qtL.tml - qtL.bl;
187 >        if (nmapped < 0) nmapped += qtL.nl;
188 >        qtL.bl += nclear;
189 >        if (qtL.bl >= qtL.nl) qtL.bl -= qtL.nl;
190 >        if (nmapped <= nclear) qtL.tml = qtL.bl;
191 >        shaketree(&qtrunk);     /* dereference composted leaves */
192 >        for (fl = &falleaves; *fl >= 0; fl = qtL.wd + *fl)
193 >                while (composted(*fl))
194 >                        if ((*fl = qtL.wd[*fl]) < 0)
195 >                                return(nclear);
196          return(nclear);
197   }
198  
199  
200 + int
201 + qtFindLeaf(x, y)                /* find closest leaf to (x,y) */
202 + int     x, y;
203 + {
204 +        register RTREE  *tp = &qtrunk;
205 +        int     li = -1;
206 +        int     x0=0, y0=0, x1=odev.hres, y1=odev.vres;
207 +        int     mx, my;
208 +        register int    q;
209 +                                        /* check limits */
210 +        if (x < 0 || x >= odev.hres || y < 0 || y >= odev.vres)
211 +                return(-1);
212 +                                        /* find nearby leaf in our tree */
213 +        for ( ; ; ) {
214 +                for (q = 0; q < 4; q++)         /* find any leaf this level */
215 +                        if (tp->flgs & LFF(q)) {
216 +                                li = tp->k[q].li;
217 +                                break;
218 +                        }
219 +                q = 0;                          /* which quadrant are we? */
220 +                mx = (x0 + x1) >> 1;
221 +                my = (y0 + y1) >> 1;
222 +                if (x < mx) x1 = mx;
223 +                else {x0 = mx; q |= 01;}
224 +                if (y < my) y1 = my;
225 +                else {y0 = my; q |= 02;}
226 +                if (tp->flgs & BRF(q)) {        /* branch down if not a leaf */
227 +                        tp = tp->k[q].b;
228 +                        continue;
229 +                }
230 +                if (tp->flgs & LFF(q))          /* good shot! */
231 +                        return(tp->k[q].li);
232 +                return(li);                     /* else return what we have */
233 +        }
234 + }
235 +
236 +
237   static
238 < addleaf(lp)                     /* add a leaf to our tree */
239 < RLEAF   *lp;
238 > putleaf(li, drop)               /* put a leaf in our tree */
239 > register int    li;
240 > int     drop;
241   {
242          register RTREE  *tp = &qtrunk;
243          int     x0=0, y0=0, x1=odev.hres, y1=odev.vres;
244 <        RLEAF   *lo = NULL;
244 >        register int    lo = -1;
245 >        double  d2;
246          int     x, y, mx, my;
247          double  z;
248 <        FVECT   ip, wp;
248 >        FVECT   ip, wp, vd;
249          register int    q;
250 <                                        /* compute leaf location */
251 <        VCOPY(wp, lp->wp);
250 >                                        /* check for dead leaf */
251 >        if (!qtL.chr[li][1] && !(qtL.chr[li][0] | qtL.chr[li][2]))
252 >                return(0);
253 >                                        /* compute leaf location in view */
254 >        VCOPY(wp, qtL.wp[li]);
255          viewloc(ip, &odev.v, wp);
256          if (ip[2] <= 0. || ip[0] < 0. || ip[0] >= 1.
257                          || ip[1] < 0. || ip[1] >= 1.)
258 <                return;
258 >                goto dropit;                    /* behind or outside view */
259 > #ifdef DEBUG
260 >        if (odev.v.type == VT_PAR | odev.v.vfore > FTINY)
261 >                error(INTERNAL, "bad view assumption in putleaf");
262 > #endif
263 >        for (q = 0; q < 3; q++)
264 >                vd[q] = (wp[q] - odev.v.vp[q])/ip[2];
265 >        d2 = fdir2diff(qtL.wd[li], vd);
266 > #ifdef MAXDIFF2
267 >        if (d2 > MAXDIFF2)
268 >                goto dropit;                    /* leaf dir. too far off */
269 > #endif
270          x = ip[0] * odev.hres;
271          y = ip[1] * odev.vres;
272          z = ip[2];
# Line 212 | Line 284 | RLEAF  *lp;
284                          tp = tp->k[q].b;
285                          continue;
286                  }
287 <                if (tp->k[q].l == NULL) {       /* found stem for leaf */
288 <                        tp->k[q].l = lp;
289 <                        tp->flgs |= CHF(q);
290 <                        break;
287 >                if (!(tp->flgs & LFF(q))) {     /* found stem for leaf */
288 >                        tp->k[q].li = li;
289 >                        tp->flgs |= CHLFF(q);
290 >                        return(1);
291                  }      
292 <                                                /* check existing leaf */
293 <                if (lo != tp->k[q].l) {
294 <                        lo = tp->k[q].l;
223 <                        VCOPY(wp, lo->wp);
292 >                if (lo != tp->k[q].li) {        /* check old leaf */
293 >                        lo = tp->k[q].li;
294 >                        VCOPY(wp, qtL.wp[lo]);
295                          viewloc(ip, &odev.v, wp);
296                  }
297                                                  /* is node minimum size? */
298 <                if (x1-x0 <= qtMinNodesiz || y1-y0 <= qtMinNodesiz) {
299 <                        if (z > (1.-qtDepthEps)*ip[2])  /* who is closer? */
300 <                                return;                 /* old one is */
301 <                        tp->k[q].l = lp;                /* new one is */
298 >                if (y1-y0 <= qtMinNodesiz || x1-x0 <= qtMinNodesiz) {
299 >                        if (z > (1.+qtDepthEps)*ip[2])
300 >                                break;                  /* old one closer */
301 >                        if (z >= (1.-qtDepthEps)*ip[2] &&
302 >                                        fdir2diff(qtL.wd[lo], vd) < d2)
303 >                                break;                  /* old one better */
304 >                        tp->k[q].li = li;               /* attach new */
305                          tp->flgs |= CHF(q);
306 <                        tmAddHisto(&lo->brt, 1, -1);    /* drop old one */
306 >                        li = lo;                        /* drop old... */
307                          break;
308                  }
309 <                tp->flgs |= CHBRF(q);           /* else grow tree */
309 >                tp->flgs &= ~LFF(q);            /* else grow tree */
310 >                tp->flgs |= CHBRF(q);
311                  tp = tp->k[q].b = newtwig();
237                tp->flgs |= CH_ANY;             /* all new */
312                  q = 0;                          /* old leaf -> new branch */
313                  mx = ip[0] * odev.hres;
314                  my = ip[1] * odev.vres;
315                  if (mx >= (x0 + x1) >> 1) q |= 01;
316                  if (my >= (y0 + y1) >> 1) q |= 02;
317 <                tp->k[q].l = lo;
317 >                tp->flgs = CH_ANY|LFF(q);       /* all new */
318 >                tp->k[q].li = lo;
319          }
320 <        tmAddHisto(&lp->brt, 1, 1);     /* add leaf to histogram */
320 > dropit:
321 >        if (drop)
322 >                if (li+1 == (qtL.tl ? qtL.tl : qtL.nl))
323 >                        qtL.tl = li;            /* special case */
324 >                else {
325 >                        qtL.chr[li][0] = qtL.chr[li][1] = qtL.chr[li][2] = 0;
326 >                        qtL.wd[li] = falleaves;
327 >                        falleaves = li;
328 >                }
329 >        return(li == lo);
330   }
331  
332  
333 < dev_value(c, p)                 /* add a pixel value to our output queue */
333 > dev_value(c, p, v)              /* add a pixel value to our quadtree */
334   COLR    c;
335 < FVECT   p;
335 > FVECT   p, v;
336   {
337 <        register RLEAF  *lp;
338 <
339 <        lp = newleaf();
340 <        VCOPY(lp->wp, p);
341 <        tmCvColrs(&lp->brt, lp->chr, c, 1);
342 <        addleaf(lp);
337 >        register int    li;
338 >        int     mapit;
339 >                                /* grab a leaf */
340 >        if (!imm_mode && falleaves >= 0) {      /* check for fallen leaves */
341 >                li = falleaves;
342 >                falleaves = qtL.wd[li];
343 >                mapit = qtL.tml <= qtL.tl ?
344 >                                (li < qtL.tml || li >= qtL.tl) :
345 >                                (li < qtL.tml && li >= qtL.tl) ;
346 >        } else {                                /* else allocate new one */
347 >                li = qtL.tl++;
348 >                if (qtL.tl >= qtL.nl)           /* next leaf in ring */
349 >                        qtL.tl = 0;
350 >                if (qtL.tl == qtL.bl)           /* need to shake some free */
351 >                        qtCompost(LFREEPCT);
352 >                mapit = 0;                      /* we'll map it later */
353 >        }
354 >        VCOPY(qtL.wp[li], p);
355 >        qtL.wd[li] = encodedir(v);
356 >        tmCvColrs(&qtL.brt[li], qtL.chr[li], c, 1);
357 >        if (putleaf(li, 1) && mapit)
358 >                tmMapPixels(qtL.rgb+li, qtL.brt+li, qtL.chr+li, 1);
359   }
360  
361  
362   qtReplant()                     /* replant our tree using new view */
363   {
364          register int    i;
365 <
366 <        if (bleaf == tleaf)             /* anything to replant? */
365 >                                        /* anything to replant? */
366 >        if (qtL.bl == qtL.tl)
367                  return;
368 <        freetwigs(0);                   /* blow the tree away */
369 <                                        /* now rebuild it */
370 <        for (i = bleaf; i != tleaf; ) {
371 <                addleaf(leafpile+i);
372 <                if (++i >= nleaves) i = 0;
368 >        qtFreeTree(0);                  /* blow the old tree away */
369 >                                        /* regrow it in new place */
370 >        for (i = qtL.bl; i != qtL.tl; ) {
371 >                putleaf(i, 0);
372 >                if (++i >= qtL.nl) i = 0;
373          }
274        tmComputeMapping(0., 0., 0.);   /* update the display */
275        qtUpdate();
374   }
375  
376  
377 < static
378 < redraw(ca, tp, x0, y0, x1, y1, l)       /* redraw portion of a tree */
281 < BYTE    ca[3];          /* returned average color */
282 < register RTREE  *tp;
283 < int     x0, y0, x1, y1;
284 < int     l[2][2];
377 > qtMapLeaves(redo)               /* map our leaves to RGB */
378 > int     redo;
379   {
380 <        int     csm[3], nc;
381 <        BYTE    rgb[3];
382 <        int     quads = CH_ANY;
383 <        int     mx, my;
384 <        register int    i;
385 <                                        /* compute midpoint */
386 <        mx = (x0 + x1) >> 1;
387 <        my = (y0 + y1) >> 1;
388 <                                        /* see what to do */
389 <        if (l[0][0] >= mx)
390 <                quads &= ~(CHF(2)|CHF(0));
391 <        else if (l[0][1] <= mx)
298 <                quads &= ~(CHF(3)|CHF(1));
299 <        if (l[1][0] >= my)
300 <                quads &= ~(CHF(1)|CHF(0));
301 <        else if (l[1][1] <= my)
302 <                quads &= ~(CHF(3)|CHF(2));
303 <        tp->flgs &= ~quads;             /* mark them done */
304 <        csm[0] = csm[1] = csm[2] = nc = 0;
305 <                                        /* do leaves first */
306 <        for (i = 0; i < 4; i++)
307 <                if (quads & CHF(i) && !(tp->flgs & BRF(i)) &&
308 <                                tp->k[i].l != NULL) {
309 <                        tmMapPixels(rgb, &tp->k[i].l->brt, tp->k[i].l->chr, 1);
310 <                        dev_paintr(rgb, i&01 ? mx : x0, i&02 ? my : y0,
311 <                                        i&01 ? x1 : mx, i&02 ? y1 : my);
312 <                        csm[0] += rgb[0]; csm[1] += rgb[1]; csm[2] += rgb[2];
313 <                        nc++;
314 <                        quads &= ~CHF(i);
315 <                }
316 <                                        /* now do branches */
317 <        for (i = 0; i < 4; i++)
318 <                if (quads & CHF(i) && tp->flgs & BRF(i)) {
319 <                        redraw(rgb, tp->k[i].b, i&01 ? mx : x0, i&02 ? my : y0,
320 <                                        i&01 ? x1 : mx, i&02 ? y1 : my, l);
321 <                        csm[0] += rgb[0]; csm[1] += rgb[1]; csm[2] += rgb[2];
322 <                        nc++;
323 <                        quads &= ~CHF(i);
324 <                }
325 <        if (nc > 1) {
326 <                ca[0] = csm[0]/nc; ca[1] = csm[1]/nc; ca[2] = csm[2]/nc;
380 >        int     aorg, alen, borg, blen;
381 >                                        /* recompute mapping? */
382 >        if (redo)
383 >                qtL.tml = qtL.bl;
384 >                                        /* already done? */
385 >        if (qtL.tml == qtL.tl)
386 >                return(1);
387 >                                        /* compute segments */
388 >        aorg = qtL.tml;
389 >        if (qtL.tl >= aorg) {
390 >                alen = qtL.tl - aorg;
391 >                blen = 0;
392          } else {
393 <                ca[0] = csm[0]; ca[1] = csm[1]; ca[2] = csm[2];
393 >                alen = qtL.nl - aorg;
394 >                borg = 0;
395 >                blen = qtL.tl;
396          }
397 <        if (!quads) return;
398 <                                        /* fill in gaps with average */
399 <        for (i = 0; i < 4; i++)
400 <                if (quads & CHF(i))
401 <                        dev_paintr(ca, i&01 ? mx : x0, i&02 ? my : y0,
402 <                                        i&01 ? x1 : mx, i&02 ? y1 : my);
403 < }
404 <
338 <
339 < static
340 < update(ca, tp, x0, y0, x1, y1)  /* update tree display as needed */
341 < BYTE    ca[3];          /* returned average color */
342 < register RTREE  *tp;
343 < int     x0, y0, x1, y1;
344 < {
345 <        int     csm[3], nc;
346 <        BYTE    rgb[3];
347 <        int     gaps = 0;
348 <        int     mx, my;
349 <        register int    i;
350 <                                        /* compute midpoint */
351 <        mx = (x0 + x1) >> 1;
352 <        my = (y0 + y1) >> 1;
353 <        csm[0] = csm[1] = csm[2] = nc = 0;
354 <                                        /* do leaves first */
355 <        for (i = 0; i < 4; i++)
356 <                if ((tp->flgs & CHBRF(i)) == CHF(i)) {
357 <                        if (tp->k[i].l == NULL) {
358 <                                gaps |= 1<<i;   /* empty stem */
359 <                                continue;
360 <                        }
361 <                        tmMapPixels(rgb, &tp->k[i].l->brt, tp->k[i].l->chr, 1);
362 <                        dev_paintr(rgb, i&01 ? mx : x0, i&02 ? my : y0,
363 <                                        i&01 ? x1 : mx, i&02 ? y1 : my);
364 <                        csm[0] += rgb[0]; csm[1] += rgb[1]; csm[2] += rgb[2];
365 <                        nc++;
366 <                }
367 <                                        /* now do branches */
368 <        for (i = 0; i < 4; i++)
369 <                if ((tp->flgs & CHBRF(i)) == CHBRF(i)) {
370 <                        update(rgb, tp->k[i].b, i&01 ? mx : x0, i&02 ? my : y0,
371 <                                        i&01 ? x1 : mx, i&02 ? y1 : my);
372 <                        csm[0] += rgb[0]; csm[1] += rgb[1]; csm[2] += rgb[2];
373 <                        nc++;
374 <                }
375 <        if (nc > 1) {
376 <                ca[0] = csm[0]/nc; ca[1] = csm[1]/nc; ca[2] = csm[2]/nc;
377 <        } else {
378 <                ca[0] = csm[0]; ca[1] = csm[1]; ca[2] = csm[2];
397 >                                        /* (re)compute tone mapping? */
398 >        if (qtL.tml == qtL.bl) {
399 >                tmClearHisto();
400 >                tmAddHisto(qtL.brt+aorg, alen, 1);
401 >                if (blen > 0)
402 >                        tmAddHisto(qtL.brt+borg, blen, 1);
403 >                if (tmComputeMapping(0., 0., 0.) != TM_E_OK)
404 >                        return(0);
405          }
406 <                                        /* fill in gaps with average */
407 <        for (i = 0; gaps && i < 4; gaps >>= 1, i++)
408 <                if (gaps & 01)
409 <                        dev_paintr(ca, i&01 ? mx : x0, i&02 ? my : y0,
410 <                                        i&01 ? x1 : mx, i&02 ? y1 : my);
411 <        tp->flgs &= ~CH_ANY;            /* all done */
412 < }
413 <
388 <
389 < qtRedraw(x0, y0, x1, y1)        /* redraw part of our screen */
390 < int     x0, y0, x1, y1;
391 < {
392 <        int     lim[2][2];
393 <        BYTE    ca[3];
394 <
395 <        if (is_stump(&qtrunk))
396 <                return;
397 <        if ((lim[0][0]=x0) == 0 & (lim[1][0]=y0) == 0 &
398 <                (lim[0][1]=x1) == odev.hres & (lim[1][1]=y1) == odev.vres ||
399 <                        tmTop->lumap == NULL)
400 <                tmComputeMapping(0., 0., 0.);
401 <        redraw(ca, &qtrunk, 0, 0, odev.hres, odev.vres, lim);
402 < }
403 <
404 <
405 < qtUpdate()                      /* update our tree display */
406 < {
407 <        BYTE    ca[3];
408 <
409 <        if (is_stump(&qtrunk))
410 <                return;
411 <        if (tmTop->lumap == NULL)
412 <                tmComputeMapping(0., 0., 0.);
413 <        update(ca, &qtrunk, 0, 0, odev.hres, odev.vres);
406 >        if (tmMapPixels(qtL.rgb+aorg, qtL.brt+aorg,
407 >                        qtL.chr+aorg, alen) != TM_E_OK)
408 >                return(0);
409 >        if (blen > 0)
410 >                tmMapPixels(qtL.rgb+borg, qtL.brt+borg,
411 >                                qtL.chr+borg, blen);
412 >        qtL.tml = qtL.tl;
413 >        return(1);
414   }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines