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

Comparing ray/src/px/ra_t16.c (file contents):
Revision 1.3 by greg, Sun Jul 23 11:35:48 1989 UTC vs.
Revision 1.5 by greg, Fri Oct 20 16:42:28 1989 UTC

# Line 15 | Line 15 | static char SCCSid[] = "$SunId$ LBL";
15  
16   #include  "color.h"
17  
18 + #include  "random.h"
19 +
20   #include  "targa.h"
21  
22   #define  goodpic(h)     (((h)->dataType==IM_RGB || (h)->dataType==IM_CRGB) \
# Line 93 | Line 95 | char  *argv[];
95                                          /* put header */
96                  printargs(argc, argv, stdout);
97                  putchar('\n');
98 <                printf("-Y %d +X %d\n", head.y, head.x);
98 >                fputresolu(YMAJOR|YDECR, head.x, head.y, stdout);
99                                          /* convert file */
100                  tg2ra(&head);
101          } else {
102                  getheader(stdin, NULL);
103 <                if (scanf("-Y %d +X %d\n", &head.y, &head.x) != 2)
103 >                if (fgetresolu(&head.x, &head.y, stdin) != (YMAJOR|YDECR))
104                          quiterr("bad picture file");
105                                          /* assign header */
106                  head.textSize = 0;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines