[Bug 29896] New: The Darkness II fails to render
http://bugs.winehq.org/show_bug.cgi?id=29896 Bug #: 29896 Summary: The Darkness II fails to render Product: Wine Version: 1.4-rc3 Platform: x86-64 OS/Version: Linux Status: UNCONFIRMED Severity: normal Priority: P2 Component: -unknown AssignedTo: wine-bugs(a)winehq.org ReportedBy: cute.dark.sorcerer(a)gmail.com Classification: Unclassified Created attachment 38879 --> http://bugs.winehq.org/attachment.cgi?id=38879 output of the terminal when running the game game was installed on Linux and on windows, windows version runs fine, Linux version however not. I used a virtual desktop, wineserver can start, the menu music also plays, but any sort of graphic fails to load. game comes with d3dx9 and vcrun2008, installing both doesn't have any noticeable effect. -- 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=29896 --- Comment #1 from Yuki <cute.dark.sorcerer(a)gmail.com> 2012-02-14 16:40:00 CST --- Created attachment 38880 --> http://bugs.winehq.org/attachment.cgi?id=38880 proper terminal output ugh, bugzilla thinks I added a bin-file before.. added proper txt file now -- 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=29896 Yuki <cute.dark.sorcerer(a)gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #38879|0 |1 is obsolete| | -- 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=29896 Austin English <austinenglish(a)gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |austinenglish(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=29896 Dan Kegel <dank(a)kegel.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |NEW CC| |dank(a)kegel.com Component|-unknown |directx-d3d Summary|The Darkness II fails to |The Darkness II fails to |render |render - needs PresentEx() Ever Confirmed|0 |1 --- Comment #2 from Dan Kegel <dank(a)kegel.com> 2012-02-14 22:27:04 CST --- I can reproduce this with the free demo from steam. The key line from the log is probably: fixme:d3d9:IDirect3DDevice9ExImpl_PresentEx iface 0x1488c0, src_rect (nil), dst_rect (nil), dst_window_override (nil), dirty_region (nil), flags 0x80000000 stub! The kludge patch --- a/dlls/d3d9/device.c +++ b/dlls/d3d9/device.c @@ -2872,8 +2872,10 @@ static HRESULT WINAPI IDirect3DDevice9ExImpl_PresentEx(ID { FIXME("iface %p, src_rect %p, dst_rect %p, dst_window_override %p, dirty_re iface, src_rect, dst_rect, dst_window_override, dirty_region, flags + // Broken - ignore flagx + return IDirect3DDevice9Impl_Present(iface, src_rect, dst_rect, dst_window_o - return E_NOTIMPL; + //return E_NOTIMPL; } lets the game start and show its logo movie, but it aborts before putting up its main interface. -- 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=29896 Anton Romanov <theli.ua(a)gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |theli.ua(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=29896 K1773R <K1773R(a)darkgamex.ch> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |K1773R(a)darkgamex.ch -- 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=29896 --- Comment #3 from K1773R <K1773R(a)darkgamex.ch> 2012-03-02 11:45:15 CST --- Created attachment 39161 --> http://bugs.winehq.org/attachment.cgi?id=39161 patch for wine-1.3.20 Patch for wine 1.3.20 for a working game :) -- 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=29896 --- Comment #4 from K1773R <K1773R(a)darkgamex.ch> 2012-03-02 11:46:13 CST --- Created attachment 39162 --> http://bugs.winehq.org/attachment.cgi?id=39162 patch for wine-1.4-rc5 Patch for wine 1.4-rc5 for a working game :) -- 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=29896 --- Comment #5 from K1773R <K1773R(a)darkgamex.ch> 2012-03-02 11:48:23 CST --- If you use the patch, use WINEDEBUG=-d3d9 so u wont get annoyed by the fixme's (i didnt disable it in the patch, but if you want then you can do it yourself in dlls/d3d9/device.c) Now we need to get the sound working and then we are happy (are we?). -- 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=29896 --- Comment #6 from K1773R <K1773R(a)darkgamex.ch> 2012-03-02 11:51:59 CST --- The no sound issue happens on winblows too, its liekly a problem with the game :S -- 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=29896 --- Comment #7 from Vitaliy Margolen <vitaliy-bugzilla(a)kievinfo.com> 2012-03-03 15:12:04 CST --- *** Bug 30061 has been marked as a duplicate of this bug. *** -- 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=29896 Christian <christian.frank(a)gmx.de> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |christian.frank(a)gmx.de -- 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=29896 --- Comment #8 from Henri Verbeet <hverbeet(a)gmail.com> 2012-06-30 09:30:27 CDT --- I guess this is fixed by 256d43316418a346978834a41b52c4f99456bb3b too. -- 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=29896 --- Comment #9 from K1773R <K1773R(a)darkgamex.ch> 2012-07-01 06:47:33 CDT --- yes it is 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=29896 Dan Kegel <dank(a)kegel.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Fixed by SHA1| |256d43316418a346978834a41b5 | |2c4f99456bb3b Status|NEW |RESOLVED Resolution| |FIXED --- Comment #10 from Dan Kegel <dank(a)kegel.com> 2012-07-01 09:02:11 CDT --- Reported 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=29896 Alexandre Julliard <julliard(a)winehq.org> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|RESOLVED |CLOSED --- Comment #11 from Alexandre Julliard <julliard(a)winehq.org> 2012-07-03 14:14:02 CDT --- Closing bugs fixed in 1.5.8. -- 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=29896 NeverLoved <doctornever(a)gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |doctornever(a)gmail.com --- Comment #12 from NeverLoved <doctornever(a)gmail.com> 2013-07-05 05:53:24 CDT --- Shader bug is still presend in Wine 1.6-rc4. Most textures a absolutely black. Do you need some additional information about it? logs are clear. -- 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=29896 Matteo Bruni <matteo.mystral(a)gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |matteo.mystral(a)gmail.com --- Comment #13 from Matteo Bruni <matteo.mystral(a)gmail.com> 2013-07-05 08:00:28 CDT --- (In reply to comment #12)
Shader bug is still presend in Wine 1.6-rc4. Most textures a absolutely black. Do you need some additional information about it? logs are clear.
What's this shader bug you're talking about? Anyway, this is a different (and closed) bug, please open a separate bug report for it. -- 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=29896 --- Comment #14 from NeverLoved <doctornever(a)gmail.com> 2013-07-05 08:13:10 CDT --- This http://bugs.winehq.org/show_bug.cgi?id=30061 It is marked as duplicate of this bug, and it is market as fixed when it is not fixed. Here are the screenshots: http://i.piccy.info/i7/ae9a4b1e8d40b6a9abf904b4919d4188/4-63-175/24569872/20... http://i.piccy.info/i7/e8e8d859d1cdcdfb4e16d63ffbd38c39/4-63-175/16132677/20... Same screenshots are in that 'duplicate' bug. Should I create a new bug, or someone could reopen that? -- 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=29896 --- Comment #15 from Matteo Bruni <matteo.mystral(a)gmail.com> 2013-07-05 08:21:58 CDT --- (In reply to comment #14)
This http://bugs.winehq.org/show_bug.cgi?id=30061 It is marked as duplicate of this bug, and it is market as fixed when it is not fixed.
Here are the screenshots: http://i.piccy.info/i7/ae9a4b1e8d40b6a9abf904b4919d4188/4-63-175/24569872/20... http://i.piccy.info/i7/e8e8d859d1cdcdfb4e16d63ffbd38c39/4-63-175/16132677/20...
Same screenshots are in that 'duplicate' bug. Should I create a new bug, or someone could reopen that?
Oh, I see. That bug clearly was never really a duplicate of this one. It would be best to reopen that bug, I'd say wait a bit and create a new bug if the bug stays closed. BTW, thank you for the update. -- 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