Skip to content

Commit

Permalink
now multiplies the count by the opacity to allow xform opacity to aff…
Browse files Browse the repository at this point in the history
…ect DE filter width

git-svn-id: https://flam3.googlecode.com/svn/trunk@148 77852712-ef1d-11de-8684-7d64432d61a3
  • Loading branch information
EReckase authored and scottdraves committed Feb 15, 2015
1 parent 41720ed commit 897e550
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/rect.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down Expand Up @@ -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

Expand Down

0 comments on commit 897e550

Please sign in to comment.