summaryrefslogtreecommitdiff
path: root/parser.c
diff options
context:
space:
mode:
authorLars-Dominik Braun <lars@6xq.net>2015-05-27 21:54:45 +0200
committerLars-Dominik Braun <lars@6xq.net>2015-05-27 21:54:45 +0200
commit55386cb28e2512804f1c09097be8348f64ca8c00 (patch)
tree696dd7c6b7e7831d7bb449a500d0984d857b5f31 /parser.c
parent7500d3b40ebd24f32d8ae226aed65fabc28c7e8d (diff)
downloadpucket-55386cb28e2512804f1c09097be8348f64ca8c00.tar.gz
pucket-55386cb28e2512804f1c09097be8348f64ca8c00.tar.bz2
pucket-55386cb28e2512804f1c09097be8348f64ca8c00.zip
variations: Fully vectorize pdj
Diffstat (limited to 'parser.c')
-rw-r--r--parser.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/parser.c b/parser.c
index 89467bd..1c8e060 100644
--- a/parser.c
+++ b/parser.c
@@ -861,13 +861,13 @@ static int parse_xform_xml(xmlNode *chld_node,flam3_xform *this_xform, int *num_
} else if (!xmlStrcmp(cur_att->name, (const xmlChar *)"blob_waves")) {
this_xform->blob_waves = flam3_atof(att_str);
} else if (!xmlStrcmp(cur_att->name, (const xmlChar *)"pdj_a")) {
- this_xform->pdj_a = flam3_atof(att_str);
+ this_xform->pdj_ac[0] = flam3_atof(att_str);
} else if (!xmlStrcmp(cur_att->name, (const xmlChar *)"pdj_b")) {
- this_xform->pdj_b = flam3_atof(att_str);
+ this_xform->pdj_bd[0] = flam3_atof(att_str);
} else if (!xmlStrcmp(cur_att->name, (const xmlChar *)"pdj_c")) {
- this_xform->pdj_c = flam3_atof(att_str);
+ this_xform->pdj_ac[1] = flam3_atof(att_str);
} else if (!xmlStrcmp(cur_att->name, (const xmlChar *)"pdj_d")) {
- this_xform->pdj_d = flam3_atof(att_str);
+ this_xform->pdj_bd[1] = flam3_atof(att_str);
} else if (!xmlStrcmp(cur_att->name, (const xmlChar *)"fan2_x")) {
this_xform->fan2_x = flam3_atof(att_str);
} else if (!xmlStrcmp(cur_att->name, (const xmlChar *)"fan2_y")) {