--- ray/src/rt/colortab.c 1989/10/12 11:12:48 1.7 +++ ray/src/rt/colortab.c 1990/02/09 09:14:52 1.12 @@ -28,8 +28,6 @@ static char SCCSid[] = "$SunId$ LBL"; #define MINSAMP 7 /* maximum distance^2 before color reassign */ #define MAXDST2 12 - /* maximum frame buffer depth */ -#define FBDEPTH 8 /* map a color */ #define map_col(c,p) clrmap[p][ colval(c,p)<1. ? \ (int)(colval(c,p)*256.) : 255 ] @@ -47,31 +45,42 @@ static struct tabent { long sum[3]; /* sum of colors using this entry */ long n; /* number of colors */ short ent[3]; /* current table value */ -} clrtab[1< 1<sum[RED] += r; - p.e->sum[GRN] += g; - p.e->sum[BLU] += b; - p.e->n++; + clrtab[h].sum[RED] += r; + clrtab[h].sum[GRN] += g; + clrtab[h].sum[BLU] += b; + clrtab[h].n++; /* recompute average */ - r = p.e->sum[RED] / p.e->n; - g = p.e->sum[GRN] / p.e->n; - b = p.e->sum[BLU] / p.e->n; + r = clrtab[h].sum[RED] / clrtab[h].n; + g = clrtab[h].sum[GRN] / clrtab[h].n; + b = clrtab[h].sum[BLU] / clrtab[h].n; /* check for movement */ - if (p.e->n == 1 || - (r-p.e->ent[RED])*(r-p.e->ent[RED]) + - (g-p.e->ent[GRN])*(g-p.e->ent[GRN]) + - (b-p.e->ent[BLU])*(b-p.e->ent[BLU]) > MAXDST2) { - p.e->ent[RED] = r; - p.e->ent[GRN] = g; /* reassign pixel */ - p.e->ent[BLU] = b; -#ifdef notdef - printf("pixel %d = (%d,%d,%d) (%d refs)\n", - h, r, g, b, p.e->n); + if (clrtab[h].n == 1 || + (r-clrtab[h].ent[RED])*(r-clrtab[h].ent[RED]) + + (g-clrtab[h].ent[GRN])*(g-clrtab[h].ent[GRN]) + + (b-clrtab[h].ent[BLU])*(b-clrtab[h].ent[BLU]) > MAXDST2) { + clrtab[h].ent[RED] = r; + clrtab[h].ent[GRN] = g; /* reassign pixel */ + clrtab[h].ent[BLU] = b; +#ifdef DEBUG + sprintf(errmsg, "pixel %d = (%d,%d,%d) (%d refs)\n", + h, r, g, b, clrtab[h].n); + eputs(errmsg); #endif (*set_pixel)(h, r, g, b); } @@ -148,9 +156,9 @@ double gam; set_cmap(rmap, gmap, bmap) /* set custom color correction map */ BYTE *rmap, *gmap, *bmap; { - bcopy(rmap, clrmap[RED], 256); - bcopy(gmap, clrmap[GRN], 256); - bcopy(bmap, clrmap[BLU], 256); + bcopy((char *)rmap, (char *)clrmap[RED], 256); + bcopy((char *)gmap, (char *)clrmap[GRN], 256); + bcopy((char *)bmap, (char *)clrmap[BLU], 256); } @@ -169,7 +177,7 @@ int c0, c1; } /* split box */ *tree = split(box); - bcopy(box, kb, sizeof(kb)); + bcopy((char *)box, (char *)kb, sizeof(kb)); /* do left (lesser) branch */ kb[prim(*tree)][1] = part(*tree); cut(tree+(1<>1);