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

Comparing ray/src/util/dcglare.c (file contents):
Revision 2.5 by greg, Thu Mar 3 03:55:13 2022 UTC vs.
Revision 2.7 by greg, Wed Mar 5 02:54:58 2025 UTC

# Line 93 | Line 93 | sum_images(const char *fspec, const CMATRIX *cv, FILE
93                  }
94                                                          /* flat file check */
95                  if ((data_start = ftell(fp)) > 0 && fseek(fp, 0L, SEEK_END) == 0) {
96 <                        flat_file = (ftell(fp) == data_start + sizeof(COLR)*xr*yr);
96 >                        flat_file = (ftell(fp) >= data_start + sizeof(COLR)*xr*yr);
97                          if (fseek(fp, data_start, SEEK_SET) < 0) {
98                                  sprintf(errmsg, "cannot seek on picture '%s'", fname);
99                                  error(SYSTEM, errmsg);
# Line 475 | Line 475 | main(int argc, char *argv[])
475                                          fprintf(ofp, "FRAME=%d\n", i);
476                                          fprintf(ofp, "NROWS=%d\n", rvec->nrows);
477                                          fputs("NCOLS=1\nNCOMP=3\n", ofp);
478 <                                        if ((outfmt == 'f') | (outfmt == 'd'))
478 >                                        if ((outfmt == DTfloat) | (outfmt == DTdouble))
479                                                  fputendian(ofp);
480                                          fputformat(cm_fmt_id[outfmt], ofp);
481                                          fputc('\n', ofp);
# Line 508 | Line 508 | main(int argc, char *argv[])
508                                  fprintf(ofp, "NCOLS=%d\n", rmtx->ncols);
509                                  fputs("NCOMP=3\n", ofp);
510   #endif /* DC_GLARE */
511 <                                if ((outfmt == 'f') | (outfmt == 'd'))
511 >                                if ((outfmt == DTfloat) | (outfmt == DTdouble))
512                                          fputendian(ofp);
513                                  fputformat(cm_fmt_id[outfmt], ofp);
514                                  fputc('\n', ofp);

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines