mirror of
https://github.com/reactos/wine.git
synced 2024-11-26 13:10:28 +00:00
wined3d: Test for "AMD" in the renderer string as well to detect AMD cards.
Specifically, the Gallium r600 driver reports "X.Org" for vendor and a string of the form "Gallium 0.4 on AMD RV730" for the renderer.
This commit is contained in:
parent
7a64870014
commit
50b76b76cb
@ -1373,6 +1373,7 @@ static enum wined3d_pci_vendor wined3d_guess_card_vendor(const char *gl_vendor_s
|
||||
if (strstr(gl_vendor_string, "ATI")
|
||||
|| strstr(gl_vendor_string, "Advanced Micro Devices, Inc.")
|
||||
|| strstr(gl_vendor_string, "X.Org R300 Project")
|
||||
|| strstr(gl_renderer, "AMD")
|
||||
|| strstr(gl_renderer, "R100")
|
||||
|| strstr(gl_renderer, "R200")
|
||||
|| strstr(gl_renderer, "R300")
|
||||
|
Loading…
Reference in New Issue
Block a user