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.17 by gwlarson, Wed Oct 21 17:48:06 1998 UTC vs.
Revision 2.19 by greg, Tue Feb 25 02:47:21 2003 UTC

# Line 1 | Line 1
1 < /* Copyright (c) 1998 Silicon Graphics, Inc. */
2 <
3 < /* SCCSid "$SunId$ SGI" */
4 <
1 > /* RCSid $Id$ */
2   /*
3   *  color.h - header for routines using pixel color values.
4   *
# Line 13 | Line 10
10   *  three single byte mantissas and a common exponent.
11   */
12  
13 + #include "copyright.h"
14 +
15 + #include <stdio.h>
16 + #include <stdlib.h>
17 +
18 + #ifdef __cplusplus
19 + extern "C" {
20 + #endif
21 +
22   #define  RED            0
23   #define  GRN            1
24   #define  BLU            2
# Line 175 | Line 181 | typedef float  COLORMAT[3][3]; /* color coordinate con
181   #define  fputcolcor(cc,fp)      fprintf(fp,"%s %f %f %f\n",COLCORSTR, \
182                                          (cc)[RED],(cc)[GRN],(cc)[BLU])
183  
178 #ifdef  DCL_ATOF
179 extern double  atof(), ldexp(), frexp();
180 #endif
181
184   /*
185   * Conversions to and from XYZ space generally don't apply WHTEFFICACY.
186   * If you need Y to be luminance (cd/m^2), this must be applied when
187   * converting from radiance (watts/sr/m^2).
188   */
189  
190 < extern RGBPRIMS  stdprims;              /* standard primary chromaticities */
191 < extern COLORMAT  rgb2xyzmat;            /* RGB to XYZ conversion matrix */
192 < extern COLORMAT  xyz2rgbmat;            /* XYZ to RGB conversion matrix */
193 < extern COLOR  cblack, cwhite;           /* black (0,0,0) and white (1,1,1) */
190 > extern RGBPRIMS  stdprims;      /* standard primary chromaticities */
191 > extern COLORMAT  rgb2xyzmat;    /* RGB to XYZ conversion matrix */
192 > extern COLORMAT  xyz2rgbmat;    /* XYZ to RGB conversion matrix */
193 > extern COLOR  cblack, cwhite;   /* black (0,0,0) and white (1,1,1) */
194  
195   #define  CGAMUT_LOWER           01
196   #define  CGAMUT_UPPER           02
# Line 200 | Line 202 | extern COLOR  cblack, cwhite;          /* black (0,0,0) and wh
202   #define  cpcolormat(md,ms)      bcopy((char *)ms,(char *)md,sizeof(COLORMAT))
203   #else
204   #define  cpcolormat(md,ms)      memcpy((char *)md,(char *)ms,sizeof(COLORMAT))
205 + #endif
206 +
207 + #ifdef NOPROTO
208 +                                        /* defined in color.c */
209 + extern char     *tempbuffer();
210 + extern int      fwritecolrs();
211 + extern int      freadcolrs();
212 + extern int      fwritescan();
213 + extern int      freadscan();
214 + extern void     setcolr();
215 + extern void     colr_color();
216 + extern int      bigdiff();
217 +                                        /* defined in spec_rgb.c */
218 + extern void     spec_rgb();
219 + extern void     spec_cie();
220 + extern void     cie_rgb();
221 + extern int      clipgamut();
222 + extern void     colortrans();
223 + extern void     multcolormat();
224 + extern void     compxyz2rgbmat();
225 + extern void     comprgb2xyzmat();
226 + extern void     comprgb2rgbmat();
227 + extern void     compxyzWBmat();
228 + extern void     compxyz2rgbWBmat();
229 + extern void     comprgb2xyzWBmat();
230 + extern void     comprgb2rgbWBmat();
231 +                                        /* defined in colrops.c */
232 + extern int      setcolrcor();
233 + extern int      setcolrinv();
234 + extern int      setcolrgam();
235 + extern int      colrs_gambs();
236 + extern int      gambs_colrs();
237 + extern void     shiftcolrs();
238 + extern void     normcolrs();
239 +
240 + #else
241 +                                        /* defined in color.c */
242 + extern char     *tempbuffer(unsigned int len);
243 + extern int      fwritecolrs(COLR *scanline, int len, FILE *fp);
244 + extern int      freadcolrs(COLR *scanline, int len, FILE *fp);
245 + extern int      fwritescan(COLOR *scanline, int len, FILE *fp);
246 + extern int      freadscan(COLOR *scanline, int len, FILE *fp);
247 + extern void     setcolr(COLR clr, double r, double g, double b);
248 + extern void     colr_color(COLOR col, COLR clr);
249 + extern int      bigdiff(COLOR c1, COLOR c2, double md);
250 +                                        /* defined in spec_rgb.c */
251 + extern void     spec_rgb(COLOR col, int s, int e);
252 + extern void     spec_cie(COLOR col, int s, int e);
253 + extern void     cie_rgb(COLOR rgb, COLOR xyz);
254 + extern int      clipgamut(COLOR col, double brt, int gamut,
255 +                                COLOR lower, COLOR upper);
256 + extern void     colortrans(COLOR c2, COLORMAT mat, COLOR c1);
257 + extern void     multcolormat(COLORMAT m3, COLORMAT m2,
258 +                                        COLORMAT m1);
259 + extern void     compxyz2rgbmat(COLORMAT mat, RGBPRIMS pr);
260 + extern void     comprgb2xyzmat(COLORMAT mat, RGBPRIMS pr);
261 + extern void     comprgb2rgbmat(COLORMAT mat, RGBPRIMS pr1, RGBPRIMS pr2);
262 + extern void     compxyzWBmat(COLORMAT mat, float wht1[2],
263 +                                float wht2[2]);
264 + extern void     compxyz2rgbWBmat(COLORMAT mat, RGBPRIMS pr);
265 + extern void     comprgb2xyzWBmat(COLORMAT mat, RGBPRIMS pr);
266 + extern void     comprgb2rgbWBmat(COLORMAT mat, RGBPRIMS pr1, RGBPRIMS pr2);
267 +                                        /* defined in colrops.c */
268 + extern int      setcolrcor(double (*f)(), double a2);
269 + extern int      setcolrinv(double (*f)(), double a2);
270 + extern int      setcolrgam(double g);
271 + extern int      colrs_gambs(COLR *scan, int len);
272 + extern int      gambs_colrs(COLR *scan, int len);
273 + extern void     shiftcolrs(COLR *scan, int len, int adjust);
274 + extern void     normcolrs(COLR *scan, int len, int adjust);
275 +
276 + #endif
277 +
278 + #ifdef __cplusplus
279 + }
280   #endif

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines