diff options
author | Lars-Dominik Braun <lars@6xq.net> | 2015-06-06 22:42:29 +0200 |
---|---|---|
committer | Lars-Dominik Braun <lars@6xq.net> | 2015-06-06 22:42:29 +0200 |
commit | 1bd1ad8fda7510290558909efbde32095776026c (patch) | |
tree | 6b827421a11ca0f71df4da3965603168c89e5e98 | |
parent | d2b38b16b1c416e160f5442cbcef64d1dd97f5f5 (diff) | |
download | pucket-1bd1ad8fda7510290558909efbde32095776026c.tar.gz pucket-1bd1ad8fda7510290558909efbde32095776026c.tar.bz2 pucket-1bd1ad8fda7510290558909efbde32095776026c.zip |
Remove unused declarations
-rw-r--r-- | flam3.h | 16 |
1 files changed, 0 insertions, 16 deletions
@@ -448,9 +448,6 @@ void flam3_interpolate(flam3_genome *genomes, int ngenomes, double time, double /* print genome to given file with extra_attributes if not NULL */ void flam3_print(FILE *f, flam3_genome *g, char *extra_attributes); -void flam3_random(flam3_genome *cp, const unsigned int max_xform, - const palette_collection * const pc, randctx * const rc); - void flam3_mutate(flam3_genome *cp, int mutate_mode, int *ivars, int ivars_n, int sym, double speed, const palette_collection * const pc, randctx *rc); void flam3_cross(flam3_genome *cp0, flam3_genome *cp1, flam3_genome *out, int cross_mode, randctx *rc); @@ -467,19 +464,6 @@ void flam3_improve_colors(flam3_genome *g, unsigned int ntries, int flam3_estimate_bounding_box(flam3_genome *g, double eps, int nsamples, double *bmin, double *bmax, randctx *rc); -typedef struct { - double pixel_aspect_ratio; /* width over height of each pixel */ - flam3_genome *genomes; - int ngenomes; - int bytes_per_channel; - int earlyclip; - double time; - int (*progress)(void *, double, int, double); - void *progress_parameter; - int nthreads; - int sub_batch_size; -} flam3_frame; - /* Mutation modes */ #define MUTATE_NOT_SPECIFIED -1 #define MUTATE_ALL_VARIATIONS 0 |