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.24 by greg, Mon Jun 30 19:04:29 2003 UTC

# Line 1 | Line 1
1 < /* Copyright (c) 1991 Regents of the University of California */
2 <
3 < /* SCCSid "$SunId$ LBL" */
4 <
1 > /* RCSid $Id$ */
2   /*
3   *  color.h - header for routines using pixel color values.
4   *
5 < *     12/31/85
5 > *  Must be included after X11 headers, since they declare a BYTE type.
6   *
7   *  Two color representations are used, one for calculation and
8   *  another for storage.  Calculation is done with three floats
9   *  for speed.  Stored color values use 4 bytes which contain
10   *  three single byte mantissas and a common exponent.
11   */
12 + #ifndef _RAD_COLOR_H_
13 + #define _RAD_COLOR_H_
14 + #ifdef __cplusplus
15 + extern "C" {
16 + #endif
17  
18 + #include <stdlib.h>
19 +
20   #define  RED            0
21   #define  GRN            1
22   #define  BLU            2
# Line 23 | Line 27
27   #define  COLXS          128     /* excess used for exponent */
28   #define  WHT            3       /* used for RGBPRIMS type */
29  
30 < typedef unsigned char  BYTE;    /* 8-bit unsigned integer */
30 > #undef  BYTE
31 > #define  BYTE   unsigned char   /* 8-bit unsigned integer */
32  
33   typedef BYTE  COLR[4];          /* red, green, blue (or X,Y,Z), exponent */
34  
# Line 69 | Line 74 | typedef float  COLORMAT[3][3]; /* color coordinate con
74   #define  CIE_y_w                0.3333
75   #endif
76  
77 < #define  STDPRIMS       {CIE_x_r,CIE_y_r,CIE_x_g,CIE_y_g, \
78 <                                CIE_x_b,CIE_y_b,CIE_x_w,CIE_y_w}
77 > #define  STDPRIMS       {{CIE_x_r,CIE_y_r},{CIE_x_g,CIE_y_g}, \
78 >                                {CIE_x_b,CIE_y_b},{CIE_x_w,CIE_y_w}}
79  
80   #define CIE_D           (       CIE_x_r*(CIE_y_g - CIE_y_b) + \
81                                  CIE_x_g*(CIE_y_b - CIE_y_r) + \
# Line 174 | Line 179 | typedef float  COLORMAT[3][3]; /* color coordinate con
179   #define  fputcolcor(cc,fp)      fprintf(fp,"%s %f %f %f\n",COLCORSTR, \
180                                          (cc)[RED],(cc)[GRN],(cc)[BLU])
181  
177 #ifdef  DCL_ATOF
178 extern double  atof(), ldexp(), frexp();
179 #endif
180
182   /*
183   * Conversions to and from XYZ space generally don't apply WHTEFFICACY.
184   * If you need Y to be luminance (cd/m^2), this must be applied when
185   * converting from radiance (watts/sr/m^2).
186   */
187  
188 < extern RGBPRIMS  stdprims;              /* standard primary chromaticities */
189 < extern COLORMAT  rgb2xyzmat;            /* RGB to XYZ conversion matrix */
190 < extern COLORMAT  xyz2rgbmat;            /* XYZ to RGB conversion matrix */
188 > extern RGBPRIMS  stdprims;      /* standard primary chromaticities */
189 > extern COLORMAT  rgb2xyzmat;    /* RGB to XYZ conversion matrix */
190 > extern COLORMAT  xyz2rgbmat;    /* XYZ to RGB conversion matrix */
191 > extern COLOR  cblack, cwhite;   /* black (0,0,0) and white (1,1,1) */
192  
193 < #define  cie_rgb(rgb,xyz)       colortrans(rgb,xyz2rgbmat,xyz)
193 > #define  CGAMUT_LOWER           01
194 > #define  CGAMUT_UPPER           02
195 > #define  CGAMUT                 (CGAMUT_LOWER|CGAMUT_UPPER)
196 >
197   #define  rgb_cie(xyz,rgb)       colortrans(xyz,rgb2xyzmat,rgb)
198  
199 < #ifdef BSD
200 < #define  cpcolormat(md,ms)      bcopy((char *)ms,(char *)md,sizeof(COLORMAT))
201 < #else
202 < extern char  *memcpy();
203 < #define  cpcolormat(md,ms)      (void)memcpy((char *)md,(char *)ms,sizeof(COLORMAT))
199 > #define  cpcolormat(md,ms)      memcpy((void *)md,(void *)ms,sizeof(COLORMAT))
200 >
201 >                                        /* defined in color.c */
202 > extern char     *tempbuffer(unsigned int len);
203 > extern int      fwritecolrs(COLR *scanline, int len, FILE *fp);
204 > extern int      freadcolrs(COLR *scanline, int len, FILE *fp);
205 > extern int      fwritescan(COLOR *scanline, int len, FILE *fp);
206 > extern int      freadscan(COLOR *scanline, int len, FILE *fp);
207 > extern void     setcolr(COLR clr, double r, double g, double b);
208 > extern void     colr_color(COLOR col, COLR clr);
209 > extern int      bigdiff(COLOR c1, COLOR c2, double md);
210 >                                        /* defined in spec_rgb.c */
211 > extern void     spec_rgb(COLOR col, int s, int e);
212 > extern void     spec_cie(COLOR col, int s, int e);
213 > extern void     cie_rgb(COLOR rgb, COLOR xyz);
214 > extern int      clipgamut(COLOR col, double brt, int gamut,
215 >                                COLOR lower, COLOR upper);
216 > extern void     colortrans(COLOR c2, COLORMAT mat, COLOR c1);
217 > extern void     multcolormat(COLORMAT m3, COLORMAT m2,
218 >                                        COLORMAT m1);
219 > extern void     compxyz2rgbmat(COLORMAT mat, RGBPRIMS pr);
220 > extern void     comprgb2xyzmat(COLORMAT mat, RGBPRIMS pr);
221 > extern void     comprgb2rgbmat(COLORMAT mat, RGBPRIMS pr1, RGBPRIMS pr2);
222 > extern void     compxyzWBmat(COLORMAT mat, float wht1[2],
223 >                                float wht2[2]);
224 > extern void     compxyz2rgbWBmat(COLORMAT mat, RGBPRIMS pr);
225 > extern void     comprgb2xyzWBmat(COLORMAT mat, RGBPRIMS pr);
226 > extern void     comprgb2rgbWBmat(COLORMAT mat, RGBPRIMS pr1, RGBPRIMS pr2);
227 >                                        /* defined in colrops.c */
228 > extern int      setcolrcor(double (*f)(), double a2);
229 > extern int      setcolrinv(double (*f)(), double a2);
230 > extern int      setcolrgam(double g);
231 > extern int      colrs_gambs(COLR *scan, int len);
232 > extern int      gambs_colrs(COLR *scan, int len);
233 > extern void     shiftcolrs(COLR *scan, int len, int adjust);
234 > extern void     normcolrs(COLR *scan, int len, int adjust);
235 >
236 >
237 > #ifdef __cplusplus
238 > }
239   #endif
240 + #endif /* _RAD_COLOR_H_ */
241 +

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines