From 02e5b6af7df001cc105e874ade35b47d560b1f83 Mon Sep 17 00:00:00 2001 From: Lars-Dominik Braun Date: Sat, 28 Feb 2015 10:25:40 +0100 Subject: Drop oversampling Just scale it down. --- parser.c | 4 ---- 1 file changed, 4 deletions(-) (limited to 'parser.c') diff --git a/parser.c b/parser.c index 1738925..06ce22c 100644 --- a/parser.c +++ b/parser.c @@ -389,10 +389,6 @@ int parse_flame_element(xmlNode *flame_node, flam3_genome *loc_current_cp, cp->rotate = flam3_atof(att_str); } else if (!xmlStrcmp(cur_att->name, (const xmlChar *)"zoom")) { cp->zoom = flam3_atof(att_str); - } else if (!xmlStrcmp(cur_att->name, (const xmlChar *)"oversample")) { - cp->spatial_oversample = flam3_atoi(att_str); - } else if (!xmlStrcmp(cur_att->name, (const xmlChar *)"supersample")) { - cp->spatial_oversample = flam3_atoi(att_str); } else if (!xmlStrcmp(cur_att->name, (const xmlChar *)"filter")) { cp->spatial_filter_radius = flam3_atof(att_str); } else if (!xmlStrcmp(cur_att->name, (const xmlChar *)"filter_shape")) { -- cgit v1.2.3