http://bugs.winehq.org/show_bug.cgi?id=18794
Summary: New Direct3D code from 20090605 fails with ATI HD4350 using fglrx 8.600 driver (on x86_64) Product: Wine Version: unspecified Platform: PC OS/Version: Linux Status: UNCONFIRMED Severity: minor Priority: P2 Component: directx-d3d AssignedTo: wine-bugs@winehq.org ReportedBy: yann@droneaud.fr
Something is going wrong with today commits.
No more error about unsupported fbconfig, but a page fault:
First chance exception: page fault on read access to 0x00000018 in 32-bit code (0x7d30396a). Register dump: CS:0023 SS:002b DS:002b ES:002b FS:0063 GS:006b EIP:7d30396a ESP:0067eba8 EBP:7be14c58 EFLAGS:00010246( R- -- I Z- -P- ) EAX:00000001 EBX:00000001 ECX:7e07bc80 EDX:00000000 ESI:00000000 EDI:7c23aea8 Stack dump: 0x0067eba8: 7d2f08e7 00000000 00000000 7be15bb8 0x0067ebb8: 7c1904e0 7c1904e0 00000000 00000000 0x0067ebc8: 00000000 00000000 7be24a60 7c1904e0 0x0067ebd8: 7be24a60 7be254c0 00000000 7be24a60 0x0067ebe8: 00000000 00000000 7c084388 00000000 0x0067ebf8: 7c1904e0 7c152210 00000000 00000000 Backtrace: =>0 0x7d30396a in fglrx_dri.so (+0x71996a) (0x7be14c58) 1 0x00000010 (0x00000010) 2 0x00000000 (0x00000000) 0x7d30396a: movl 0x18(%edx),%eax
http://bugs.winehq.org/show_bug.cgi?id=18794
--- Comment #1 from Yann Droneaud yann@droneaud.fr 2009-06-05 10:16:40 --- Created an attachment (id=21568) --> (http://bugs.winehq.org/attachment.cgi?id=21568) WINEDEBUG=+relay,+d3d,+wgl,+driver wine ./d3did3.exe
Attached a debug trace.
Here is the code of the test program, quite simple, indeed. It seems the fault happen during the call to Direct3DCreate8(), the function never returns.
// Manually load the d3d8.dll library. d3d8dll = LoadLibrary("d3d8.dll"); if(d3d8dll == NULL) { errstr = "Can't load d3d8.dll"; goto failure0; }
// get entry point pDirect3DCreate8 = (LPDIRECT3DCREATE8) GetProcAddress(d3d8dll, "Direct3DCreate8");
if (pDirect3DCreate8 == NULL) { errstr = "Can't find Direct3DCreate8()"; goto failure1; }
pIDirect3D8 = pDirect3DCreate8(D3D_SDK_VERSION); if (pIDirect3D8 == NULL) { errstr = "can't create IDirect3D8 interface"; goto failure1; }
count = IDirect3D8_GetAdapterCount(pIDirect3D8);
http://bugs.winehq.org/show_bug.cgi?id=18794
--- Comment #2 from Henri Verbeet hverbeet@gmail.com 2009-06-05 10:53:42 --- Looks like it doesn't like attaching depth texures to the FBO. Perhaps that's a questionable thing to do, but the driver shouldn't crash regardless.
http://bugs.winehq.org/show_bug.cgi?id=18794
--- Comment #3 from Henri Verbeet hverbeet@gmail.com 2009-06-05 10:56:12 --- Created an attachment (id=21569) --> (http://bugs.winehq.org/attachment.cgi?id=21569) patch
As a potential workaround, how does the attached patch work?
http://bugs.winehq.org/show_bug.cgi?id=18794
--- Comment #4 from Yann Droneaud yann@droneaud.fr 2009-06-05 11:13:04 --- (In reply to comment #3)
As a potential workaround, how does the attached patch work?
Two line added in the log, but still a page fault in fglxr_dri.so:
-wine: Unhandled page fault on read access to 0x00000018 at address 0x7cbb296a (thread 0039), starting debugger... +trace:d3d:check_fbo_compat Framebuffer format check call ok utils.c / 542 +trace:d3d:init_format_fbo_compat_info Format WINED3DFMT_L16 is supported as fbo target +wine: Unhandled page fault on read access to 0x00000018 at address 0x7d30796a (thread 001e), starting debugger...
http://bugs.winehq.org/show_bug.cgi?id=18794
Henri Verbeet hverbeet@gmail.com changed:
What |Removed |Added ---------------------------------------------------------------------------- Attachment #21569|0 |1 is obsolete| |
--- Comment #5 from Henri Verbeet hverbeet@gmail.com 2009-06-05 11:20:49 --- Created an attachment (id=21570) --> (http://bugs.winehq.org/attachment.cgi?id=21570) patch
How about this one?
http://bugs.winehq.org/show_bug.cgi?id=18794
Yann Droneaud yann@droneaud.fr changed:
What |Removed |Added ---------------------------------------------------------------------------- CC| |yann@droneaud.fr
--- Comment #6 from Yann Droneaud yann@droneaud.fr 2009-06-05 11:52:38 --- (In reply to comment #5)
How about this one?
Log diff from previous patch:
-trace:d3d:check_fbo_compat Framebuffer format check call ok utils.c / 542 -trace:d3d:init_format_fbo_compat_info Format WINED3DFMT_L16 is supported as fbo target -wine: Unhandled page fault on read access to 0x00000018 at address 0x7d30796a (thread 001e), starting debugger... +wine: Unhandled page fault on read access to 0x00000018 at address 0x7d31196a (thread 0009), starting debugger...
http://bugs.winehq.org/show_bug.cgi?id=18794
--- Comment #7 from Henri Verbeet hverbeet@gmail.com 2009-06-05 12:13:49 --- That doesn't look right, you should at least be seeing the output from the extra trace the patch adds.
http://bugs.winehq.org/show_bug.cgi?id=18794
Yann Droneaud yann@droneaud.fr changed:
What |Removed |Added ---------------------------------------------------------------------------- Attachment #21568|0 |1 is obsolete| |
--- Comment #8 from Yann Droneaud yann@droneaud.fr 2009-06-05 15:23:52 --- Created an attachment (id=21578) --> (http://bugs.winehq.org/attachment.cgi?id=21578) 21568: WINEDEBUG=+relay,+d3d,+wgl,+driver wine ./d3did3.exe, after patch from comment #5
(In reply to comment #7)
That doesn't look right, you should at least be seeing the output from the extra trace the patch adds.
Indeed, I forgot to apply the patch after running git reset. Attached the new log with your patch.
It's now working, and Direct 3D report my card description as 'ATI Radeon 9500' instead of 'Direct3D HAL'.
http://bugs.winehq.org/show_bug.cgi?id=18794
--- Comment #9 from Yann Droneaud yann@droneaud.fr 2009-06-05 15:25:39 --- Created an attachment (id=21579) --> (http://bugs.winehq.org/attachment.cgi?id=21579) Default error message before wine 1.1.23
Here are the previous messages I was getting while retrieving Direct3D informations, when description where set to "Direct3D HAL".
http://bugs.winehq.org/show_bug.cgi?id=18794
--- Comment #10 from Yann Droneaud yann@droneaud.fr 2009-06-05 15:26:44 --- Created an attachment (id=21580) --> (http://bugs.winehq.org/attachment.cgi?id=21580) Default error message after wine 1.1.23 + patch from comment #5
Here are the logs after your patch.
http://bugs.winehq.org/show_bug.cgi?id=18794
--- Comment #11 from Yann Droneaud yann@droneaud.fr 2009-06-05 15:27:43 --- Created an attachment (id=21581) --> (http://bugs.winehq.org/attachment.cgi?id=21581) glxinfo from my system
And last, the GLX data returned by glxinfo.
http://bugs.winehq.org/show_bug.cgi?id=18794
Ken Sharp kennybobs@o2.co.uk changed:
What |Removed |Added ---------------------------------------------------------------------------- Keywords| |regression, source, | |testcase Platform|PC |PC-x86-64 Version|unspecified |1.1.23 Severity|minor |normal
http://bugs.winehq.org/show_bug.cgi?id=18794
Ken Sharp kennybobs@o2.co.uk changed:
What |Removed |Added ---------------------------------------------------------------------------- CC| |matthewm@boedicker.org
--- Comment #12 from Ken Sharp kennybobs@o2.co.uk 2009-06-06 05:03:50 --- *** Bug 18805 has been marked as a duplicate of this bug. ***
http://bugs.winehq.org/show_bug.cgi?id=18794
Ken Sharp kennybobs@o2.co.uk changed:
What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |NEW Ever Confirmed|0 |1
--- Comment #13 from Ken Sharp kennybobs@o2.co.uk 2009-06-06 05:19:32 --- Reported to affect WoW and Eve.
http://bugs.winehq.org/show_bug.cgi?id=18794
--- Comment #14 from Henri Verbeet hverbeet@gmail.com 2009-06-06 08:07:45 --- (In reply to comment #13)
Reported to affect WoW and Eve.
It's a bit worse than that, actually. It will affect anything that uses wined3d on fglrx, this happens during wined3d initialization. Note also that the fglrx bug is *not* triggered by the commit making FBOs the default ORM, but by the one that checks which texture formats are FBO attachable.
http://bugs.winehq.org/show_bug.cgi?id=18794
Chad cmkeever@gmail.com changed:
What |Removed |Added ---------------------------------------------------------------------------- CC| |cmkeever@gmail.com
--- Comment #15 from Chad cmkeever@gmail.com 2009-06-07 00:29:53 --- A workaround that gets WoW running as well for me as it did in 1.1.22 is to use regedit to change the value of HKEY_CURRENT_USER/Software/Wine/Direct3D/OffscreenRenderingMode from "fbo" to "backbuffer". I don't notice a performance drop.
http://bugs.winehq.org/show_bug.cgi?id=18794
Roman Mamedov roman@rm.pp.ru changed:
What |Removed |Added ---------------------------------------------------------------------------- CC| |roman@rm.pp.ru
--- Comment #16 from Roman Mamedov roman@rm.pp.ru 2009-06-07 05:04:21 --- Can confirm that it affects Lineage II and OpenArena (Win32 version) on Radeon HD3870 with ATI Catalyst 9.5. As mentioned above, the issue is remedied by changing OffscreenRenderingMode from "fbo" to "backbuffer".
http://bugs.winehq.org/show_bug.cgi?id=18794
--- Comment #17 from Yann Droneaud yann@droneaud.fr 2009-06-07 05:32:14 --- (In reply to comment #16)
Can confirm that it affects Lineage II and OpenArena (Win32 version) on Radeon HD3870 with ATI Catalyst 9.5. As mentioned above, the issue is remedied by changing OffscreenRenderingMode from "fbo" to "backbuffer".
This bug will affect any Direct3D application using (broken ?) fglrx driver. It is triggered within the very first function that any Direct3D application must call. So it's not necessary to test each game: using ATI driver, all Direct3D applications will be affected by this problem.
http://bugs.winehq.org/show_bug.cgi?id=18794
Vitaliy Margolen vitaliy@kievinfo.com changed:
What |Removed |Added ---------------------------------------------------------------------------- CC| |molletts@yahoo.com
--- Comment #18 from Vitaliy Margolen vitaliy@kievinfo.com 2009-06-07 12:43:07 --- *** Bug 18822 has been marked as a duplicate of this bug. ***
http://bugs.winehq.org/show_bug.cgi?id=18794
Austin English austinenglish@gmail.com changed:
What |Removed |Added ---------------------------------------------------------------------------- Summary|New Direct3D code from |Using FBO as the ORM |20090605 fails with ATI |crashes with fglrx drivers |HD4350 using fglrx 8.600 | |driver (on x86_64) |
--- Comment #19 from Austin English austinenglish@gmail.com 2009-06-07 13:39:17 --- Making summary more generic/easier to search for.
http://bugs.winehq.org/show_bug.cgi?id=18794
Dmitry Timoshkov dmitry@codeweavers.com changed:
What |Removed |Added ---------------------------------------------------------------------------- CC| |staffan.bjornesjo@gmail.com
--- Comment #20 from Dmitry Timoshkov dmitry@codeweavers.com 2009-06-08 05:04:29 --- *** Bug 18836 has been marked as a duplicate of this bug. ***
http://bugs.winehq.org/show_bug.cgi?id=18794
--- Comment #21 from Henri Verbeet hverbeet@gmail.com 2009-06-08 06:04:46 --- Created an attachment (id=21644) --> (http://bugs.winehq.org/attachment.cgi?id=21644) FGLRX test case.
Test case, compile with "gcc fbo_fglrx.c -o fbo_fglrx -lGL -lglut".
http://bugs.winehq.org/show_bug.cgi?id=18794
--- Comment #22 from Henri Verbeet hverbeet@gmail.com 2009-06-08 06:06:57 --- I've also filed http://ati.cchtml.com/show_bug.cgi?id=1571.
http://bugs.winehq.org/show_bug.cgi?id=18794
Austin English austinenglish@gmail.com changed:
What |Removed |Added ---------------------------------------------------------------------------- CC| |justicezero@mailsnare.net
--- Comment #23 from Austin English austinenglish@gmail.com 2009-06-09 10:35:23 --- *** Bug 18862 has been marked as a duplicate of this bug. ***
http://bugs.winehq.org/show_bug.cgi?id=18794
moylanj@gmail.com changed:
What |Removed |Added ---------------------------------------------------------------------------- CC| |moylanj@gmail.com
--- Comment #24 from moylanj@gmail.com 2009-06-09 15:45:50 --- Also affects Guild Wars, however that seems to have other problems as well, as once a character is selected the loading screen runs, then it crashes as it begins to render the game display with a different problem not germane to this bug.
http://bugs.winehq.org/show_bug.cgi?id=18794
Vitaliy Margolen vitaliy@kievinfo.com changed:
What |Removed |Added ---------------------------------------------------------------------------- CC| |admin@softimpact.se
--- Comment #25 from Vitaliy Margolen vitaliy@kievinfo.com 2009-06-09 21:44:51 --- *** Bug 18872 has been marked as a duplicate of this bug. ***
http://bugs.winehq.org/show_bug.cgi?id=18794
Ken Sharp kennybobs@o2.co.uk changed:
What |Removed |Added ---------------------------------------------------------------------------- Target Milestone|--- |1.2.0
--- Comment #26 from Ken Sharp kennybobs@o2.co.uk 2009-06-10 09:36:23 --- Nominating for 1.2 - regression/affects large number of apps.
http://bugs.winehq.org/show_bug.cgi?id=18794
--- Comment #27 from Henri Verbeet hverbeet@gmail.com 2009-06-10 10:10:24 --- (In reply to comment #26)
Nominating for 1.2 - regression/affects large number of apps.
Technically this should be INVALID, since it's not actually a Wine bug.
http://bugs.winehq.org/show_bug.cgi?id=18794
Ken Sharp kennybobs@o2.co.uk changed:
What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED CC| |kennybobs@o2.co.uk Resolution| |INVALID
--- Comment #28 from Ken Sharp kennybobs@o2.co.uk 2009-06-10 10:24:57 --- True. Invalid then. Henri has opened a bug with the maintainers of the package - no Wine bug here.
http://bugs.winehq.org/show_bug.cgi?id=18794
Ken Sharp kennybobs@o2.co.uk changed:
What |Removed |Added ---------------------------------------------------------------------------- Status|RESOLVED |CLOSED
--- Comment #29 from Ken Sharp kennybobs@o2.co.uk 2009-06-10 10:25:43 --- Will add notes to each affected application. Duplicates will still come in of course...
http://bugs.winehq.org/show_bug.cgi?id=18794
--- Comment #30 from Austin English austinenglish@gmail.com 2009-06-10 11:14:32 --- (In reply to comment #27)
(In reply to comment #26)
Nominating for 1.2 - regression/affects large number of apps.
Technically this should be INVALID, since it's not actually a Wine bug.
We might want to leave this open, perhaps until ATI releases an updated (or at least beta) driver.
http://bugs.winehq.org/show_bug.cgi?id=18794
--- Comment #31 from Ken Sharp kennybobs@o2.co.uk 2009-06-10 11:16:16 --- We don't leave any other invalid bugs open?
http://bugs.winehq.org/show_bug.cgi?id=18794
--- Comment #32 from Austin English austinenglish@gmail.com 2009-06-10 11:32:21 --- (In reply to comment #31)
We don't leave any other invalid bugs open?
Not usually, but if a bug is bound to have a bunch of duplicates filed, we often do, until a fix is released. For example, this was done for the Nvidia Legacy driver text shearing bug.
http://bugs.winehq.org/show_bug.cgi?id=18794
Ken Sharp kennybobs@o2.co.uk changed:
What |Removed |Added ---------------------------------------------------------------------------- CC| |tmptmp68@yahoo.com
--- Comment #33 from Ken Sharp kennybobs@o2.co.uk 2009-06-10 13:20:25 --- *** Bug 18884 has been marked as a duplicate of this bug. ***
http://bugs.winehq.org/show_bug.cgi?id=18794
Austin English austinenglish@gmail.com changed:
What |Removed |Added ---------------------------------------------------------------------------- Status|CLOSED |REOPENED Resolution|INVALID | Summary|Using FBO as the ORM |Using FBO as the ORM |crashes with fglrx drivers |crashes with (broken) fglrx | |drivers - not a Wine bug
--- Comment #34 from Austin English austinenglish@gmail.com 2009-06-10 13:55:35 --- Reopening for now, adjusting summary to note it's not a wine bug.
http://bugs.winehq.org/show_bug.cgi?id=18794
Vitaliy Margolen vitaliy@kievinfo.com changed:
What |Removed |Added ---------------------------------------------------------------------------- Target Milestone|1.2.0 |---
--- Comment #35 from Vitaliy Margolen vitaliy@kievinfo.com 2009-06-10 20:39:05 --- If anything this bug is invalid - the driver bug. What's to nominate for???
http://bugs.winehq.org/show_bug.cgi?id=18794
Dmitry Timoshkov dmitry@codeweavers.com changed:
What |Removed |Added ---------------------------------------------------------------------------- Component|directx-d3d |-unknown
http://bugs.winehq.org/show_bug.cgi?id=18794
--- Comment #36 from Justice M. justicezero@mailsnare.net 2009-06-11 12:03:22 --- (In reply to comment #35)
If anything this bug is invalid - the driver bug. What's to nominate for???
Well, what in Wine changed in 1.1.23 to make the effects so much more severe? 1.1.22 was able to cope with the bug, and still is... so I would presume that that particular finickiness is something that can be looked at on this end.
http://bugs.winehq.org/show_bug.cgi?id=18794
--- Comment #37 from Staffan Björnesjö staffan.bjornesjo@gmail.com 2009-06-11 12:10:04 --- (In reply to comment #36)
(In reply to comment #35)
If anything this bug is invalid - the driver bug. What's to nominate for???
Well, what in Wine changed in 1.1.23 to make the effects so much more severe? 1.1.22 was able to cope with the bug, and still is... so I would presume that that particular finickiness is something that can be looked at on this end.
If this bug is really the same as 18836 (http://bugs.winehq.org/show_bug.cgi?id=18836), then see my bisect there. EU2 worked fine in 1.1.22, but in 1.1.23 it can not even start for me.
http://bugs.winehq.org/show_bug.cgi?id=18794
--- Comment #38 from Justice M. justicezero@mailsnare.net 2009-06-11 17:04:00 --- (In reply to comment #37)
If this bug is really the same as 18836 (http://bugs.winehq.org/show_bug.cgi?id=18836), then see my bisect there. EU2 worked fine in 1.1.22, but in 1.1.23 it can not even start for me.
Right; the same with me and DAoC. So it seems like that inability-to-start is a Wine issue, even if the underlying problem is outside of Wine.
http://bugs.winehq.org/show_bug.cgi?id=18794
Jerome Leclanche adys.wh@gmail.com changed:
What |Removed |Added ---------------------------------------------------------------------------- CC| |adys.wh@gmail.com
--- Comment #39 from Jerome Leclanche adys.wh@gmail.com 2009-06-11 22:01:39 --- (In reply to comment #36)
(In reply to comment #35)
If anything this bug is invalid - the driver bug. What's to nominate for???
Well, what in Wine changed in 1.1.23 to make the effects so much more severe? 1.1.22 was able to cope with the bug, and still is... so I would presume that that particular finickiness is something that can be looked at on this end.
http://wiki.winehq.org/UsefulRegistryKeys
Change OffscreenRenderingMode to "backbuffer".
An ATI bug has been filed, there is a workaround if you want to keep playing for now. Right now, the bug has been moved to http://ati.cchtml.com/show_bug.cgi?id=1571 - unless ATI gets an incentive to release a fix faster, there's nothing anyone can do. Nominating it for anything certainly won't get this one more developer attention.
http://bugs.winehq.org/show_bug.cgi?id=18794
Zhenya Zenitur@yandex.ru changed:
What |Removed |Added ---------------------------------------------------------------------------- CC| |Zenitur@yandex.ru
--- Comment #40 from Zhenya Zenitur@yandex.ru 2009-06-12 08:24:13 --- Sorry, my posted bug is a dublicate. In 1.1.23 stalker crashes (don't test with nVidia) with same error. This trouble has a beggining in Wine 1.1.21. Grass became red. In 1.1.22 I see more colourful bugs (can't make screenshot now), and in 1.1.23 it crashes. This is my dublicate page: http://bugs.winehq.org/show_bug.cgi?id=18902
http://bugs.winehq.org/show_bug.cgi?id=18794
--- Comment #41 from Jerome Leclanche adys.wh@gmail.com 2009-06-12 08:28:14 --- (In reply to comment #40)
Sorry, my posted bug is a dublicate. In 1.1.23 stalker crashes (don't test with nVidia) with same error. This trouble has a beggining in Wine 1.1.21. Grass became red. In 1.1.22 I see more colourful bugs (can't make screenshot now), and in 1.1.23 it crashes. This is my dublicate page: http://bugs.winehq.org/show_bug.cgi?id=18902
The crash is a dupe, the other problems mentioned are not.
http://bugs.winehq.org/show_bug.cgi?id=18794
--- Comment #42 from Henri Verbeet hverbeet@gmail.com 2009-06-12 10:45:26 --- It might be worth giving this another try with current git.
http://bugs.winehq.org/show_bug.cgi?id=18794
--- Comment #43 from Staffan Björnesjö staffan.bjornesjo@gmail.com 2009-06-12 14:33:13 ---
http://wiki.winehq.org/UsefulRegistryKeys
Change OffscreenRenderingMode to "backbuffer".
Thank you. It works without problems again.
http://bugs.winehq.org/show_bug.cgi?id=18794
--- Comment #44 from Yann Droneaud yann@droneaud.fr 2009-06-13 04:53:09 --- (In reply to comment #42)
It might be worth giving this another try with current git.
Seems to works for me with 20090612 git
$ wine --version wine-1.1.23-159-g45629dc
http://bugs.winehq.org/show_bug.cgi?id=18794
--- Comment #45 from Jerome Leclanche adys.wh@gmail.com 2009-06-14 00:54:48 --- (In reply to comment #44)
(In reply to comment #42)
It might be worth giving this another try with current git.
Seems to works for me with 20090612 git
$ wine --version wine-1.1.23-159-g45629dc
Can be closed invalid then?
http://bugs.winehq.org/show_bug.cgi?id=18794
--- Comment #46 from Austin English austinenglish@gmail.com 2009-06-14 04:42:07 --- (In reply to comment #45)
(In reply to comment #44)
(In reply to comment #42)
It might be worth giving this another try with current git.
Seems to works for me with 20090612 git
$ wine --version wine-1.1.23-159-g45629dc
Can be closed invalid then?
The bug is in ATI's drivers, yes. The bug is being kept open to prevent more invalid duplicates from being filed.
http://bugs.winehq.org/show_bug.cgi?id=18794
Austin English austinenglish@gmail.com changed:
What |Removed |Added ---------------------------------------------------------------------------- CC| |cliff@may.be
--- Comment #47 from Austin English austinenglish@gmail.com 2009-06-14 14:36:24 --- *** Bug 18945 has been marked as a duplicate of this bug. ***
http://bugs.winehq.org/show_bug.cgi?id=18794
Ken Sharp kennybobs@o2.co.uk changed:
What |Removed |Added ---------------------------------------------------------------------------- CC| |mitchellvc@gmail.com
--- Comment #48 from Ken Sharp kennybobs@o2.co.uk 2009-06-14 15:11:38 --- *** Bug 18944 has been marked as a duplicate of this bug. ***
http://bugs.winehq.org/show_bug.cgi?id=18794
Dmitry Timoshkov dmitry@codeweavers.com changed:
What |Removed |Added ---------------------------------------------------------------------------- CC| |loofers@gmail.com
--- Comment #49 from Dmitry Timoshkov dmitry@codeweavers.com 2009-06-18 03:27:14 --- *** Bug 18854 has been marked as a duplicate of this bug. ***
http://bugs.winehq.org/show_bug.cgi?id=18794
Dmitry Timoshkov dmitry@codeweavers.com changed:
What |Removed |Added ---------------------------------------------------------------------------- CC| |neolo7@hotmail.com
--- Comment #50 from Dmitry Timoshkov dmitry@codeweavers.com 2009-06-23 05:55:10 --- *** Bug 19044 has been marked as a duplicate of this bug. ***
http://bugs.winehq.org/show_bug.cgi?id=18794
Vitaliy Margolen vitaliy@kievinfo.com changed:
What |Removed |Added ---------------------------------------------------------------------------- CC| |bgillis@uwaterloo.ca
--- Comment #51 from Vitaliy Margolen vitaliy@kievinfo.com 2009-06-27 13:15:42 --- *** Bug 19088 has been marked as a duplicate of this bug. ***
http://bugs.winehq.org/show_bug.cgi?id=18794
mizipzor mizipzor@gmail.com changed:
What |Removed |Added ---------------------------------------------------------------------------- CC| |mizipzor@gmail.com
--- Comment #52 from mizipzor mizipzor@gmail.com 2009-08-11 13:20:00 --- Is this ticket only for FBO as ORM? I got a total system freeze even when using backbuffer. Is that a seperate "bug" from this?
http://bugs.winehq.org/show_bug.cgi?id=18794
Staffan Björnesjö staffan.bjornesjo@gmail.com changed:
What |Removed |Added ---------------------------------------------------------------------------- CC|staffan.bjornesjo@gmail.com |
http://bugs.winehq.org/show_bug.cgi?id=18794
adrussel@hotmail.com changed:
What |Removed |Added ---------------------------------------------------------------------------- CC| |adrussel@hotmail.com
--- Comment #53 from adrussel@hotmail.com 2009-10-08 07:11:32 --- (In reply to comment #52)
Is this ticket only for FBO as ORM? I got a total system freeze even when using backbuffer. Is that a seperate "bug" from this?
I would guess that it is a separate bug.
http://bugs.winehq.org/show_bug.cgi?id=18794
--- Comment #54 from adrussel@hotmail.com 2009-10-08 07:17:29 --- By the way, bug 18650 was created before this one, and it seems these bugs are identical. This bug contains way more information than the FFXI one, though, so I'll leave it to someone else to mark one as a duplicate...
http://bugs.winehq.org/show_bug.cgi?id=18794
--- Comment #55 from Henri Verbeet hverbeet@gmail.com 2009-10-08 07:28:21 --- Considering we don't hit this driver bug anymore (for a while now), this can probably be closed.
http://bugs.winehq.org/show_bug.cgi?id=18794
Vitaliy Margolen vitaliy@kievinfo.com changed:
What |Removed |Added ---------------------------------------------------------------------------- Status|REOPENED |RESOLVED Resolution| |INVALID
--- Comment #56 from Vitaliy Margolen vitaliy@kievinfo.com 2009-10-08 08:16:58 --- Agreed, closing invalid.
http://bugs.winehq.org/show_bug.cgi?id=18794
Vitaliy Margolen vitaliy@kievinfo.com changed:
What |Removed |Added ---------------------------------------------------------------------------- Status|RESOLVED |CLOSED
--- Comment #57 from Vitaliy Margolen vitaliy@kievinfo.com 2009-10-08 08:17:08 --- Closing