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
This commit is contained in:
Erik Reckase 2010-05-10 21:19:39 +00:00 committed by Scott Draves
parent fa96f7ac1b
commit 1c335721c2

View File

@ -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)) {