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

Comparing ray/src/util/glareval.c (file contents):
Revision 1.5 by greg, Thu Mar 21 12:28:23 1991 UTC vs.
Revision 1.6 by greg, Thu Mar 21 16:46:25 1991 UTC

# Line 95 | Line 95 | seekerr:
95   }
96  
97  
98 + #ifdef DEBUG
99   pict_stats()                    /* print out picture read statistics */
100   {
101          static long     lastcall = 0L;  /* ncall at last report */
# Line 102 | Line 103 | pict_stats()                   /* print out picture read statistics */
103  
104          if (ncall == lastcall)
105                  return;
106 <        fprintf(stderr, "%s: %ld scanlines read, %ld reused\n",
107 <                        progname, nread-lastread,
107 <                        (ncall-lastcall)-(nread-lastread));
106 >        fprintf(stderr, "%s: %ld scanlines read in %ld calls\n",
107 >                        progname, nread-lastread, ncall-lastcall);
108          lastcall = ncall;
109          lastread = nread;
110   }
111 + #endif
112  
113  
114   double

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines