Don't try to load an alpha channel from the BMP, since there is no

Fri Mar  5 22:22:25 2004  Matthias Clasen  <maclas@gmx.de>

	* io-bmp.c (OneLine32): Don't try to load an alpha channel
	from the BMP, since there is no evidence that even 32bit
	BMPs have an alpha channel.  (#135502)
This commit is contained in:
Matthias Clasen 2004-03-05 21:20:28 +00:00 committed by Matthias Clasen
parent 385bd6a54e
commit c3b3b3a5b7
2 changed files with 8 additions and 2 deletions

View File

@ -1,3 +1,9 @@
Fri Mar 5 22:22:25 2004 Matthias Clasen <maclas@gmx.de>
* io-bmp.c (OneLine32): Don't try to load an alpha channel
from the BMP, since there is no evidence that even 32bit
BMPs have an alpha channel. (#135502)
Mon Mar 1 19:47:48 2004 Owen Taylor <otaylor@redhat.com>
* === Released 2.3.5 ====

View File

@ -624,7 +624,7 @@ static void OneLine32(struct bmp_progressive_state *context)
*pixels++ = (r << r_lshift) | (r >> r_rshift);
*pixels++ = (g << g_lshift) | (g >> g_rshift);
*pixels++ = (b << b_lshift) | (b >> b_rshift);
*pixels++ = src[3]; /* alpha */
*pixels++ = 0xff;
src += 4;
}
@ -633,7 +633,7 @@ static void OneLine32(struct bmp_progressive_state *context)
*pixels++ = src[2];
*pixels++ = src[1];
*pixels++ = src[0];
*pixels++ = src[3];
*pixels++ = 0xff;
src += 4;
}