--- ray/src/common/color.h 1995/10/15 14:07:59 2.10 +++ ray/src/common/color.h 1997/01/30 19:14:37 2.12 @@ -1,4 +1,4 @@ -/* Copyright (c) 1991 Regents of the University of California */ +/* Copyright (c) 1997 Regents of the University of California */ /* SCCSid "$SunId$ LBL" */ @@ -188,8 +188,8 @@ extern RGBPRIMS stdprims; /* standard primary chroma extern COLORMAT rgb2xyzmat; /* RGB to XYZ conversion matrix */ extern COLORMAT xyz2rgbmat; /* XYZ to RGB conversion matrix */ -#define cie_rgb(rgb,xyz) colortrans(rgb,xyz2rgbmat,xyz) -#define rgb_cie(xyz,rgb) colortrans(xyz,rgb2xyzmat,rgb) +#define cie_rgb(rgb,xyz) colortrans(rgb,xyz2rgbmat,xyz,1) +#define rgb_cie(xyz,rgb) colortrans(xyz,rgb2xyzmat,rgb,1) #ifdef BSD #define cpcolormat(md,ms) bcopy((char *)ms,(char *)md,sizeof(COLORMAT))