-
Notifications
You must be signed in to change notification settings - Fork 256
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
RTX 2060 being read as a GTX 470 in Proton games. #42
Comments
Unfortunately it's expected behavior. Lots of games are written to assume they can use some nvidia-specific features if they detect an nvidia card, and crash if they can't use those features. So we pretend all nvidia cards are actually AMD cards, see 1091eaf. Of the options we have, we decided this was the least bad. |
Upstream wine hasn't been taught to identify GTX 2xxx cards yet (https://source.winehq.org/git/wine.git/blob/HEAD:/dlls/wined3d/adapter_gl.c#l1301), so it's falling back to a generic DX11-capable nvidia card https://source.winehq.org/git/wine.git/blob/HEAD:/dlls/wined3d/directx.c#l641 which happens to be a GTX 470. This should only be a cosmetic issue and will eventually be resolved upstream. |
Allright, thanks, I at least know what it is now. Still; why is it read as a GTX 470 if it is supposed to be read as an AMD card? |
I've noticed that in games that like to identify the GPU (two games in question were Flatout2 (dx9 game) and Skyrim Special Edition (DX11/dxvk game)) that my laptop's RTX 2060 is being read as a GTX 470.
This strikes me as more than a little bit odd, not sure how much of a problem it could actually be as the games run fine, but it's one of those little things that might get confusing on occasion.
I imagine it's possible that other RTX series cards have a similar issue.
The text was updated successfully, but these errors were encountered: