Commit 0d27b6ca authored by Lauri Kenttä's avatar Lauri Kenttä Committed by Alexandre Julliard

wined3d: Add check for Intel GM965/GL960 with Mesa driver.

parent a4f3cabb
...@@ -1829,7 +1829,7 @@ static enum wined3d_pci_device select_card_ati_binary(const struct wined3d_gl_in ...@@ -1829,7 +1829,7 @@ static enum wined3d_pci_device select_card_ati_binary(const struct wined3d_gl_in
static enum wined3d_pci_device select_card_intel(const struct wined3d_gl_info *gl_info, static enum wined3d_pci_device select_card_intel(const struct wined3d_gl_info *gl_info,
const char *gl_renderer) const char *gl_renderer)
{ {
if (strstr(gl_renderer, "X3100")) if (strstr(gl_renderer, "X3100") || strstr(gl_renderer, "965GM"))
{ {
/* MacOS calls the card GMA X3100, otherwise known as GM965/GL960 */ /* MacOS calls the card GMA X3100, otherwise known as GM965/GL960 */
return CARD_INTEL_X3100; return CARD_INTEL_X3100;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment