-
Notifications
You must be signed in to change notification settings - Fork 24
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
Midtown Madness crashes with RTX Remix #14
Comments
Thanks @elishacloud - D3D7 support is awesome. I dont see that on the latest builds. However, I do see the game (Open1560) flipping between 7280x2180 and 640x480 on my system. This flipping happens on the ::Present() call, and Im not really sure how to explain the behaviour. |
@AlexDunn, thanks for looking into this. I don't have the means to test RTX Remix at the moment. Are you saying this is fixed with the latest released build or the latest dev build?
That is weird. I have never seen that. I wonder if it is some type of DSR/SSAA scaling the game uses? |
It appears as though the game thinks its running at 640p. Do you have symbols for dxwrapper and a commit? I havent fixed anything specifically for this, was just unable to repro using the latest builds. |
Actually, a little bit more digging and I did find an issue (although no error message). When running the game in fullscreen it fails due to a missing implementation for The issue of flipping between 7280 and 640 is only visible when launching the game in windowed (-window) |
There is still no raytracing though. Presumably because of this line in the log: Its common in these older GL/DX games to pretransform the geometry to screenspace before sending to the D3D API. Its possible to undo this projection, but it requires the game actually sends a projection matrix. Ideally both a projection and view matrix. |
You should be able to get symbols for the latest release here: https://github.com/elishacloud/dxwrapper/actions/runs/10894375935
That is weird DX7 games don't use swap chains and dxwrapper does not use swap chains when converting the games to D3D9.
I don't think there is much I can do here. I try to convert the DX7 functions call-by-call as directly as I can to D3D9. If the game doesn't call that I don't think there is anyway I can make the game do that. |
Yes, I loop on GetRasterStatus waiting for the vertical blank, if I am unable to get that from D3DKMTWaitForVerticalBlankEvent. I guess RTX Remix takes the call and moves it over to the swap chain. BTW: you can bypass that code by enabling |
Microsoft's Midtown Madness uses Direct3D7 and I am using dxwrapper to convert it to Direct3D9. It works fine with dxwrapper and the latest build of DXVK, but when trying to use RTX Remix we are getting an error, as listed below.
Here is the files for the latest unreleased build: dxwrapper.zip
Here are the logs:
d3d9.log
Open1560_d3d9.log
You can get a copy of Midtown Madness here.
Here are logs from the original game also:
d3d9.log
midtown_d3d9.log
The text was updated successfully, but these errors were encountered: