wined3d: Recognize i915g as Intel.

This commit is contained in:
Henri Verbeet 2012-01-02 21:45:26 +01:00 committed by Alexandre Julliard
parent 28bb6f954a
commit 1a3aabf6f2
1 changed files with 1 additions and 0 deletions

View File

@ -1440,6 +1440,7 @@ static enum wined3d_pci_vendor wined3d_guess_card_vendor(const char *gl_vendor_s
if (strstr(gl_vendor_string, "Intel(R)")
/* Intel switched from Intel(R) to Intel® recently, so just match Intel. */
|| strstr(gl_renderer, "Intel")
|| strstr(gl_renderer, "i915")
|| strstr(gl_vendor_string, "Intel Inc."))
return HW_VENDOR_INTEL;