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

Comparing ray/src/px/mt160r.c (file contents):
Revision 1.5 by greg, Thu Jan 25 08:28:33 1990 UTC vs.
Revision 1.7 by greg, Thu Apr 18 14:35:09 1991 UTC

# Line 49 | Line 49 | char  *fname;
49                  return(-1);
50          }
51                                  /* discard header */
52 <        getheader(input, NULL);
52 >        if (checkheader(input, COLRFMT, NULL) < 0) {
53 >                fprintf(stderr, "%s: not a Radiance picture\n", fname);
54 >                return(-1);
55 >        }
56                                  /* get picture dimensions */
57          if (fgetresolu(&xres, &yres, input) != (YMAJOR|YDECR)) {
58                  fprintf(stderr, "%s: bad picture size\n", fname);
# Line 67 | Line 70 | char  *fname;
70                          fprintf(stderr, "%s: read error (y=%d)\n", fname, i);
71                          return(-1);
72                  }
73 <                normcolrs(scanline, xres);
73 >                normcolrs(scanline, xres, 0);
74                  plotscan(scanline, xres, i);
75          }
76  

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines