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.2 by gregl, Thu Nov 20 11:38:26 1997 UTC vs.
Revision 3.11 by gregl, Fri Dec 5 15:40: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  
22 + #define MAXDIFF2        (PI*PI/180./180.* MAXANG*MAXANG )
23 +
24 + #define abs(i)          ((i) < 0 ? -(i) : (i))
25 +
26   RTREE   qtrunk;                 /* our quadtree trunk */
27 < double  qtDepthEps = .02;       /* epsilon to compare depths (z fraction) */
27 > double  qtDepthEps = .05;       /* epsilon to compare depths (z fraction) */
28   int     qtMinNodesiz = 2;       /* minimum node dimension (pixels) */
29 + struct rleaves  qtL;            /* our pile of leaves */
30  
18 static RLEAF    *leafpile;      /* our collection of leaf values */
19 static int      nleaves;        /* count of leaves in our pile */
20 static int      bleaf, tleaf;   /* bottom and top (next) leaf index (ring) */
21
31   #define TBUNDLESIZ      409     /* number of twigs in a bundle */
32  
33   static RTREE    **twigbundle;   /* free twig blocks (NULL term.) */
34   static int      nexttwig;       /* next free twig */
35  
36 < static RTREE    emptytree;      /* empty tree for test below */
36 > #define ungetleaf(li)   (qtL.tl=(li))   /* dangerous if used improperly */
37  
29 #define is_stump(t)     (!bcmp((char *)(t), (char *)&emptytree, sizeof(RTREE)))
38  
31
39   static RTREE *
40   newtwig()                       /* allocate a twig */
41   {
# Line 58 | Line 65 | memerr:
65   }
66  
67  
68 < static
62 < freetree(really)                /* free allocated twigs */
68 > qtFreeTree(really)              /* free allocated twigs */
69   int     really;
70   {
71          register int    i;
72  
73 <        if (tmTop != NULL)
68 <                tmClearHisto();
69 <        bzero((char *)&qtrunk, sizeof(RTREE));
70 <        nexttwig = 0;
73 >        qtrunk.flgs = CH_ANY;   /* chop down tree */
74          if (twigbundle == NULL)
75                  return;
76 +        i = (TBUNDLESIZ-1+nexttwig)/TBUNDLESIZ;
77 +        nexttwig = 0;
78          if (!really) {          /* just clear allocated blocks */
79 <                for (i = 0; twigbundle[i] != NULL; i++)
79 >                while (i--)
80                          bzero((char *)twigbundle[i], TBUNDLESIZ*sizeof(RTREE));
81                  return;
82          }
# Line 83 | Line 88 | int    really;
88   }
89  
90  
91 < static RLEAF *
91 > static int
92   newleaf()                       /* allocate a leaf from our pile */
93   {
94 <        if (tleaf++ >= nleaves)         /* get next leaf in ring */
95 <                tleaf = 0;
96 <        if (tleaf == bleaf)             /* need to shake some free */
94 >        int     li;
95 >        
96 >        li = qtL.tl++;
97 >        if (qtL.tl >= qtL.nl)   /* get next leaf in ring */
98 >                qtL.tl = 0;
99 >        if (qtL.tl == qtL.bl)   /* need to shake some free */
100                  qtCompost(LFREEPCT);
101 <        return(leafpile + tleaf);
101 >        return(li);
102   }
103  
104  
105 + #define LEAFSIZ         (3*sizeof(float)+sizeof(int4)+\
106 +                        sizeof(TMbright)+6*sizeof(BYTE))
107 +
108   int
109   qtAllocLeaves(n)                /* allocate space for n leaves */
110 < int     n;
110 > register int    n;
111   {
112          unsigned        nbytes;
113          register unsigned       i;
114  
115 <        freetree(0);            /* make sure tree is empty */
115 >        qtFreeTree(0);          /* make sure tree is empty */
116          if (n <= 0)
117                  return(0);
118 <        if (nleaves >= n)
119 <                return(nleaves);
120 <        else if (nleaves > 0)
121 <                free((char *)leafpile);
118 >        if (qtL.nl >= n)
119 >                return(qtL.nl);
120 >        else if (qtL.nl > 0)
121 >                free(qtL.base);
122                                  /* round space up to nearest power of 2 */
123 <        nbytes = n*sizeof(RLEAF) + 8;
123 >        nbytes = n*LEAFSIZ + 8;
124          for (i = 1024; nbytes > i; i <<= 1)
125                  ;
126 <        n = (i - 8) / sizeof(RLEAF);
127 <        leafpile = (RLEAF *)malloc(n*sizeof(RLEAF));
128 <        if (leafpile == NULL)
129 <                return(-1);
130 <        nleaves = n;
131 <        bleaf = tleaf = 0;
132 <        return(nleaves);
126 >        n = (i - 8) / LEAFSIZ;  /* should we make sure n is even? */
127 >        qtL.base = (char *)malloc(n*LEAFSIZ);
128 >        if (qtL.base == NULL)
129 >                return(0);
130 >                                /* assign larger alignment types earlier */
131 >        qtL.wp = (float (*)[3])qtL.base;
132 >        qtL.wd = (int4 *)(qtL.wp + n);
133 >        qtL.brt = (TMbright *)(qtL.wd + n);
134 >        qtL.chr = (BYTE (*)[3])(qtL.brt + n);
135 >        qtL.rgb = (BYTE (*)[3])(qtL.chr + n);
136 >        qtL.nl = n;
137 >        qtL.tml = qtL.bl = qtL.tl = 0;
138 >        return(n);
139   }
140  
141 + #undef  LEAFSIZ
142  
143 +
144   qtFreeLeaves()                  /* free our allocated leaves and twigs */
145   {
146 <        freetree(1);            /* free tree also */
147 <        if (nleaves <= 0)
146 >        qtFreeTree(1);          /* free tree also */
147 >        if (qtL.nl <= 0)
148                  return;
149 <        free((char *)leafpile);
150 <        leafpile = NULL;
151 <        nleaves = 0;
149 >        free(qtL.base);
150 >        qtL.base = NULL;
151 >        qtL.nl = 0;
152   }
153  
154  
# Line 140 | Line 159 | register RTREE *tp;
159          register int    i, li;
160  
161          for (i = 0; i < 4; i++)
162 <                if (tp->flgs & BRF(i))
162 >                if (tp->flgs & BRF(i)) {
163                          shaketree(tp->k[i].b);
164 <                else if (tp->k[i].l != NULL) {
165 <                        li = tp->k[i].l - leafpile;
166 <                        if (bleaf < tleaf ? (li < bleaf || li >= tleaf) :
167 <                                        (li < bleaf && li >= tleaf)) {
168 <                                tmAddHisto(&tp->k[i].l->brt, 1, -1);
169 <                                tp->k[i].l = NULL;
170 <                        }
164 >                        if (is_stump(tp->k[i].b))
165 >                                tp->flgs &= ~BRF(i);
166 >                } else if (tp->flgs & LFF(i)) {
167 >                        li = tp->k[i].li;
168 >                        if (qtL.bl < qtL.tl ?
169 >                                (li < qtL.bl || li >= qtL.tl) :
170 >                                (li < qtL.bl && li >= qtL.tl))
171 >                                tp->flgs &= ~LFF(i);
172                  }
173   }
174  
# Line 157 | Line 177 | int
177   qtCompost(pct)                  /* free up some leaves */
178   int     pct;
179   {
180 <        int     nused, nclear;
180 >        int     nused, nclear, nmapped;
181 >
182                                  /* figure out how many leaves to clear */
183 <        nclear = nleaves * pct / 100;
183 >        nclear = qtL.nl * pct / 100;
184 >        nused = qtL.tl - qtL.bl;
185 >        if (nused <= 0) nused += qtL.nl;
186 >        nclear -= qtL.nl - nused;
187          if (nclear <= 0)
188                  return(0);
165        nused = tleaf > bleaf ? tleaf-bleaf : tleaf+nleaves-bleaf;
189          if (nclear >= nused) {  /* clear them all */
190 <                freetree(0);
191 <                bleaf = tleaf = 0;
190 >                qtFreeTree(0);
191 >                qtL.tml = qtL.bl = qtL.tl = 0;
192                  return(nused);
193          }
194                                  /* else clear leaves from bottom */
195 <        bleaf = (bleaf + nclear) % nleaves;
195 >        nmapped = qtL.tml - qtL.bl;
196 >        if (nmapped < 0) nmapped += qtL.nl;
197 >        qtL.bl += nclear;
198 >        if (qtL.bl >= qtL.nl) qtL.bl -= qtL.nl;
199 >        if (nmapped <= nclear) qtL.tml = qtL.bl;
200          shaketree(&qtrunk);
201          return(nclear);
202   }
203  
204  
205 + #define DCSCALE         11585.2         /* (1<<13)*sqrt(2) */
206 + #define FXNEG           01
207 + #define FYNEG           02
208 + #define FZNEG           04
209 + #define FXACT           010
210 + #define FZACT           020
211 + #define F1SFT           5
212 + #define F2SFT           18
213 + #define FMASK           0x1fff
214 +
215 + static int4
216 + encodedir(dv)           /* encode a normalized direction vector */
217 + FVECT   dv;
218 + {
219 +        register int4   dc = 0;
220 +        int     cd[3], cm;
221 +        register int    i;
222 +
223 +        for (i = 0; i < 3; i++)
224 +                if (dv[i] < 0.) {
225 +                        cd[i] = dv[i] * -DCSCALE;
226 +                        dc |= 1<<i;
227 +                } else
228 +                        cd[i] = dv[i] * DCSCALE;
229 +        if (cd[0] <= cd[1]) {
230 +                dc |= FXACT | cd[0] << F1SFT;
231 +                cm = cd[1];
232 +        } else {
233 +                dc |= cd[1] << F1SFT;
234 +                cm = cd[0];
235 +        }
236 +        if (cd[2] <= cm)
237 +                dc |= FZACT | cd[2] << F2SFT;
238 +        else
239 +                dc |= cm << F2SFT;
240 +        return(dc);
241 + }
242 +
243 +
244   static
245 < addleaf(lp)                     /* add a leaf to our tree */
246 < RLEAF   *lp;
245 > decodedir(dv, dc)       /* decode a normalized direction vector */
246 > FVECT   dv;     /* returned */
247 > register int4   dc;
248   {
249 +        double  d1, d2, der;
250 +
251 +        d1 = ((dc>>F1SFT & FMASK)+.5)/DCSCALE;
252 +        d2 = ((dc>>F2SFT & FMASK)+.5)/DCSCALE;
253 +        der = sqrt(1. - d1*d1 - d2*d2);
254 +        if (dc & FXACT) {
255 +                dv[0] = d1;
256 +                if (dc & FZACT) { dv[1] = der; dv[2] = d2; }
257 +                else { dv[1] = d2; dv[2] = der; }
258 +        } else {
259 +                dv[1] = d1;
260 +                if (dc & FZACT) { dv[0] = der; dv[2] = d2; }
261 +                else { dv[0] = d2; dv[2] = der; }
262 +        }
263 +        if (dc & FXNEG) dv[0] = -dv[0];
264 +        if (dc & FYNEG) dv[1] = -dv[1];
265 +        if (dc & FZNEG) dv[2] = -dv[2];
266 + }
267 +
268 +
269 + static double
270 + dir2diff(dc1, dc2)              /* relative radians^2 between directions */
271 + int4    dc1, dc2;
272 + {
273 +        FVECT   v1, v2;
274 +
275 +        decodedir(v1, dc1);
276 +        decodedir(v2, dc2);
277 +
278 +        return(2. - 2.*DOT(v1,v2));
279 + }
280 +
281 +
282 + static double
283 + fdir2diff(dc1, v2)              /* relative radians^2 between directions */
284 + int4    dc1;
285 + register FVECT  v2;
286 + {
287 +        FVECT   v1;
288 +
289 +        decodedir(v1, dc1);
290 +
291 +        return(2. - 2.*DOT(v1,v2));
292 + }
293 +
294 +
295 + int
296 + qtFindLeaf(x, y)                /* find closest leaf to (x,y) */
297 + int     x, y;
298 + {
299          register RTREE  *tp = &qtrunk;
300 +        int     li = -1;
301          int     x0=0, y0=0, x1=odev.hres, y1=odev.vres;
302 <        RLEAF   *lo = NULL;
302 >        int     mx, my;
303 >        register int    q;
304 >                                        /* check limits */
305 >        if (x < 0 || x >= odev.hres || y < 0 || y >= odev.vres)
306 >                return(-1);
307 >                                        /* find nearby leaf in our tree */
308 >        for ( ; ; ) {
309 >                for (q = 0; q < 4; q++)         /* find any leaf this level */
310 >                        if (tp->flgs & LFF(q)) {
311 >                                li = tp->k[q].li;
312 >                                break;
313 >                        }
314 >                q = 0;                          /* which quadrant are we? */
315 >                mx = (x0 + x1) >> 1;
316 >                my = (y0 + y1) >> 1;
317 >                if (x < mx) x1 = mx;
318 >                else {x0 = mx; q |= 01;}
319 >                if (y < my) y1 = my;
320 >                else {y0 = my; q |= 02;}
321 >                if (tp->flgs & BRF(q)) {        /* branch down if not a leaf */
322 >                        tp = tp->k[q].b;
323 >                        continue;
324 >                }
325 >                if (tp->flgs & LFF(q))          /* good shot! */
326 >                        return(tp->k[q].li);
327 >                return(li);                     /* else return what we have */
328 >        }
329 > }
330 >
331 >
332 > static
333 > addleaf(li)                     /* add a leaf to our tree */
334 > int     li;
335 > {
336 >        register RTREE  *tp = &qtrunk;
337 >        int     x0=0, y0=0, x1=odev.hres, y1=odev.vres;
338 >        int     lo = -1;
339 >        double  d2;
340          int     x, y, mx, my;
341          double  z;
342 <        FVECT   ip, wp;
342 >        FVECT   ip, wp, vd;
343          register int    q;
344 <                                        /* compute leaf location */
345 <        VCOPY(wp, lp->wp);
344 >                                        /* compute leaf location in view */
345 >        VCOPY(wp, qtL.wp[li]);
346          viewloc(ip, &odev.v, wp);
347          if (ip[2] <= 0. || ip[0] < 0. || ip[0] >= 1.
348                          || ip[1] < 0. || ip[1] >= 1.)
349 <                return;
349 >                return(0);                      /* behind or outside view */
350 > #ifdef DEBUG
351 >        if (odev.v.type == VT_PAR | odev.v.vfore > FTINY)
352 >                error(INTERNAL, "bad view assumption in addleaf");
353 > #endif
354 >        for (q = 0; q < 3; q++)
355 >                vd[q] = (wp[q] - odev.v.vp[q])/ip[2];
356 >        d2 = fdir2diff(qtL.wd[li], vd);
357 >        if (d2 > MAXDIFF2)
358 >                return(0);                      /* leaf dir. too far off */
359          x = ip[0] * odev.hres;
360          y = ip[1] * odev.vres;
361          z = ip[2];
# Line 209 | Line 373 | RLEAF  *lp;
373                          tp = tp->k[q].b;
374                          continue;
375                  }
376 <                if (tp->k[q].l == NULL) {       /* found stem for leaf */
377 <                        tp->k[q].l = lp;
378 <                        tp->flgs |= CHF(q);
376 >                if (!(tp->flgs & LFF(q))) {     /* found stem for leaf */
377 >                        tp->k[q].li = li;
378 >                        tp->flgs |= CHLFF(q);
379                          break;
380                  }      
381 <                                                /* check existing leaf */
382 <                if (lo != tp->k[q].l) {
383 <                        lo = tp->k[q].l;
220 <                        VCOPY(wp, lo->wp);
381 >                if (lo != tp->k[q].li) {        /* check old leaf */
382 >                        lo = tp->k[q].li;
383 >                        VCOPY(wp, qtL.wp[lo]);
384                          viewloc(ip, &odev.v, wp);
385                  }
386                                                  /* is node minimum size? */
387 <                if (x1-x0 <= qtMinNodesiz || y1-y0 <= qtMinNodesiz) {
388 <                        if (z > (1.-qtDepthEps)*ip[2])  /* who is closer? */
389 <                                return;                 /* old one is */
390 <                        tp->k[q].l = lp;                /* new one is */
387 >                if (y1-y0 <= qtMinNodesiz || x1-x0 <= qtMinNodesiz) {
388 >                        if (z > (1.+qtDepthEps)*ip[2])
389 >                                return(0);              /* old one closer */
390 >                        if (z >= (1.-qtDepthEps)*ip[2] &&
391 >                                        fdir2diff(qtL.wd[lo], vd) < d2)
392 >                                return(0);              /* old one better */
393 >                        tp->k[q].li = li;               /* else new one is */
394                          tp->flgs |= CHF(q);
229                        tmAddHisto(&lo->brt, 1, -1);    /* drop old one */
395                          break;
396                  }
397 <                tp->flgs |= CHBRF(q);           /* else grow tree */
397 >                tp->flgs &= ~LFF(q);            /* else grow tree */
398 >                tp->flgs |= CHBRF(q);
399                  tp = tp->k[q].b = newtwig();
234                tp->flgs |= CH_ANY;             /* all new */
400                  q = 0;                          /* old leaf -> new branch */
401                  mx = ip[0] * odev.hres;
402                  my = ip[1] * odev.vres;
403                  if (mx >= (x0 + x1) >> 1) q |= 01;
404                  if (my >= (y0 + y1) >> 1) q |= 02;
405 <                tp->k[q].l = lo;
405 >                tp->flgs = CH_ANY|LFF(q);       /* all new */
406 >                tp->k[q].li = lo;
407          }
408 <        tmAddHisto(&lp->brt, 1, 1);     /* add leaf to histogram */
408 >        return(1);              /* done */
409   }
410  
411  
412 < dev_value(c, p)                 /* add a pixel value to our output queue */
412 > dev_value(c, p, v)              /* add a pixel value to our quadtree */
413   COLR    c;
414 < FVECT   p;
414 > FVECT   p, v;
415   {
416 <        register RLEAF  *lp;
416 >        register int    li;
417  
418 <        lp = newleaf();
419 <        VCOPY(lp->wp, p);
420 <        tmCvColrs(&lp->brt, lp->chr, c, 1);
421 <        addleaf(lp);
418 >        li = newleaf();
419 >        VCOPY(qtL.wp[li], p);
420 >        qtL.wd[li] = encodedir(v);
421 >        tmCvColrs(&qtL.brt[li], qtL.chr[li], c, 1);
422 >        if (!addleaf(li))
423 >                ungetleaf(li);
424   }
425  
426  
427   qtReplant()                     /* replant our tree using new view */
428   {
429          register int    i;
430 <
431 <        if (bleaf == tleaf)             /* anything to replant? */
430 >                                        /* anything to replant? */
431 >        if (qtL.bl == qtL.tl)
432                  return;
433 <        freetree(0);                    /* blow the tree away */
434 <                                        /* now rebuild it */
435 <        for (i = bleaf; i != tleaf; ) {
436 <                addleaf(leafpile+i);
437 <                if (++i >= nleaves) i = 0;
433 >        qtFreeTree(0);                  /* blow the old tree away */
434 >                                        /* regrow it in new place */
435 >        for (i = qtL.bl; i != qtL.tl; ) {
436 >                addleaf(i);
437 >                if (++i >= qtL.nl) i = 0;
438          }
271        tmComputeMapping(0., 0., 0.);   /* update the display */
272        qtUpdate();
439   }
440  
441  
442 < static
443 < redraw(ca, tp, x0, y0, x1, y1, l)       /* redraw portion of a tree */
278 < BYTE    ca[3];          /* returned average color */
279 < register RTREE  *tp;
280 < int     x0, y0, x1, y1;
281 < int     l[2][2];
442 > qtMapLeaves(redo)               /* map our leaves to RGB */
443 > int     redo;
444   {
445 <        int     csm[3], nc;
446 <        BYTE    rgb[3];
447 <        int     quads = CH_ANY;
448 <        int     mx, my;
449 <        register int    i;
450 <                                        /* compute midpoint */
451 <        mx = (x0 + x1) >> 1;
452 <        my = (y0 + y1) >> 1;
453 <                                        /* see what to do */
454 <        if (l[0][0] >= mx)
455 <                quads &= ~(CHF(2)|CHF(0));
456 <        else if (l[0][1] <= mx)
295 <                quads &= ~(CHF(3)|CHF(1));
296 <        if (l[1][0] >= my)
297 <                quads &= ~(CHF(1)|CHF(0));
298 <        else if (l[1][1] <= my)
299 <                quads &= ~(CHF(3)|CHF(2));
300 <        tp->flgs &= ~quads;             /* mark them done */
301 <        csm[0] = csm[1] = csm[2] = nc = 0;
302 <                                        /* do leaves first */
303 <        for (i = 0; i < 4; i++)
304 <                if (quads & CHF(i) && !(tp->flgs & BRF(i)) &&
305 <                                tp->k[i].l != NULL) {
306 <                        tmMapPixels(rgb, &tp->k[i].l->brt, tp->k[i].l->chr, 1);
307 <                        dev_paintr(rgb, i&01 ? mx : x0, i&02 ? my : y0,
308 <                                        i&01 ? x1 : mx, i&02 ? y1 : my);
309 <                        csm[0] += rgb[0]; csm[1] += rgb[1]; csm[2] += rgb[2];
310 <                        nc++;
311 <                        quads &= ~CHF(i);
312 <                }
313 <                                        /* now do branches */
314 <        for (i = 0; i < 4; i++)
315 <                if (quads & CHF(i) && tp->flgs & BRF(i)) {
316 <                        redraw(rgb, tp->k[i].b, i&01 ? mx : x0, i&02 ? my : y0,
317 <                                        i&01 ? x1 : mx, i&02 ? y1 : my, l);
318 <                        csm[0] += rgb[0]; csm[1] += rgb[1]; csm[2] += rgb[2];
319 <                        nc++;
320 <                        quads &= ~CHF(i);
321 <                }
322 <        if (nc > 1) {
323 <                ca[0] = csm[0]/nc; ca[1] = csm[1]/nc; ca[2] = csm[2]/nc;
445 >        int     aorg, alen, borg, blen;
446 >                                        /* recompute mapping? */
447 >        if (redo)
448 >                qtL.tml = qtL.bl;
449 >                                        /* already done? */
450 >        if (qtL.tml == qtL.tl)
451 >                return(1);
452 >                                        /* compute segments */
453 >        aorg = qtL.tml;
454 >        if (qtL.tl >= aorg) {
455 >                alen = qtL.tl - aorg;
456 >                blen = 0;
457          } else {
458 <                ca[0] = csm[0]; ca[1] = csm[1]; ca[2] = csm[2];
458 >                alen = qtL.nl - aorg;
459 >                borg = 0;
460 >                blen = qtL.tl;
461          }
462 <        if (!quads) return;
463 <                                        /* fill in gaps with average */
464 <        for (i = 0; i < 4; i++)
465 <                if (quads & CHF(i))
466 <                        dev_paintr(ca, i&01 ? mx : x0, i&02 ? my : y0,
467 <                                        i&01 ? x1 : mx, i&02 ? y1 : my);
468 < }
469 <
335 <
336 < static
337 < update(ca, tp, x0, y0, x1, y1)  /* update tree display as needed */
338 < BYTE    ca[3];          /* returned average color */
339 < register RTREE  *tp;
340 < int     x0, y0, x1, y1;
341 < {
342 <        int     csm[3], nc;
343 <        BYTE    rgb[3];
344 <        int     gaps = 0;
345 <        int     mx, my;
346 <        register int    i;
347 <                                        /* compute midpoint */
348 <        mx = (x0 + x1) >> 1;
349 <        my = (y0 + y1) >> 1;
350 <        csm[0] = csm[1] = csm[2] = nc = 0;
351 <                                        /* do leaves first */
352 <        for (i = 0; i < 4; i++)
353 <                if ((tp->flgs & CHBRF(i)) == CHF(i)) {
354 <                        if (tp->k[i].l == NULL) {
355 <                                gaps |= 1<<i;   /* empty stem */
356 <                                continue;
357 <                        }
358 <                        tmMapPixels(rgb, &tp->k[i].l->brt, tp->k[i].l->chr, 1);
359 <                        dev_paintr(rgb, i&01 ? mx : x0, i&02 ? my : y0,
360 <                                        i&01 ? x1 : mx, i&02 ? y1 : my);
361 <                        csm[0] += rgb[0]; csm[1] += rgb[1]; csm[2] += rgb[2];
362 <                        nc++;
363 <                }
364 <                                        /* now do branches */
365 <        for (i = 0; i < 4; i++)
366 <                if ((tp->flgs & CHBRF(i)) == CHBRF(i)) {
367 <                        update(rgb, tp->k[i].b, i&01 ? mx : x0, i&02 ? my : y0,
368 <                                        i&01 ? x1 : mx, i&02 ? y1 : my);
369 <                        csm[0] += rgb[0]; csm[1] += rgb[1]; csm[2] += rgb[2];
370 <                        nc++;
371 <                }
372 <        if (nc > 1) {
373 <                ca[0] = csm[0]/nc; ca[1] = csm[1]/nc; ca[2] = csm[2]/nc;
374 <        } else {
375 <                ca[0] = csm[0]; ca[1] = csm[1]; ca[2] = csm[2];
462 >                                        /* (re)compute tone mapping? */
463 >        if (qtL.tml == qtL.bl) {
464 >                tmClearHisto();
465 >                tmAddHisto(qtL.brt+aorg, alen, 1);
466 >                if (blen > 0)
467 >                        tmAddHisto(qtL.brt+borg, blen, 1);
468 >                if (tmComputeMapping(0., 0., 0.) != TM_E_OK)
469 >                        return(0);
470          }
471 <                                        /* fill in gaps with average */
472 <        for (i = 0; gaps && i < 4; gaps >>= 1, i++)
473 <                if (gaps & 01)
474 <                        dev_paintr(ca, i&01 ? mx : x0, i&02 ? my : y0,
475 <                                        i&01 ? x1 : mx, i&02 ? y1 : my);
476 <        tp->flgs &= ~CH_ANY;            /* all done */
477 < }
478 <
385 <
386 < qtRedraw(x0, y0, x1, y1)        /* redraw part of our screen */
387 < int     x0, y0, x1, y1;
388 < {
389 <        int     lim[2][2];
390 <        BYTE    ca[3];
391 <
392 <        if (is_stump(&qtrunk))
393 <                return;
394 <        if ((lim[0][0]=x0) == 0 & (lim[1][0]=y0) == 0 &
395 <                (lim[0][1]=x1) == odev.hres & (lim[1][1]=y1) == odev.vres ||
396 <                        tmTop->lumap == NULL)
397 <                tmComputeMapping(0., 0., 0.);
398 <        redraw(ca, &qtrunk, 0, 0, odev.hres, odev.vres, lim);
399 < }
400 <
401 <
402 < qtUpdate()                      /* update our tree display */
403 < {
404 <        BYTE    ca[3];
405 <
406 <        if (is_stump(&qtrunk))
407 <                return;
408 <        if (tmTop->lumap == NULL)
409 <                tmComputeMapping(0., 0., 0.);
410 <        update(ca, &qtrunk, 0, 0, odev.hres, odev.vres);
471 >        if (tmMapPixels(qtL.rgb+aorg, qtL.brt+aorg,
472 >                        qtL.chr+aorg, alen) != TM_E_OK)
473 >                return(0);
474 >        if (blen > 0)
475 >                tmMapPixels(qtL.rgb+borg, qtL.brt+borg,
476 >                                qtL.chr+borg, blen);
477 >        qtL.tml = qtL.tl;
478 >        return(1);
479   }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines