From 1ca0e1374d9f93e5724dd18460d82e57d674e10a Mon Sep 17 00:00:00 2001 From: Lars-Dominik Braun Date: Fri, 13 Feb 2015 13:54:31 +0100 Subject: Drop striped rendering The amount of memory available is not a problem anymore. --- flam3.c | 16 ---------------- 1 file changed, 16 deletions(-) (limited to 'flam3.c') diff --git a/flam3.c b/flam3.c index d90b62b..9e3523b 100644 --- a/flam3.c +++ b/flam3.c @@ -3420,22 +3420,6 @@ typedef float abucket_float[4]; #undef de_thread_helper #undef de_thread - -double flam3_render_memory_required(flam3_frame *spec) -{ - flam3_genome *cps = spec->genomes; - int real_bits = spec->bits; - int real_bytes; - - if (33 == real_bits) real_bits = 32; - - real_bytes = real_bits / 8; - - return - (double) cps[0].spatial_oversample * cps[0].spatial_oversample * - (double) cps[0].width * cps[0].height * real_bytes * 9.0; -} - int flam3_render(flam3_frame *spec, void *out, int field, int nchan, int trans, stat_struct *stats) { -- cgit v1.2.3