winex11: Fix alpha for client-side-rendered text.
authorMichael Karcher <wine@mkarcher.dialup.fu-berlin.de>
Sun, 16 Mar 2008 19:43:13 +0000 (20:43 +0100)
committerAlexandre Julliard <julliard@winehq.org>
Tue, 18 Mar 2008 11:53:57 +0000 (12:53 +0100)
dlls/winex11.drv/xrender.c

index aa894a6f702f42cbdf66d1c8c9d8087e76212b7e..d39938c95ed8e21687d3e8867017bea8d3f695d7 100644 (file)
@@ -1107,7 +1107,7 @@ static Picture get_tile_pict(enum drawable_depth_type type, int text_pixel)
         col.green |= col.green << 8;
         col.blue = GetField(text_pixel, b_shift, b_len);
         col.blue |= col.blue << 8;
-        col.alpha = 0x0;
+        col.alpha = 0xffff;
 
         wine_tsx11_lock();
         pXRenderFillRectangle(gdi_display, PictOpSrc, tile->pict, &col, 0, 0, 1, 1);