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

Comparing ray/src/common/color.h (file contents):
Revision 2.15 by gregl, Wed Sep 17 14:46:26 1997 UTC vs.
Revision 2.17 by gwlarson, Wed Oct 21 17:48:06 1998 UTC

# Line 1 | Line 1
1 < /* Copyright (c) 1997 Regents of the University of California */
1 > /* Copyright (c) 1998 Silicon Graphics, Inc. */
2  
3 < /* SCCSid "$SunId$ LBL" */
3 > /* SCCSid "$SunId$ SGI" */
4  
5   /*
6   *  color.h - header for routines using pixel color values.
7   *
8 < *     12/31/85
8 > *  Must be included after X11 headers, since they declare a BYTE type.
9   *
10   *  Two color representations are used, one for calculation and
11   *  another for storage.  Calculation is done with three floats
# Line 23 | Line 23
23   #define  COLXS          128     /* excess used for exponent */
24   #define  WHT            3       /* used for RGBPRIMS type */
25  
26 < typedef unsigned char  BYTE;    /* 8-bit unsigned integer */
26 > #undef  BYTE
27 > #define  BYTE   unsigned char   /* 8-bit unsigned integer */
28  
29   typedef BYTE  COLR[4];          /* red, green, blue (or X,Y,Z), exponent */
30  
# Line 198 | Line 199 | extern COLOR  cblack, cwhite;          /* black (0,0,0) and wh
199   #ifdef BSD
200   #define  cpcolormat(md,ms)      bcopy((char *)ms,(char *)md,sizeof(COLORMAT))
201   #else
202 < #ifndef memcpy
202 < extern char  *memcpy();
203 < #endif
204 < #define  cpcolormat(md,ms)      (void)memcpy((char *)md,(char *)ms,sizeof(COLORMAT))
202 > #define  cpcolormat(md,ms)      memcpy((char *)md,(char *)ms,sizeof(COLORMAT))
203   #endif

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines