[WIN32K]
authorJérôme Gardou <jerome.gardou@reactos.org>
Tue, 1 Mar 2011 14:44:53 +0000 (14:44 +0000)
committerJérôme Gardou <jerome.gardou@reactos.org>
Tue, 1 Mar 2011 14:44:53 +0000 (14:44 +0000)
  - Dismiss alpha channel when creating a solid brush.
Finally fixes VLC icons and numerous winetests.

svn path=/trunk/; revision=50945

reactos/subsystems/win32/win32k/objects/brush.c

index aa1c348..5ad5f07 100644 (file)
@@ -394,7 +394,7 @@ IntGdiCreateSolidBrush(
 
     pbrush->flAttrs |= GDIBRUSH_IS_SOLID;
 
-    pbrush->BrushAttr.lbColor = Color;
+    pbrush->BrushAttr.lbColor = Color & 0x00FFFFFF;
     /* FIXME: Fill in the rest of fields!!! */
 
     BRUSH_UnlockBrush(pbrush);