summaryrefslogtreecommitdiff
path: root/flam3.h
diff options
context:
space:
mode:
authorLars-Dominik Braun <lars@6xq.net>2015-03-19 17:41:33 +0100
committerLars-Dominik Braun <lars@6xq.net>2015-05-02 21:36:45 +0200
commit539286a9a5b7663dfba7849328998601816b6f14 (patch)
tree4b1aaf4cdc916088cb173f682a73fb969a8eebd3 /flam3.h
parent37fa88b599658ddbae712dd74bd08be4d47cdce1 (diff)
downloadpucket-539286a9a5b7663dfba7849328998601816b6f14.tar.gz
pucket-539286a9a5b7663dfba7849328998601816b6f14.tar.bz2
pucket-539286a9a5b7663dfba7849328998601816b6f14.zip
Drop edit lists
Diffstat (limited to 'flam3.h')
-rw-r--r--flam3.h10
1 files changed, 1 insertions, 9 deletions
diff --git a/flam3.h b/flam3.h
index e780533..58b6343 100644
--- a/flam3.h
+++ b/flam3.h
@@ -30,9 +30,6 @@
#define flam3_name_len 64
-#define flam3_print_edits (1)
-#define flam3_dont_print_edits (0)
-
#include "vector.h"
#include "random.h"
@@ -461,9 +458,6 @@ typedef struct {
double zoom; /* effects ppu, sample density, scale */
double pixels_per_unit; /* vertically */
- /* XML Edit structure */
- xmlDocPtr edits;
-
/* Small-gamma linearization threshold */
double gam_lin_thresh;
@@ -475,8 +469,6 @@ typedef struct {
double palette_blend;
int palette_mode;
-
-
} flam3_genome;
typedef struct {
@@ -515,7 +507,7 @@ void apply_motion_parameters(flam3_xform *xf, flam3_xform *addto, double blend);
void flam3_interpolate(flam3_genome *genomes, int ngenomes, double time, double stagger, flam3_genome *result);
/* print genome to given file with extra_attributes if not NULL */
-void flam3_print(FILE *f, flam3_genome *g, char *extra_attributes, int print_edits);
+void flam3_print(FILE *f, flam3_genome *g, char *extra_attributes);
void flam3_print_xform(FILE *f, flam3_xform *x, int final_flag, int numstd, double *chaos_row, int motion_flag);
char *flam3_print_to_string(flam3_genome *cp);