Linked by Eugenia Loli-Queru on Sun 5th Mar 2006 01:54 UTC, submitted by Dylan
Thread beginning with comment 101445
To view parent comment, click here.
To read all comments associated with this story, please click here.
To view parent comment, click here.
To read all comments associated with this story, please click here.
RE[3]: progress and regression
by mmebane on Sun 5th Mar 2006 03:51
in reply to "RE[2]: progress and regression"
RE[4]: progress and regression
by Nathan O. on Sun 5th Mar 2006 04:25
in reply to "RE[3]: progress and regression"
RE[4]: progress and regression
by mmebane on Mon 6th Mar 2006 18:50
in reply to "RE[3]: progress and regression"
Here's the bug:
http://bugs.winehq.org/show_bug.cgi?id=3573
Here's the link to the last email about the patch:
http://www.winehq.org/pipermail/wine-devel/2005-November/042893.htm...
From the thread:
"This patch is a rewrite of the imagelist handling to not use a Nx1 grid, but a NxM grid with M definable in the source (currently 4)."
"What Wine saves to stream is not binary compatible with windows. To make it compatible it has to be 4xN bitmap."
Someone asked about the status of this back in February, but got no reply.
RE[3]: progress and regression
by bakanekov3 on Sun 5th Mar 2006 10:40
in reply to "RE[2]: progress and regression"








Member since:
2005-07-06
Also, sometimes the break is elsewhere. For example, WinRAR quit working with WINE due to increased checking in X11. WinRAR tries to open an offscreen bitmap to hold toolbar icons; it tries to make it huge in case the person (idiot) adds an insane number of icons to the toolbar, so it asks for a bitmap just under 33000 pixels wide. X11 only allows bitmaps to be 32767 wide since all coordinates in X11 are a 16bit word.
Now under old versions of X11, it never checked if the bitmap asked for was too large - it simply made it. New versions check the boundaries and fail if they are greater than 32767. So now when WinRAR tries allocate its bitmap, it fails causing WinRAR to fail where it used to work.
The WINE folks and the XOrg folks have been arguing over who needs to fix what. The XOrg folks think that the WINE folks should make some kind of work-around for huge bitmaps, and the WINE folks think the XOrg folks should allow bitmaps to be created at any size.