summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2016-07-17Import bmod from jwildfireHEADmasterLars-Dominik Braun5-9/+75
2016-07-17Convert flam3_copy_params to switchLars-Dominik Braun1-202/+242
2016-07-17Import bcollide from jwildfireLars-Dominik Braun6-2/+59
2015-11-03render: Add width and height switchesLars-Dominik Braun1-4/+50
2015-10-30Import asteria from jwildfireLars-Dominik Braun7-2/+71
2015-08-12Add missing includeLars-Dominik Braun1-0/+1
2015-07-10Randomize color, color_speed and ppuLars-Dominik Braun2-3/+5
2015-06-06Remove unused declarationsLars-Dominik Braun1-16/+0
2015-05-28random: Remove symmetry biasLars-Dominik Braun4-24/+10
2015-05-28random: Remove variation biasLars-Dominik Braun1-6/+2
2015-05-27variations: Fully vectorize pdjLars-Dominik Braun7-30/+35
2015-05-24Add improvecolors commandLars-Dominik Braun4-112/+142
Also fixes try_colors, which used an integer division *before* casting the result to double.
2015-05-24Minor cleanupLars-Dominik Braun2-6/+4
2015-05-19Fix out of bounds detectionLars-Dominik Braun1-8/+6
unsigned int works, because the greater than check catches the overflow, but it’s obviously not correct.
2015-05-14Fix final transformationLars-Dominik Braun3-6/+6
Regression introduced by commit b66dc836db66e9769f5c7142104c80fda6dd386b
2015-05-10Drop motion_*Lars-Dominik Braun3-31/+0
2015-05-10Refactor initialize_xformsLars-Dominik Braun3-162/+61
2015-05-10Minor cleanup (static keyword)Lars-Dominik Braun2-61/+53
2015-05-10Refactor det_matrixLars-Dominik Braun3-17/+6
2015-05-10Use built-in palettesLars-Dominik Braun7-23151/+182305
This increases the binaries’ size, but we don’t have to parse the palette file every time.
2015-05-02Clean up apply_xformLars-Dominik Braun3-417/+403
2015-05-02Drop unused amw_ampLars-Dominik Braun4-7/+0
2015-05-02Refactor flam3_print_xformLars-Dominik Braun1-368/+278
Adds missing VAR_SEPARATION too.
2015-05-02random: Add --max-varLars-Dominik Braun1-0/+11
2015-05-02Add READMELars-Dominik Braun1-0/+9
2015-05-02Store pointer to array element onceLars-Dominik Braun5-77/+87
Instead of indexing the array over and over
2015-05-02Refactor flam3_iterateLars-Dominik Braun5-79/+110
2015-05-02Precalc variation constants onceLars-Dominik Braun4-21/+22
No difference measureable.
2015-05-02Another massive cleanupLars-Dominik Braun18-477/+178
Drops unused functions, fixes function visibility.
2015-05-02Drop rotation centerLars-Dominik Braun5-8/+1
Equal to camera center anyway
2015-05-02Remove leftover from edit logsLars-Dominik Braun1-20/+0
2015-05-02Add interpolationLars-Dominik Braun5-52/+73
2015-05-02Remove motion languageLars-Dominik Braun4-474/+16
2015-05-02Use camera transform matrixLars-Dominik Braun2-37/+52
Rotation and camera transformation are a single matrix now. Speedup is negligible (~1%, depending on #xforms).
2015-05-02Rewrite flam3_randomLars-Dominik Braun9-544/+418
Disables flam3_mutate.
2015-05-02Drop edit listsLars-Dominik Braun4-156/+5
2015-05-02Remove unused functionLars-Dominik Braun2-38/+0
2015-05-02Rewrite color palettesLars-Dominik Braun10-376/+233
Supports palettes with != 256 colors properly now. A lot of old code still (silently!) relies on that number though.
2015-05-02Rename project to “pucket”Lars-Dominik Braun17-35/+13
2015-05-02Do not use amdlibm’s nearbyintLars-Dominik Braun1-0/+1
~3% slower than GCC builtin.
2015-05-02Add bucket cacheLars-Dominik Braun3-2/+81
Stores accumulation buckets. Use case: Run n seconds, check image noise levels, run again (with cache and thus previous results), check image agin, …
2015-05-02Fix colormap segfaultLars-Dominik Braun5-28/+29
The segfaults due to unaligned vector access should have happened before the recent changes. Not sure why it worked before. Reverts colormap vectorization. This is going to be restored once I rework the colormaps.
2015-05-02Switch to OpenMPLars-Dominik Braun9-421/+256
Replaces quality (target density) parameter with time limit. In preparation for rendering resumption.
2015-05-02Drop accumulation bufferLars-Dominik Braun1-60/+19
Unused after dropping spatial/temporal filters. Cuts memory usage in half.
2015-05-02Drop progress printing from rendering threadLars-Dominik Braun7-203/+36
2015-05-02Drop fieldLars-Dominik Braun6-31/+12
2015-05-02Drop temporal filter/passesLars-Dominik Braun11-619/+18
2015-05-02Drop oversamplingLars-Dominik Braun8-137/+15
Just scale it down.
2015-05-02Move iter_storage allocation to thread functionLars-Dominik Braun2-28/+24
2015-05-02Prefetch bucket accumulatorLars-Dominik Braun2-12/+14
The bucket add is a hotspot.