From 6cfbf0cbb191898182f10d409809ca26b2ed21da Mon Sep 17 00:00:00 2001 From: Erik Reckase Date: Thu, 6 Jan 2011 03:48:59 +0000 Subject: CMAP_SIZE can be used when creating the dmap - I had erroneously thought that cmap_size was necessary (the apo-corrected number of elements in the palette) git-svn-id: https://flam3.googlecode.com/svn/trunk@153 77852712-ef1d-11de-8684-7d64432d61a3 --- src/rect.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/rect.c b/src/rect.c index e5d1bdc..ddea9cf 100644 --- a/src/rect.c +++ b/src/rect.c @@ -776,10 +776,10 @@ static int render_rectangle(flam3_frame *spec, void *out, /* compute the colormap entries. */ /* the input colormap is 256 long with entries from 0 to 1.0 */ - for (j = 0; j < cmap_size; j++) { - dmap[j].index = cp.palette[(j * 256) / cmap_size].index / 256.0; + for (j = 0; j < CMAP_SIZE; j++) { + dmap[j].index = cp.palette[(j * 256) / CMAP_SIZE].index / 256.0; for (k = 0; k < 4; k++) - dmap[j].color[k] = (cp.palette[(j * 256) / cmap_size].color[k] * WHITE_LEVEL) * color_scalar; + dmap[j].color[k] = (cp.palette[(j * 256) / CMAP_SIZE].color[k] * WHITE_LEVEL) * color_scalar; } /* compute camera */ -- cgit v1.2.3