diff options
author | Lars-Dominik Braun <lars@6xq.net> | 2015-02-14 14:46:44 +0100 |
---|---|---|
committer | Lars-Dominik Braun <lars@6xq.net> | 2015-05-02 21:36:45 +0200 |
commit | f92a757aae2bd379a60b8b17c7fec673a917701a (patch) | |
tree | f94cc2867f4a686daee370b8acaf08b96bb10da5 /wscript | |
parent | 6a7d86ec73c5212c52d76d9ddcb2023fc535b814 (diff) | |
download | pucket-f92a757aae2bd379a60b8b17c7fec673a917701a.tar.gz pucket-f92a757aae2bd379a60b8b17c7fec673a917701a.tar.bz2 pucket-f92a757aae2bd379a60b8b17c7fec673a917701a.zip |
Vectorize accumulation
Also vectorizes some color functions and switches to double accumulation
buffer. Does not seem to be slower.
Diffstat (limited to 'wscript')
-rw-r--r-- | wscript | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -19,7 +19,7 @@ def configure(conf): conf.write_config_header ('config.h') def build(bld): - bld.stlib (features='c cstlib', source='flam3.c filters.c parser.c variations.c interpolation.c palettes.c png.c random.c docstring.c', target='libflam3', use='xml2 png pthread', includes='.') + bld.stlib (features='c cstlib', source='flam3.c filters.c parser.c variations.c interpolation.c palettes.c png.c random.c docstring.c rect.c', target='libflam3', use='xml2 png pthread', includes='.') bld.program (features='c cprogram', source='flam3-render.c', target='flam3-render', use='libflam3 xml2 png amdlibm pthread', includes='.') bld.program (features='c cprogram', source='flam3-genome.c', target='flam3-genome', use='libflam3 xml2 png amdlibm pthread', includes='.') bld.program (features='c cprogram', source='flam3-animate.c', target='flam3-animate', use='libflam3 xml2 png amdlibm pthread', includes='.') |