diff options
| author | Erik Reckase <e.reckase@gmail.com> | 2011-01-02 23:45:52 +0000 | 
|---|---|---|
| committer | Scott Draves <spot@draves.org> | 2015-02-15 12:20:14 -0500 | 
| commit | 6be5e2e3f2117c4284d9b062a36700f3cf088f79 (patch) | |
| tree | c6ed40a7f94efbe4e34734b130eb860ec91f7e63 /src/private.h | |
| parent | 0053026871a3def94980593ca56364ee6a7c0f71 (diff) | |
| download | pucket-6be5e2e3f2117c4284d9b062a36700f3cf088f79.tar.gz pucket-6be5e2e3f2117c4284d9b062a36700f3cf088f79.tar.bz2 pucket-6be5e2e3f2117c4284d9b062a36700f3cf088f79.zip | |
apophysis only uses the bottom 255 elements of the palette (instead of all 256).  In many cases this does not have a noticable effect on images, but in others, the color difference is very striking.  the env var 'apo_palette' may be set to 1 in order to render the image in flam3 as it would appear in apophysis.
git-svn-id: https://flam3.googlecode.com/svn/trunk@152 77852712-ef1d-11de-8684-7d64432d61a3
Diffstat (limited to 'src/private.h')
| -rw-r--r-- | src/private.h | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/src/private.h b/src/private.h index 156b0d2..9800f82 100644 --- a/src/private.h +++ b/src/private.h @@ -87,7 +87,7 @@ typedef struct {     double badvals; /* accumulates all badvalue resets */     double batch_size;     int temporal_sample_num,ntemporal_samples; -   int batch_num, nbatches, aborted; +   int batch_num, nbatches, aborted, cmap_size;     time_t *progress_timer;     time_t *progress_timer_history;     double *progress_history; | 
