app: remove clamping in multiply mode
This commit is contained in:
@ -108,7 +108,6 @@ gimp_operation_multiply_process_pixels (gfloat *in,
|
||||
{
|
||||
gfloat comp = layer[b] * in[b];
|
||||
out[b] = comp * comp_alpha + in[b] * (1.0 - comp_alpha);
|
||||
out[b] = CLAMP (out[b], 0.0, 1.0);
|
||||
}
|
||||
}
|
||||
else
|
||||
|
Reference in New Issue
Block a user