ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/radiance/ray/src/px/clrtab.c
(Generate patch)

Comparing ray/src/px/clrtab.c (file contents):
Revision 2.9 by greg, Thu Dec 9 12:04:23 1993 UTC vs.
Revision 2.11 by greg, Mon Dec 12 12:15:51 1994 UTC

# Line 23 | Line 23 | static char SCCSid[] = "$SunId$ LBL";
23   #define part(cn)        ((cn)>>2)
24   #define prim(cn)        ((cn)&3)
25                                  /* our color table (global) */
26 < BYTE    clrtab[256][3];
26 > extern BYTE     clrtab[256][3];
27                                  /* histogram of colors / color assignments */
28   static unsigned histo[NRED][NGRN][NBLU];
29   #define cndx(c)         histo[((c)[RED]*NRED)>>8][((c)[GRN]*NGRN)>>8][((c)[BLU]*NBLU)>>8]
# Line 40 | Line 40 | static int     CLRCUBE[3][2] = {0,NRED,0,NGRN,0,NBLU};
40   #endif
41   #endif
42  
43 + static  cut(), mktabent(), closest(), addneigh(), setclosest();
44 + static int      split();
45 + static unsigned dist();
46  
47 < new_histo()             /* clear our histogram */
47 >
48 > new_histo(n)            /* clear our histogram */
49 > int     n;
50   {
51          bzero((char *)histo, sizeof(histo));
52 +        return(0);
53   }
54  
55  

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines