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

Comparing ray/src/hd/rholo3.c (file contents):
Revision 3.3 by gregl, Tue Nov 4 09:58:24 1997 UTC vs.
Revision 3.10 by gregl, Mon Nov 24 15:18:30 1997 UTC

# Line 15 | Line 15 | static char SCCSid[] = "$SunId$ SGI";
15   #define sgn(x)          ((x) > 0 ? 1 : (x) < 0 ? -1 : 0)
16  
17  
18 < static PACKHEAD *complist;      /* list of beams to compute */
19 < static int      complen;        /* length of complist */
20 < static int      listpos;        /* current list position for next_packet */
21 < static int      lastin = -1;    /* last ordered position in list */
18 > static PACKHEAD *complist=NULL; /* list of beams to compute */
19 > static int      complen=0;      /* length of complist */
20 > static int      listpos=0;      /* current list position for next_packet */
21 > static int      lastin= -1;     /* last ordered position in list */
22  
23  
24   int
# Line 110 | Line 110 | int    nents;
110                                          lastin = -1;    /* flag full sort */
111                                          break;
112                                  }
113                if (lastin < 0)         /* sort updated list */
114                        sortcomplist();
113                  return;                 /* no display */
114          default:
115                  error(CONSISTENCY, "bundle_set called with unknown operation");
116          }
117 <        n = 0;                          /* allocate packet holder */
118 <        for (i = 0; i < nents; i++)
119 <                if (clist[i].nr > n)
120 <                        n = clist[i].nr;
123 <        p = (PACKHEAD *)malloc(sizeof(PACKHEAD) + n*sizeof(RAYVAL));
117 >        if (outdev == NULL)
118 >                return;
119 >        n = 8*RPACKSIZ;                         /* allocate packet holder */
120 >        p = (PACKHEAD *)malloc(packsiz(n));
121          if (p == NULL)
122                  goto memerr;
123                                          /* display what we have */
124          for (i = 0; i < nents; i++)
125                  if ((b = hdgetbeam(hdlist[clist[i].hd], clist[i].bi)) != NULL) {
126 <                        bcopy((char *)hdbray(b), (char *)(p+1),
126 >                        if (b->nrm > n) {
127 >                                n = b->nrm;
128 >                                p = (PACKHEAD *)realloc((char *)p, packsiz(n));
129 >                                if (p == NULL)
130 >                                        goto memerr;
131 >                        }
132 >                        bcopy((char *)hdbray(b), (char *)packra(p),
133                                          (p->nr=b->nrm)*sizeof(RAYVAL));
134 <                        disp_packet((PACKET *)p);
134 >                        p->hd = clist[i].hd;
135 >                        p->bi = clist[i].bi;
136 >                        disp_packet(p);
137                  }
138          free((char *)p);                /* clean up */
139          return;
# Line 236 | Line 241 | init_global()                  /* initialize global ray computation *
241                          while (k--)
242                                  complist[k].nr = frac * complist[k].nr;
243          }
244 <        listpos = 0; lastin = -1;
244 >        listpos = 0; lastin = -1;       /* flag initial sort */
245   }
246  
247  
# Line 272 | Line 277 | sortcomplist()                 /* fix our list order */
277          done_packets(flush_queue());
278          if (complen <= 0)       /* check to see if there is even a list */
279                  return;
280 <        if (lastin < 0)         /* flag to sort entire list */
280 >        if (lastin < 0 || listpos*4 >= complen*3)
281                  qsort((char *)complist, complen, sizeof(PACKHEAD), beamcmp);
282          else if (listpos) {     /* else sort and merge sublist */
283                  list2 = (PACKHEAD *)malloc(listpos*sizeof(PACKHEAD));
# Line 284 | Line 289 | sortcomplist()                 /* fix our list order */
289                                  complist+listpos, complen-listpos);
290                  free((char *)list2);
291          }
287                                        /* check for all finished */
288        if (complist[0].nr <= bnrays(hdlist[complist[0].hd],complist[0].bi)) {
289                free((char *)complist);
290                complist = NULL;
291                complen = 0;
292        }
292                                          /* drop satisfied requests */
293          for (i = complen; i-- && complist[i].nr <=
294                          bnrays(hdlist[complist[i].hd],complist[i].bi); )
295                  ;
296 <        if (i < complen-1) {
296 >        if (i < 0) {
297 >                free((char *)complist);
298 >                complist = NULL;
299 >                complen = 0;
300 >        } else if (i < complen-1) {
301                  list2 = (PACKHEAD *)realloc((char *)complist,
302                                  (i+1)*sizeof(PACKHEAD));
303                  if (list2 != NULL) {
# Line 325 | Line 328 | register PACKET        *p;
328          int     ncomp;
329          register int    i;
330  
328        if (complen <= 0)
329                return(0);
331          if (listpos > lastin)           /* time to sort the list */
332                  sortcomplist();
333 +        if (complen <= 0)
334 +                return(0);
335          p->hd = complist[listpos].hd;
336          p->bi = complist[listpos].bi;
337          ncomp = bnrays(hdlist[p->hd],p->bi);

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines