http://bugs.winehq.org/show_bug.cgi?id=11295
Dan Kegel dank@kegel.com changed:
What |Removed |Added ---------------------------------------------------------------------------- Component|-unknown |x11-driver
--- Comment #6 from Dan Kegel dank@kegel.com 2008-01-22 13:15:01 --- With today's git and a clean .wine, we seem to get past the first problem, but the second problem remains.
Changing dlls/winex11/bitmap.c like this:
- ERR("Trying to make bitmap with planes=%d, bpp=%d\n", - bitmap.bmPlanes, bitmap.bmBitsPixel); + ERR("Trying to make bitmap with planes=%d, bpp=%d when screen_bpp is %d\n", + bitmap.bmPlanes, bitmap.bmBitsPixel, screen_bpp);
shows that it seems to be yet another 24 vs. 32 bpp issue:
err:x11drv:X11DRV_CreateBitmap Trying to make bitmap with planes=1, bpp=24 when screen_bpp is 32
Amusingly, xwininfo shows that my desktop background, Photoshop CS2's background, and the "Untitled" window I just opened in Photoshop are all 24bpp, so I don't know where this 32 bpp screen_bpp is coming from...?
Switching category to x11-driver (hmm, shouldn't that category be called winex11?).