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.10 by greg, Sun Oct 15 14:07:59 1995 UTC vs.
Revision 2.13 by greg, Fri Jan 31 12:39:12 1997 UTC

# Line 1 | Line 1
1 < /* Copyright (c) 1991 Regents of the University of California */
1 > /* Copyright (c) 1997 Regents of the University of California */
2  
3   /* SCCSid "$SunId$ LBL" */
4  
# Line 187 | Line 187 | extern double  atof(), ldexp(), frexp();
187   extern RGBPRIMS  stdprims;              /* standard primary chromaticities */
188   extern COLORMAT  rgb2xyzmat;            /* RGB to XYZ conversion matrix */
189   extern COLORMAT  xyz2rgbmat;            /* XYZ to RGB conversion matrix */
190 + extern COLOR  cblack, cwhite;           /* black (0,0,0) and white (1,1,1) */
191  
192 < #define  cie_rgb(rgb,xyz)       colortrans(rgb,xyz2rgbmat,xyz)
192 > #define  CGAMUT_LOWER           01
193 > #define  CGAMUT_UPPER           02
194 > #define  CGAMUT                 (CGAMUT_LOWER|CGAMUT_UPPER)
195 >
196   #define  rgb_cie(xyz,rgb)       colortrans(xyz,rgb2xyzmat,rgb)
197  
198   #ifdef BSD

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines