summaryrefslogtreecommitdiff
path: root/parser.c
diff options
context:
space:
mode:
Diffstat (limited to 'parser.c')
-rw-r--r--parser.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/parser.c b/parser.c
index fcdc35d..8f93f4c 100644
--- a/parser.c
+++ b/parser.c
@@ -318,14 +318,6 @@ int parse_flame_element(xmlNode *flame_node, flam3_genome *loc_current_cp,
} else {
fprintf(stderr, "warning: unrecognized interpolation type %s.\n", att_str);
}
- } else if (!xmlStrcmp(cur_att->name, (const xmlChar *)"palette_interpolation")) {
- if (!strcmp("hsv", att_str)) {
- cp->palette_interpolation = flam3_palette_interpolation_hsv;
- } else if (!strcmp("sweep", att_str)) {
- cp->palette_interpolation = flam3_palette_interpolation_sweep;
- } else {
- fprintf(stderr, "warning: unrecognized palette interpolation type %s.\n", att_str);
- }
} else if (!xmlStrcmp(cur_att->name, (const xmlChar *)"interpolation_space") ||
!xmlStrcmp(cur_att->name, (const xmlChar *)"interpolation_type")) {