Commit 064e918c authored by Olivier Teulière's avatar Olivier Teulière

* skins/win32/win32_graphics.cpp: Fix for alphablending (thanks AsMaX)

parent 2a19321e
......@@ -136,8 +136,12 @@ void Win32Graphics::drawBitmap( const GenericBitmap &rBitmap,
uint8_t a = *(pBmpData++);
// Draw the pixel
// Note: the colours are multiplied by a/255, because of the
// algorithm used by Windows for the AlphaBlending
((UINT32 *)pBits)[x + y * width] =
(a << 24) | (r << 16) | (g << 8) | b;
(a << 24) | (((r * a) >> 8) << 16) |
(((g * a) >> 8) << 8) |
((b * a) >> 8);
if( a > 0 )
{
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment