Bug 744265 - layer mode 'addition' makes wrong gray values

Move CLAMP code in addition blend mode (CLAMP the result, not an
intermediate value).
This commit is contained in:
Elle Stone 2015-10-13 12:18:14 -04:00 committed by Michael Natterer
parent 8a7665d4b7
commit e089095631
1 changed files with 1 additions and 1 deletions

View File

@ -109,9 +109,9 @@ gimp_operation_addition_mode_process_pixels (gfloat *in,
for (b = RED; b < ALPHA; b++)
{
gfloat comp = in[b] + layer[b];
comp = CLAMP (comp, 0.0, 1.0);
out[b] = comp * ratio + in[b] * (1.0 - ratio);
out[b] = CLAMP (out[b], 0.0, 1.0);
}
}
else