[Bug 13514] New: Age of Conan will not start
http://bugs.winehq.org/show_bug.cgi?id=13514 Summary: Age of Conan will not start Product: Wine Version: 1.0-rc2 Platform: PC-x86-64 URL: http://www.ageofconan.com/ OS/Version: Linux Status: UNCONFIRMED Severity: normal Priority: P3 Component: directx-d3d AssignedTo: wine-bugs(a)winehq.org ReportedBy: l_bratch(a)yahoo.co.uk Created an attachment (id=13435) --> (http://bugs.winehq.org/attachment.cgi?id=13435) Output with WINEDEBUG=-all This is different to bug 12816 and bug 13422. 12816 only applied to the beta version of this game, and this bug is only reached when you get past 13422. Once getting past 13422 by clicking on the invisible "Play" button, the game tried to launch but fails with the attached output. I've run it with WINEDEBUG=-xrender, or the log is massive, as it has this line repeating endlessly: fixme:xrender:X11DRV_AlphaBlend not a dibsection -- 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=13514 Luke Bratch <l_bratch(a)yahoo.co.uk> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #13435|Output with WINEDEBUG=-all |Output with WINEDEBUG=- description| |xrender -- 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=13514 feydreva <feydreva(a)lsu.fr> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |feydreva(a)lsu.fr --- Comment #1 from feydreva <feydreva(a)lsu.fr> 2008-05-30 08:23:18 --- Having the line : fixme:xrender:X11DRV_AlphaBlend not a dibsection repeating itself, is the same bug as bug #13422 AOC patcher doesn't drow anything, with "fixme:xrender:X11DRV_AlphaBlend not a dibsection" repeating itself. I am not sure the fact you have this after clicking to a button or not change the fact this is a duplicate bug of 13422. (since we had the same bug before you clicked on the button) -- 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=13514 --- Comment #2 from Luke Bratch <l_bratch(a)yahoo.co.uk> 2008-05-30 11:20:02 --- Bug 13422 is to do with the patcher window not drawing anything, this bug is related to the actual game not starting. -- 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=13514 --- Comment #3 from Luke Bratch <l_bratch(a)yahoo.co.uk> 2008-05-30 14:01:41 --- Created an attachment (id=13493) --> (http://bugs.winehq.org/attachment.cgi?id=13493) Output with WINEDEBUG=+d3d,-xrender Here is the output with +d3d, I think the important part is: trace:d3d:IWineD3DDeviceImpl_GetAvailableTextureMem (0x9794070) : simulating 320MB, returning 12MB left warn:d3d:IWineD3DDeviceImpl_CreateSurface Out of 'bogus' video memory fixme:d3d9:IDirect3DDevice9Impl_CreateSurface (0x9795888) call to IWineD3DDevice_CreateSurface failed It looks like Wine is using all the simulated texture memory which is causing the crash. Putting all the settings down (by editing the config file) does the same thing. Changing the simulated video memory size to other values always causes it to fill up. -- 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=13514 --- Comment #4 from Alan Jackson <ajackson(a)bcs.org.uk> 2008-06-04 07:06:18 --- Created an attachment (id=13671) --> (http://bugs.winehq.org/attachment.cgi?id=13671) game generated crash log I get a similar crash response from wine, attached is the CrashLog.txt that the game generates. -- 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=13514 Alan Jackson <ajackson(a)bcs.org.uk> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |ajackson(a)bcs.org.uk -- 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=13514 Stefan Dösinger <stefandoesinger(a)gmx.at> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |stefandoesinger(a)gmx.at --- Comment #5 from Stefan Dösinger <stefandoesinger(a)gmx.at> 2008-06-16 15:25:33 --- The strange part is this: trace:d3d:IWineD3DDeviceImpl_CreateSurface (0x9794070) Create surface trace:d3d:IWineD3DDeviceImpl_GetAvailableTextureMem (0x9794070) : simulating 320MB, returning 55MB left warn:d3d:IWineD3DDeviceImpl_CreateSurface Out of 'bogus' video memory It's running out of vidmem with 55 MB left. (well actually it is trying to create a 4096*4096*ARGB8 texture, which is 64 MB) What I see with a quick look at the code is that there's a type confusion: UINT vs unsigned int vs long vs unsigned long. That should all be changed to UINT, but I don't think this is the problem here. The other question is if the return value(WINED3DERR_OUTOFVIDEOMEMORY) is correct in this situation. -- 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=13514 Mike Hollis <mhollisjr(a)gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |NEW Ever Confirmed|0 |1 --- Comment #6 from Mike Hollis <mhollisjr(a)gmail.com> 2008-07-18 16:56:07 --- *** This bug has been confirmed by popular vote. *** -- 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=13514 Johannes Paechnatz <jpaechnatz(a)gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |jpaechnatz(a)gmail.com -- 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=13514 --- Comment #7 from Austin English <austinenglish(a)gmail.com> 2009-01-21 10:59:11 --- Is this still an issue in current (1.1.13 or newer) wine? -- 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=13514 --- Comment #8 from Luke Bratch <l_bratch(a)yahoo.co.uk> 2009-01-30 09:34:15 --- I can't test this, as the invisible menu no longer appears to accept input. -- 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=13514 --- Comment #9 from Luke Bratch <l_bratch(a)yahoo.co.uk> 2009-07-13 16:31:37 --- Created an attachment (id=22364) --> (http://bugs.winehq.org/attachment.cgi?id=22364) Output with wine-1.1.25-311-g3d6bb38 Still present in latest git, output attached. All of the xrender:X11DRV_AlphaBlend errors are just from the launcher, and stop before the crash happens. -- 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=13514 --- Comment #10 from Luke Bratch <l_bratch(a)yahoo.co.uk> 2009-10-10 05:44:34 --- Bug 12816 was marked as fixed recently, although that was the beta of this game. This bug is for the final game, which is actually what works. (See screenshot attachment in bug 12186.) -- 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=13514 maniac <jedimastermaniac(a)hotmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |jedimastermaniac(a)hotmail.co | |m --- Comment #11 from maniac <jedimastermaniac(a)hotmail.com> 2009-10-14 06:45:44 --- Testing with Snow Leopard on a macbook pro 15" (June 09) i d say this would be fixed but needs more testing i ll try in a Linux distro too :D -- 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=13514 Luke Bratch <l_bratch(a)yahoo.co.uk> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED --- Comment #12 from Luke Bratch <l_bratch(a)yahoo.co.uk> 2009-10-14 06:48:10 --- Confirmation in Linux and Mac OS X, marking fixed. -- 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=13514 Alexandre Julliard <julliard(a)winehq.org> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|RESOLVED |CLOSED --- Comment #13 from Alexandre Julliard <julliard(a)winehq.org> 2009-10-23 13:18:34 --- Closing bugs fixed in 1.1.32. -- 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.
participants (1)
-
wine-bugs@winehq.org