diff options
author | Erik Reckase <e.reckase@gmail.com> | 2010-05-10 21:19:39 +0000 |
---|---|---|
committer | Scott Draves <spot@draves.org> | 2015-02-15 12:20:12 -0500 |
commit | 1c335721c262a3c9afed11be48a442276dd11b2b (patch) | |
tree | 97135e3213317fb575f16031806a912de3c8d07a | |
parent | fa96f7ac1b2d9cca3bf1fb2a6ccc64ca4b943217 (diff) | |
download | pucket-1c335721c262a3c9afed11be48a442276dd11b2b.tar.gz pucket-1c335721c262a3c9afed11be48a442276dd11b2b.tar.bz2 pucket-1c335721c262a3c9afed11be48a442276dd11b2b.zip |
forgot to set the sub_batch_size in the render for try_colors
git-svn-id: https://flam3.googlecode.com/svn/trunk@11 77852712-ef1d-11de-8684-7d64432d61a3
-rw-r--r-- | src/palettes.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/palettes.c b/src/palettes.c index d6fc20f..64122a3 100644 --- a/src/palettes.c +++ b/src/palettes.c @@ -393,6 +393,7 @@ static double try_colors(flam3_genome *g, int color_resolution) { f.pixel_aspect_ratio = 1.0; f.progress = 0; f.nthreads = 1; + f.sub_batch_size = 10000; image = (unsigned char *) calloc(g->width * g->height, 3); if (flam3_render(&f, image, flam3_field_both, 3, 0, &stats)) { |