apply multiply_alpha() on the source buffer, not the destination (bug

2006-02-14  Sven Neumann  <sven@gimp.org>

	* plug-ins/common/gauss.c (gauss): apply multiply_alpha() on the
	source buffer, not the destination (bug #331051, spotted by
	Stephane Chauveau).
This commit is contained in:
Sven Neumann 2006-02-14 07:27:40 +00:00 committed by Sven Neumann
parent e8f732c209
commit a0b3149ea5
2 changed files with 7 additions and 1 deletions

View File

@ -1,3 +1,9 @@
2006-02-14 Sven Neumann <sven@gimp.org>
* plug-ins/common/gauss.c (gauss): apply multiply_alpha() on the
source buffer, not the destination (bug #331051, spotted by
Stephane Chauveau).
2006-02-13 Sven Neumann <sven@gimp.org>
* app/config/gimpguiconfig.c: make the internal help browser the

View File

@ -962,7 +962,7 @@ gauss (GimpDrawable *drawable,
}
if (has_alpha)
multiply_alpha (dest, width, bytes);
multiply_alpha (src, width, bytes);
switch (method)
{