-
Notifications
You must be signed in to change notification settings - Fork 934
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Attempting to daisy-chain D3D8TO9 with DXVK in C&C Generals ZH on Win10 #1498
Comments
Well looks like it's working all right ... but it doesn't raise the D3D level, it's still at D3D9. DXVK may work differently than D3D8TO9 and similar. Perhaps what I need is something like D3D8TO11 or D3D9TO11 (there is one attempt but unsuccessful), or just wait until profilers support Vulkan properly. EDIT: The below text is a side comment that's totally unrelated but the lag around the green lines (patriot binary data stream) is what I was trying to debug with the profilers so it was all happening at the same time as with trying DXVK an D3D8TO9 etc. The picture actually depicts a modified case, the green patriot datalink lines are disabled and thus the lag is completely gone (30FPS instead of 1-5), it was a fairly simple INI workaround, but we're not yet to the bottom why those green lines take so much horsepower. |
You're using D3D8to9 and DXVK as your D3D9 implementation. What exactly did you expect? DXVK gets D3D9 calls from the game. About the performance: that only happens with DXVK, right? |
@altimumdelta unlike D3D8TO9, DXVK translates D3D9 directly to Vulkan. It does not first translates D3D9 to 10 or 11. So all is good if you see D3D9 in the HUD. |
@altimumdelta if for some reason you need to translate DX8 to DX11 (I'm not sure how much of a bump you need here), you can try dgVoodoo 2. DXVK only translates DX9/10/11 directly to Vulkan, so I don't think it's what you're looking for. |
RenderDoc works fine with DXVK fwiw, you just need to set the environment variable |
Yeah it crashes GenZH in all cases on boot, either generals.exe or game.dat crashes. Whether the env variable set only in Windows (without RenderDoc open), or it's set with both RenderDoc and Windows, or only in Renderdoc. And all those combinations again with or without Capture Child Process. The error is that renderdoc.dll isn't found in the process, usually, or similar. In the end I tried the Thyme project which has it's own launcher that replaces generals.exe
Seems like RenderDoc doesn't have options to deal with these child processes, shouldn't be injecting into |
Hi, has that been solved? I am having maybe the same problem. C&C is very slow with Gentool. Maybe Vulkan is not working right? |
No one has looked into this yet. Just for future reference: format 65 is D3DFMT_W11V11U10. That's a format that's technically not part of D3D9. |
I do not understand your answer yet, it is on a too high technical level. Also if I see it right the initial thread opener tries to run it without gentool? I found this project: https://github.com/crosire/d3d8to9 with it (also compiled dlls were offered somewhere) c&c runs smoothly again. but I had to replace the d3d8.dll in the game and with it gentool got disabled. What I'd like to do is to play the game online. Is gentool really not compatible with vulkan and wine? |
That comment was meant towards me or other DXVK developers. I have no clue what gentool is. If it also uses d3d8.dll, then you can't use it with DXVK on Windows. No such problem on Linux though. |
I found this project: https://github.com/michael-fadely/d3d8to11 but I do not know how to build it on linux. I would like to download a .dll file. Regarding the issue to combine gentoo with d3d8to9 I found this hint: They suggest that Gentool hooks in a d3d8.dll file iin the game folder and loads the system's d3d8 later and this file can be still replaced with some d3d8to9.dll I tried it, but it did not lead to a visible improvement. not sure which .dll Gentool loads where in the wine environment. |
I implemented the missing texture format. |
I assume it's fixed by implementing the missing texture format so I'm gonna close this issue. If it's still broken, please either reopen or open a new issue. |
Hello
I got as far as I could yesterday to try daisy-chaining but it doesn't look like it'll work out of the box. I'm thinking I must have misunderstood this project, is this meant to be used only on Linux and Wine? The DXVK installation script seems to be meant only for Linux too.
I'm trying to get a better idea of the lag in C&C Generals that has been plaguing everyone for a long time, to be able to help with workaround/fix efforts. However various various profilers and debuggers these days don't support DX9 let alone DX8.1, with the exception of Intel GPA which supports DX9 and that's how I was able to use it so D3D8TO9 does work it for sure.
In a way I may already be happy with just that one, so I might get all the things I need from it, but it kinda uses a legacy simple toolset compared to the modern one with later APIs. I'm just being stubborn as I kinda want this to work as an example and for my own enjoyment/challenge :)
UPDATE1:
I now got rid of the gentool and it's proxy DLL loading feature and tens of other combinations of namings and cleaned out all the experimentation, only placed D3D8TO9's dll as "d3d8.dll" and DXVK's 32-bit "d3d9.dll" into the Generals ZH root, for a long time I haven't seen any indication of it working but later in the evening I noticed a DXVK logfile "d3d9.log" so that's a good sign.
Note: C&C Generals uses child process for the main engine executable called
game.dat
as other Westwood/EALA games at the time. But it must be started withgenerals.exe
or else it won't boot.AMD GPUPerfStudio still reports DX9 is active and won't work since it doesn't support DX9 anyway ... but then again it doesn't support Vulkan either what was I thinking, the thing is from 2015 with last update on 2016 somewhere.
Intel GPA also won't work now, it launches, doesn't crash, but won't work ... now I figure out it doesn't support Vulkan either, what in the hell was I thinking, how the heck did I miss that, because I got the latest version a week ago I thought it should have but yeah I must have mixed that news with RenderDoc being the one adding Vulkan support.
RenderDoc just won't work either, perhaps it's a RenderDoc problem and not DXVK.
RenderDoc is not a profiler so it will not help me as much but it would be great to make it run just to prove the point, perhaps it may be useful for other DXVK cases if this problem also affects other daisy-chained games. RenderDoc won't launch the game no matter what I try, it'll just crash the game and even one of it's own components. Lastly the only combination that worked the best so far was injecting it into game.dat which is launched by Thyme. (TheAssemblyArmada's project) It doesn't work but it doesn't crash, game runs normally, but no API is detected and can't do anything really so it's so far useless.
The text was updated successfully, but these errors were encountered: