summaryrefslogtreecommitdiff
path: root/flam3.c
diff options
context:
space:
mode:
authorLars-Dominik Braun <lars@6xq.net>2015-02-13 13:54:31 +0100
committerLars-Dominik Braun <lars@6xq.net>2015-05-02 21:36:45 +0200
commit1ca0e1374d9f93e5724dd18460d82e57d674e10a (patch)
treee34dd87444f85c12cbf5a8de1b0b94468f35eae2 /flam3.c
parentf1e18b157c28d68ef67dcf7e617226824df1c323 (diff)
downloadpucket-1ca0e1374d9f93e5724dd18460d82e57d674e10a.tar.gz
pucket-1ca0e1374d9f93e5724dd18460d82e57d674e10a.tar.bz2
pucket-1ca0e1374d9f93e5724dd18460d82e57d674e10a.zip
Drop striped rendering
The amount of memory available is not a problem anymore.
Diffstat (limited to 'flam3.c')
-rw-r--r--flam3.c16
1 files changed, 0 insertions, 16 deletions
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) {