summaryrefslogtreecommitdiff
path: root/flam3.h
diff options
context:
space:
mode:
authorLars-Dominik Braun <lars@6xq.net>2015-02-15 15:50:59 +0100
committerLars-Dominik Braun <lars@6xq.net>2015-05-02 21:36:45 +0200
commitcab0e4c6c5420e6253bce50127a0c70fb0cd0552 (patch)
treee038335632d9a1d82953a22df82a7d11a5fe78c5 /flam3.h
parent4da1dba32961da1b0a690bf629233b6ba29921ae (diff)
downloadpucket-cab0e4c6c5420e6253bce50127a0c70fb0cd0552.tar.gz
pucket-cab0e4c6c5420e6253bce50127a0c70fb0cd0552.tar.bz2
pucket-cab0e4c6c5420e6253bce50127a0c70fb0cd0552.zip
Improve command line interface
Initial arguments-based cli, replacing the three tools -animate, -genome and -render with just one. Still need to get rid of most calls to getenv.
Diffstat (limited to 'flam3.h')
-rw-r--r--flam3.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/flam3.h b/flam3.h
index a92c203..5fe28f9 100644
--- a/flam3.h
+++ b/flam3.h
@@ -559,8 +559,8 @@ void flam3_random(flam3_genome *cp, int *ivars, int ivars_n, int sym, int spec_x
void add_to_action(char *action, char *addtoaction);
-void flam3_mutate(flam3_genome *cp, int mutate_mode, int *ivars, int ivars_n, int sym, double speed, randctx *rc, char *action);
-void flam3_cross(flam3_genome *cp0, flam3_genome *cp1, flam3_genome *out, int cross_mode, randctx *rc, char *action);
+void flam3_mutate(flam3_genome *cp, int mutate_mode, int *ivars, int ivars_n, int sym, double speed, randctx *rc);
+void flam3_cross(flam3_genome *cp0, flam3_genome *cp1, flam3_genome *out, int cross_mode, randctx *rc);
/* return NULL in case of error */
flam3_genome *flam3_parse_xml2(char *s, char *fn, int default_flag, int *ncps, randctx * const);
@@ -587,7 +587,6 @@ typedef struct {
flam3_genome *genomes;
int ngenomes;
int verbose;
- int bits;
int bytes_per_channel;
int earlyclip;
double time;