summaryrefslogtreecommitdiff
path: root/flam3.c
diff options
context:
space:
mode:
authorLars-Dominik Braun <lars@6xq.net>2015-02-28 10:25:40 +0100
committerLars-Dominik Braun <lars@6xq.net>2015-05-02 21:36:45 +0200
commit02e5b6af7df001cc105e874ade35b47d560b1f83 (patch)
tree866241a14487cbd2dd63677025dcdde7ff7eea45 /flam3.c
parent9841a4e5fa5b3b17f3b95f4e3c2c0e5ed8b445fd (diff)
downloadpucket-02e5b6af7df001cc105e874ade35b47d560b1f83.tar.gz
pucket-02e5b6af7df001cc105e874ade35b47d560b1f83.tar.bz2
pucket-02e5b6af7df001cc105e874ade35b47d560b1f83.zip
Drop oversampling
Just scale it down.
Diffstat (limited to 'flam3.c')
-rw-r--r--flam3.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/flam3.c b/flam3.c
index 74a0c59..8adceeb 100644
--- a/flam3.c
+++ b/flam3.c
@@ -1061,7 +1061,6 @@ void clear_cp(flam3_genome *cp, int default_flag) {
cp->background[2] = 0.0;
cp->width = 100;
cp->height = 100;
- cp->spatial_oversample = 1;
cp->spatial_filter_radius = 0.5;
cp->zoom = 0.0;
cp->sample_density = 1;
@@ -1083,7 +1082,6 @@ void clear_cp(flam3_genome *cp, int default_flag) {
cp->background[1] = -1.0;
cp->background[2] = -1.0;
cp->zoom = 999999999;
- cp->spatial_oversample = -1;
cp->spatial_filter_radius = -1;
cp->nbatches = -1;
cp->ntemporal_samples = -1;
@@ -1304,8 +1302,6 @@ void flam3_apply_template(flam3_genome *cp, flam3_genome *templ) {
cp->background[2] = templ->background[2];
if (templ->zoom < 999999998)
cp->zoom = templ->zoom;
- if (templ->spatial_oversample > 0)
- cp->spatial_oversample = templ->spatial_oversample;
if (templ->spatial_filter_radius >= 0)
cp->spatial_filter_radius = templ->spatial_filter_radius;
if (templ->sample_density > 0)
@@ -1410,7 +1406,6 @@ void flam3_print(FILE *f, flam3_genome *cp, char *extra_attributes, int print_ed
fprintf(f, " zoom=\"%g\"", cp->zoom);
fprintf(f, " rotate=\"%g\"", cp->rotate);
- fprintf(f, " supersample=\"%d\"", cp->spatial_oversample);
fprintf(f, " filter=\"%g\"", cp->spatial_filter_radius);
/* Need to print the correct kernel to use */