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

Comparing ray/src/px/ra_ps.c (file contents):
Revision 2.23 by gwlarson, Mon Jul 19 09:53:06 1999 UTC vs.
Revision 2.24 by greg, Sat Feb 22 02:07:28 2003 UTC

# Line 1 | Line 1
1 /* Copyright (c) 1997 Silicon Graphics, Inc. */
2
1   #ifndef lint
2 < static char SCCSid[] = "$SunId$ SGI";
2 > static const char       RCSid[] = "$Id$";
3   #endif
6
4   /*
5   *  Radiance picture to PostScript file translator -- one way!
6   */
# Line 61 | Line 58 | char  *progname;
58  
59   int  xmax, ymax;                        /* input image dimensions */
60  
64 extern char  *malloc();
61   extern double   unit2inch();
62  
63  
# Line 305 | Line 301 | char  **av;
301                                          /* EPS comments */
302          puts("%!PS-Adobe-2.0 EPSF-2.0");
303          printf("%%%%Title: "); printargs(ac, av, stdout);
304 <        printf("%%%%Creator: %s\n", SCCSid);
304 >        printf("%%%%Creator: %s\n", progname);
305          printf("%%%%Pages: %d\n", ncopies);
306          if (landscape = xmax > pixaspect*ymax)
307                  puts("%%Orientation: Landscape");
# Line 474 | Line 470 | ra2ps()                                /* convert Radiance scanlines to 6-bit */
470          }
471          putchar('\n');
472                                                  /* free scanline */
473 <        free((char *)scanin);
473 >        free((void *)scanin);
474   }
475  
476  

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines