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

Comparing ray/src/common/header.c (file contents):
Revision 2.36 by greg, Wed Aug 14 18:20:02 2019 UTC vs.
Revision 2.44 by greg, Sun Mar 6 16:27:55 2022 UTC

# Line 31 | Line 31 | static const char      RCSid[] = "$Id$";
31  
32   #include  "tiff.h"      /* for int32 */
33   #include  "rtio.h"
34 + #include  "color.h"
35   #include  "resolu.h"
36  
37   #define  MAXLINE        2048
# Line 57 | Line 58 | newheader(             /* identifying line of information header
58   {
59          fputs(HDRSTR, fp);
60          fputs(s, fp);
61 <        putc('\n', fp);
61 >        fputc('\n', fp);
62   }
63  
64  
# Line 167 | Line 168 | printargs(             /* print arguments to a file */
168          FILE  *fp
169   )
170   {
171 + #if defined(_WIN32) || defined(_WIN64)
172 +        extern char     *fixargv0(char *arg0);
173 +        char            myav0[128];
174 +                                /* clean up Windows executable path */
175 +        if (ac-- <= 0) return;
176 +        fputs(fixargv0(strcpy(myav0, *av++)), fp);
177 +        fputc(ac ? ' ' : '\n', fp);
178 + #endif
179          while (ac-- > 0) {
180                  fputword(*av++, fp);
181                  fputc(ac ? ' ' : '\n', fp);
# Line 201 | Line 210 | fputformat(            /* put out a format value */
210          FILE  *fp
211   )
212   {
213 +        int     align = 0;
214 +
215          fputs(FMTSTR, fp);
216          fputs(s, fp);
217 <        putc('\n', fp);
217 >                        /* pad to align binary type for mmap() */
218 >        if (globmatch(PICFMT, s))
219 >                align = 0;      /* not needed for picture data */
220 >        else if (!strncmp("float", s, 5))
221 >                align = sizeof(float);
222 >        else if (!strncmp("double", s, 6))
223 >                align = sizeof(double);
224 >        else if (!strncmp("16-bit", s, 6))
225 >                align = 2;
226 >        else if (!strncmp("32-bit", s, 6))
227 >                align = 4;
228 >        else if (!strncmp("64-bit", s, 6))
229 >                align = 8;
230 >        if (align) {
231 >                long    pos = ftell(fp);
232 >                if (pos >= 0) {
233 >                        pos = (pos + 2) % align;
234 >                        if (pos) align -= pos;
235 >                        else align = 0;
236 >                } else
237 >                        align = 0;
238 >        }
239 >        while (align-- > 0)
240 >                putc(' ', fp);
241 >        fputc('\n', fp);
242   }
243  
244  
# Line 225 | Line 260 | isbigendian(           /* header line says "BigEndian=1" (-1 if
260   {
261          const char      *be = BIGEND;
262  
263 <        while (*s & (*be != '=') && *s++ == *be)
263 >        while ((*s != '\0') & (*be != '=') && *s++ == *be)
264                  ++be;
265          if (*be != '=')
266                  return(-1);     /* irrelevant */
# Line 299 | Line 334 | mycheck(                       /* check a header line for format info. */
334          struct check    *scp = (struct check *)cp;
335  
336          if (!formatval(scp->fs, s) && scp->fp != NULL)
337 <                fputs(s, scp->fp);
337 >                return(fputs(s, scp->fp));
338  
339          return(0);
340   }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines