summaryrefslogtreecommitdiff
path: root/palettes.c
diff options
context:
space:
mode:
authorLars-Dominik Braun <lars@6xq.net>2015-02-14 12:15:23 +0100
committerLars-Dominik Braun <lars@6xq.net>2015-05-02 21:36:45 +0200
commit6a7d86ec73c5212c52d76d9ddcb2023fc535b814 (patch)
treeb21a8c8093823dad8fd9f6d59f019fb05758fa15 /palettes.c
parentdbc44a2d45153760ee710f4ebcbd09f9ac196fea (diff)
downloadpucket-6a7d86ec73c5212c52d76d9ddcb2023fc535b814.tar.gz
pucket-6a7d86ec73c5212c52d76d9ddcb2023fc535b814.tar.bz2
pucket-6a7d86ec73c5212c52d76d9ddcb2023fc535b814.zip
Drop density estimator
First of all, it does not look too pretty. But more importantly now we can reduce the bucket size to four (instead of five) and vectorize that stuff.
Diffstat (limited to 'palettes.c')
-rw-r--r--palettes.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/palettes.c b/palettes.c
index adcc242..816f3a2 100644
--- a/palettes.c
+++ b/palettes.c
@@ -376,7 +376,6 @@ static double try_colors(flam3_genome *g, int color_resolution) {
g->sample_density = 1;
g->spatial_oversample = 1;
- g->estimator = 0.0;
/* Scale the image so that the total number of pixels is ~10000 */
pixtotal = g->width * g->height;
@@ -446,7 +445,6 @@ static double try_colors(flam3_genome *g, int color_resolution) {
g->pixels_per_unit = saved.pixels_per_unit;
g->nbatches = saved.nbatches;
g->ntemporal_samples = saved.ntemporal_samples;
- g->estimator = saved.estimator;
/* Free xform storage */
clear_cp(&saved,flam3_defaults_on);