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

Comparing ray/src/hd/rhoptimize.c (file contents):
Revision 3.21 by schorsch, Mon Mar 7 01:15:01 2016 UTC vs.
Revision 3.22 by greg, Fri Oct 5 19:19:16 2018 UTC

# Line 98 | Line 98 | main(
98                                  outname, inpname);
99                  error(SYSTEM, errmsg);
100          }
101 <        return 0;
101 >        return(0);
102   }
103  
104  
# Line 162 | Line 162 | rhinitcopy(    /* open files and copy header */
162  
163   static int
164   nuniq(                  /* sort unique rays to front of beam list */
165 <        register RAYVAL *rva,
165 >        RAYVAL  *rva,
166          int     n
167   )
168   {
169 <        register int    i, j;
169 >        int     i, j;
170          RAYVAL  rtmp;
171  
172          for (j = 0; j < n; j++)
# Line 194 | Line 194 | bpcmp(                 /* compare beam positions on disk */
194          const void      *b2p
195   )
196   {
197 <        register off_t  pdif = beamdir[*(int*)b1p].fo - beamdir[*(int*)b2p].fo;
197 >        off_t   pdif = beamdir[*(int*)b1p].fo - beamdir[*(int*)b2p].fo;
198  
199          if (pdif < 0L) return(-1);
200          return(pdif > 0L);
# Line 209 | Line 209 | xferclump(             /* transfer the given clump to hout and fr
209          int     nb
210   )
211   {
212 <        register int    i;
213 <        register BEAM   *bp;
212 >        int     i;
213 >        BEAM    *bp;
214          int     n;
215  
216          beamdir = hp->bi;               /* sort based on file position */
# Line 249 | Line 249 | copysect(              /* copy holodeck section from ifd to ofd */
249  
250   void
251   eputs(s)                        /* put error message to stderr */
252 < register char  *s;
252 > char  *s;
253   {
254          static int  midline = 0;
255  

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines