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

Comparing ray/src/rt/data.c (file contents):
Revision 2.19 by schorsch, Thu Jun 5 19:29:34 2003 UTC vs.
Revision 2.23 by schorsch, Mon Jul 21 22:30:19 2003 UTC

# Line 7 | Line 7 | static const char      RCSid[] = "$Id$";
7  
8   #include "copyright.h"
9  
10 + #include  <time.h>
11 +
12   #include  "standard.h"
13 + #include  "platform.h"
14   #include  "color.h"
15   #include  "resolu.h"
16   #include  "data.h"
# Line 159 | Line 162 | char  *pname;
162          COLR  *scanin;
163          int  sl, ns;
164          RESOLU  inpres;
165 <        FLOAT  loc[2];
165 >        RREAL  loc[2];
166          int  y;
167          register int  x, i;
168          register DATARRAY  *pp;
# Line 231 | Line 234 | char  *pname;
234          fclose(fp);
235          i = hash(pname);
236          pp[0].next = dtab[i];           /* link into picture list */
237 <        copystruct(&pp[1], &pp[0]);
238 <        copystruct(&pp[2], &pp[0]);
237 >        pp[1] = pp[0];
238 >        pp[2] = pp[0];
239          pp[0].type = RED;               /* differentiate RGB records */
240          pp[1].type = GRN;
241          pp[2].type = BLU;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines