http://bugs.winehq.org/show_bug.cgi?id=21707
Summary: texture errors in Shaiya make it uplayable
Product: Wine
Version: 1.1.38
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: digitaltopia(a)gmail.com
There are some strange texture errors in Shaiya, a 3D MMORPG. On the character
screen, when you select which character you want to use and they appear on the
screen, large black boxes form around the character and move when they do.
When you actually enter the game, the geometry of the world around you (ground,
sky etc.) flash and move and block the view and jump around and make the game
unplayable.
>From what I've read of the comments on this game in the app database, it seems
like this game used to be playable, so this must be a more recent issue.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=21684
Summary: Albumplayer can't write to it's database
Product: Wine
Version: 1.1.38
Platform: x86
URL: http://www.albumplayer.com/
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: hello.adri(a)gmail.com
Created an attachment (id=26204)
--> (http://bugs.winehq.org/attachment.cgi?id=26204)
albumplayer's ole errors
Playing is giving error messages not being able to write to database, same
issue happened before with WINE 1.1.29.
There was a solution then that worked till WINE version 1.1.37.
The solution after WINE 1.1.29 is to set "oledb32" to native, however this
doesn't work anymore in WINE 1.1.38.
Is there another workaround, or is this a plain bug?
Albumplayer was installed with "winetricks corefonts mdac28 jet40 msxml4
directx9 ie6 wininet"
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=21629
Summary: Application doesn't display video, missing conversion
function from WINED3DFMT_YUY2
Product: Wine
Version: 1.1.36
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: spamdijs(a)inbox.lv
Created an attachment (id=26110)
--> (http://bugs.winehq.org/attachment.cgi?id=26110)
Adds the necessary conversion function
I'm attempting to run an application named "DVR Remote Access Software
1.1.1.5", made by a humble Chinese company that doesn't mention its name
anywhere. Main executable is called RemoteAppEx.exe. The application connects
to video recorder and displays video from security cameras. I'm using Wine
1.1.36 under Ubuntu Linux 8.04 on a computer with Intel i865 integrated video.
The application starts and appears to work, except that no video is shown.
Instead, hundreds of these lines are printed to the console:
fixme:d3d_surface:surface_convert_format Cannot find a conversion function from
format WINED3DFMT_YUY2 to WINED3DFMT_B8G8R8X8_UNORM
I browsed the source code, found that the necessary function is indeed missing
from dlls/wined3d/surface_base.c and wrote one (see the attachment). It might
be slow and buggy, but it appears to work with that particular application.
I haven't tested with the current Wine version (1.1.38), but
dlls/wined3d/surface_base.c hasn't changed from 1.1.36.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=21469
Summary: Civilization 4 whows a myriad of errors of unnecessary
wined3d check.
Product: Wine
Version: 1.1.37
Platform: All
OS/Version: All
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: luis.busquets(a)ilidium.com
>From some time when I run Civilization4 I get a myriad of these messages and
others with other formats:
err:d3d:getColorBits Unsupported format: WINED3DFMT_R16G16_FLOAT
err:d3d:IWineD3DImpl_IsPixelFormatCompatibleWithRenderFmt Unable to check
compatibility for Format=WINED3DFMT_R16G16_FLOAT
After looking in the wine code I have found out that what happens is that Civ
calls the function IDirect3D9Impl_CheckDepthStencilMatch (no error of the
application on that)
The implementation of wine then calls IWineD3D_CheckDepthStencilMatch which
then calls
IWineD3DImpl_IsPixelFormatCompatibleWithRenderFmt
for each format that the adapter supports until it finds a supported format:
Problem:
IWineD3DImpl_IsPixelFormatCompatibleWithRenderFmt tries to match the supported
pixel format of the adapter with the requested format.
If the supported pixel format of the adapter is of type WGL_TYPE_RGBA_ARB, it
tries to getColorBits of the format even if the format to try is a floating
format, getColorBits responds with an error and same does
IWineD3DImpl_IsPixelFormatCompatibleWithRenderFmt. Certainly, the answer is
correct (FALSE) but the problem is that it fills the screen with ERR that are
due to wine checking things for which there is no need as they are directly
false.
Possible solution: to do IWineD3DImpl_IsPixelFormatCompatibleWithRenderFmt
right away check if:
cfg->iPixelType == WGL_TYPE_RGBA_ARB and format_desc is a floating format then
return FALSE right away no need to fill ERR
same if
cfg->iPixelType == WGL_TYPE_RGBA_FLOAT_ARB and format_desc is not a floating
format then return FALSE right away no need to fill ERR
If you do not like this solution, getColorBits could be modified so that it
does not file an error for floating point formats but just responds with 0 for
all bit sizes when the format is a floating point without filling an error.
What do you prefer?
Can somebody propose a patch with this kind of behaviour or something better so
that my Civ4 does not respond with this myriad of errors?
The myriad of unnecessary checks and of reports of ERR causes a some slowness
that can be quantified eliminated unnecessary checks.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=21427
Summary: Microsoft word 2007 show error when save file to pdf
Product: Wine
Version: 1.1.36
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dmbohdan(a)gmail.com
Created an attachment (id=25804)
--> (http://bugs.winehq.org/attachment.cgi?id=25804)
console log
After install office i run setup of office plugin that can save doc in pdf
format. When i try to save it in pdf, word show an error. In word file was
formulas and images.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=21384
Summary: Sins of a Solar Empire crash on exit
Product: Wine
Version: 1.1.36
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: trivial
Priority: P2
Component: directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: drakkk(a)centrum.cz
CC: hverbeet(a)gmail.com
Created an attachment (id=25747)
--> (http://bugs.winehq.org/attachment.cgi?id=25747)
console output
Sins of a Solar Empire used to exit correctly in 1.1.35 (there was only this
error massage: "err:d3d:wined3d_unregister_window Window 0x80030 is not
registered with wined3d."), but in 1.1.36 it ends with SIGSEGV and shows some
error dialog about Saved MiniDump. Console output attached. This is a
regression introduced by this commit:
ce2c3ea6c74f7c28f0ec55e097d582b68c080d19 is the first bad commit
commit ce2c3ea6c74f7c28f0ec55e097d582b68c080d19
Author: Henri Verbeet <hverbeet(a)codeweavers.com>
Date: Sun Jan 3 21:18:26 2010 +0100
wined3d: Handle source and destination rectangles in
IWineD3DSwapChainImpl_Present().
:040000 040000 c9f702ad05cb5c903597bd934605ce3d6037bd20
ae2ee3eeff4d13357d2eb9914baa8a201ee57d30 M dlls
CCing author.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=21380
Summary: ZEMAX lens data editor window is not treated as a
popup of the main window
Product: Wine
Version: 1.1.36
Platform: x86
URL: http://www.zemax.com/downloads/ZEMAX_Demo_x32.exe
OS/Version: All
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: ehoover(a)mines.edu
When ZEMAX first starts the lens editor appears behind the main window. This
window should appear as a popup for the main window (and never show up behind
it). However, if you close the window and use "New" to create a new design
then the lens data editor will appear on top properly. This behavior is the
same on both Linux and Mac OS X.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=20981
Summary: Setup fails with message "Your hardware does not meet
the requirements for this game."
Product: Wine
Version: 1.1.34
Platform: PC-x86-64
URL: http://en.gameloft.ca/pc/brain-challenge/
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: alex(a)stanev.org
Trying to install Brain Challage, after choosing setup language, message box
with "Your hardware does not meet the requirements for this game." is showed.
The system requirements are:
Operating system: Windows XP or Vista
Processor speed: Intel Pentium3 733mhz or better processor
RAM: 256 MB
Hard drive space (uncompressed): 150 MB
Graphics Card: 64MB Direct3D 9 compatible video card
Sound Card: Vista compatible
DirectX version: DirectX9 compatible driver
Internet connection required
Download file size: 67.0 MB
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=20972
Summary: Atlantica Online: crashes when closing, sometimes at
login
Product: Wine
Version: 1.1.34
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: minipoiss(a)hotmail.com
When ending Atlantica Online, it crashes and Wine debugger comes up. A process
named "###" has to be killed before Wine ends. The same thing sometimes happens
just after login, at security key page.
Wine outputs the following output when the crash happens:
wine: Unhandled page fault on read access to 0x07b785a4 at address 0x7e0d02c9
(thread 002e), starting debugger...
The bug doesn't occur with Wine 1.1.33.
And before that many fixme:xinput:XInputGetState errors, but thats probably
when the game is still running.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=20677
Summary: BizAgi Process Modeler under Mono 2.4 requires
implemented GdipGetNearestColor
Product: Wine
Version: 1.1.32
Platform: PC
URL: http://download.bizagi.com/modeler/BizAgiPMSetup.exe
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: gdiplus
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: arethusa26(a)gmail.com
Created an attachment (id=24695)
--> (http://bugs.winehq.org/attachment.cgi?id=24695)
BizAgi Process Modeler Mono gdiplus backtrace
With wine-1.1.32-539-gab081aa, after doing winetricks mono24 and installing the
BizAgi Process Modeler, launching the application yields:
fixme:gdiplus:GdipGetNearestColor (0x1bd9160, 0x60d890): stub
fixme:gdiplus:GdipGetNearestColor (0x1cf7b18, 0x60edf0): stub
Unhandled Exception: System.NotImplementedException: The requested feature is
not implemented [GDI+ status: NotImplemented]
at System.Drawing.GDIPlus.CheckStatus (Status status) [0x00000]
at System.Drawing.Graphics.GetNearestColor (Color color) [0x00000]
...
The complete managed backtrace is attached.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.