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 1.3 by greg, Fri Oct 20 16:45:25 1989 UTC vs.
Revision 2.5 by greg, Fri Jun 4 14:51:41 1993 UTC

# Line 1 | Line 1
1 < /* Copyright (c) 1986 Regents of the University of California */
1 > /* Copyright (c) 1991 Regents of the University of California */
2  
3   /* SCCSid "$SunId$ LBL" */
4  
# Line 40 | Line 40 | typedef float  COLOR[3];       /* red, green, blue */
40  
41   #define  multcolor(c1,c2)       ((c1)[0]*=(c2)[0],(c1)[1]*=(c2)[1],(c1)[2]*=(c2)[2])
42  
43 < #define  bright(col)            (.30*(col)[RED]+.59*(col)[GRN]+.11*(col)[BLU])
43 > #ifdef  NTSC
44 > #define  bright(col)            (.295*(col)[RED]+.636*(col)[GRN]+.070*(col)[BLU])
45 > #define  normbright(c)          (int)((74L*(c)[RED]+164L*(c)[GRN]+18L*(c)[BLU])>>8)
46 > #else
47 > #define  bright(col)            (.263*(col)[RED]+.655*(col)[GRN]+.082*(col)[BLU])
48 > #define  normbright(c)          (int)((67L*(c)[RED]+168L*(c)[GRN]+21L*(c)[BLU])>>8)
49 > #endif
50  
51 +                                /* luminous efficacies over visible spectrum */
52 + #define  MAXEFFICACY            683.            /* defined maximum at 550 nm */
53 + #define  WHTEFFICACY            179.            /* uniform white light */
54 + #define  D65EFFICACY            203.            /* standard illuminant D65 */
55 + #define  INCEFFICACY            160.            /* illuminant A (incand.) */
56 + #define  SUNEFFICACY            208.            /* illuminant B (solar dir.) */
57 + #define  SKYEFFICACY            D65EFFICACY     /* skylight */
58 + #define  DAYEFFICACY            D65EFFICACY     /* combined sky and solar */
59 +
60 + #define  luminance(col)         (WHTEFFICACY * bright(col))
61 +
62   #define  intens(col)            ( (col)[0] > (col)[1] \
63                                  ? (col)[0] > (col)[2] ? (col)[0] : (col)[2] \
64                                  : (col)[1] > (col)[2] ? (col)[1] : (col)[2] )
# Line 50 | Line 67 | typedef float  COLOR[3];       /* red, green, blue */
67                                  ldexp((c)[p]+.5,(int)(c)[EXP]-(COLXS+8)) : \
68                                  0. )
69  
53 #define  norm_bright(c)         (int)((77L*(c)[RED]+151L*(c)[GRN]+28L*(c)[BLU])/256)
54
70   #define  WHTCOLOR               {1.0,1.0,1.0}
71   #define  BLKCOLOR               {0.0,0.0,0.0}
72   #define  WHTCOLR                {128,128,128,COLXS+1}
73   #define  BLKCOLR                {0,0,0,0}
74  
75 <                                /* definitions for resolution header */
76 < #define  XDECR                  1
62 < #define  YDECR                  2
63 < #define  YMAJOR                 4
75 >                                /* picture format identifier */
76 > #define  COLRFMT                "32-bit_rle_rgbe"
77  
78 < extern double  ldexp();
78 >                                /* macros for exposures */
79 > #define  EXPOSSTR               "EXPOSURE="
80 > #define  LEXPOSSTR              9
81 > #define  isexpos(hl)            (!strncmp(hl,EXPOSSTR,LEXPOSSTR))
82 > #define  exposval(hl)           atof((hl)+LEXPOSSTR)
83 > #define  fputexpos(ex,fp)       fprintf(fp,"%s%e\n",EXPOSSTR,ex)
84 >
85 >                                /* macros for pixel aspect ratios */
86 > #define  ASPECTSTR              "PIXASPECT="
87 > #define  LASPECTSTR             10
88 > #define  isaspect(hl)           (!strncmp(hl,ASPECTSTR,LASPECTSTR))
89 > #define  aspectval(hl)          atof((hl)+LASPECTSTR)
90 > #define  fputaspect(pa,fp)      fprintf(fp,"%s%f\n",ASPECTSTR,pa)
91 >
92 >                                /* macros for color correction */
93 > #define  COLCORSTR              "COLORCORR="
94 > #define  LCOLCORSTR             10
95 > #define  iscolcor(hl)           (!strncmp(hl,COLCORSTR,LCOLCORSTR))
96 > #define  colcorval(cc,hl)       sscanf(hl+LCOLCORSTR,"%f %f %f", \
97 >                                        &(cc)[RED],&(cc)[GRN],&(cc)[BLU])
98 > #define  fputcolcor(cc,fp)      fprintf(fp,"%s %f %f %f\n",COLCORSTR, \
99 >                                        (cc)[RED],(cc)[GRN],(cc)[BLU])

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines