mirror of
https://github.com/scottdraves/flam3.git
synced 2025-01-20 21:10:08 -05:00
now multiplies the count by the opacity to allow xform opacity to affect DE filter width
git-svn-id: https://flam3.googlecode.com/svn/trunk@148 77852712-ef1d-11de-8684-7d64432d61a3
This commit is contained in:
parent
41720ed7cb
commit
897e550a72
@ -461,7 +461,7 @@ static void iter_thread(void *fth) {
|
||||
bump_no_overflow(b[0][1], logvis*ficp->dmap[color_index0].color[1]);
|
||||
bump_no_overflow(b[0][2], logvis*ficp->dmap[color_index0].color[2]);
|
||||
bump_no_overflow(b[0][3], logvis*ficp->dmap[color_index0].color[3]);
|
||||
bump_no_overflow(b[0][4], 255.0);
|
||||
bump_no_overflow(b[0][4], logvis*255.0);
|
||||
#else
|
||||
dbl_index0 = p[2] * CMAP_SIZE;
|
||||
color_index0 = (int) (dbl_index0);
|
||||
@ -506,7 +506,7 @@ static void iter_thread(void *fth) {
|
||||
bump_no_overflow(b[0][1], logvis*interpcolor[1]);
|
||||
bump_no_overflow(b[0][2], logvis*interpcolor[2]);
|
||||
bump_no_overflow(b[0][3], logvis*interpcolor[3]);
|
||||
bump_no_overflow(b[0][4], 255.0);
|
||||
bump_no_overflow(b[0][4], logvis*255.0);
|
||||
}
|
||||
#endif
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user