wined3d: Added further Nvidia Geforce 8xxx detection.

This commit is contained in:
Aaron Brazener 2009-12-30 13:10:25 +00:00 committed by Alexandre Julliard
parent dd5abc2dcf
commit 11754a645b
2 changed files with 7 additions and 1 deletions

View File

@ -1288,7 +1288,9 @@ static enum wined3d_pci_device wined3d_guess_card(const struct wined3d_gl_info *
}
/* Geforce8 - lowend */
if (strstr(gl_renderer, "8300")
if (strstr(gl_renderer, "8100")
|| strstr(gl_renderer, "8200")
|| strstr(gl_renderer, "8300")
|| strstr(gl_renderer, "8400")
|| strstr(gl_renderer, "8500"))
{

View File

@ -1297,7 +1297,11 @@ enum wined3d_pci_device
CARD_NVIDIA_GEFORCE_7300 = 0x01d7, /* GeForce Go 7300 */
CARD_NVIDIA_GEFORCE_7600 = 0x0391,
CARD_NVIDIA_GEFORCE_7800GT = 0x0092,
CARD_NVIDIA_GEFORCE_8100 = 0x084F,
CARD_NVIDIA_GEFORCE_8200 = 0x0849, /* Other PCI ID 0x084B */
CARD_NVIDIA_GEFORCE_8300GS = 0x0423,
CARD_NVIDIA_GEFORCE_8400GS = 0x0404,
CARD_NVIDIA_GEFORCE_8500GT = 0x0421,
CARD_NVIDIA_GEFORCE_8600GT = 0x0402,
CARD_NVIDIA_GEFORCE_8600MGT = 0x0407,
CARD_NVIDIA_GEFORCE_8800GTS = 0x0193,