Commit 143bd931 authored by Vincent Pelletier's avatar Vincent Pelletier Committed by Alexandre Julliard

wined3d: Detect intel 945 GM.

parent b15ba769
...@@ -1303,7 +1303,8 @@ static BOOL IWineD3DImpl_FillGLCaps(WineD3D_GL_Info *gl_info) { ...@@ -1303,7 +1303,8 @@ static BOOL IWineD3DImpl_FillGLCaps(WineD3D_GL_Info *gl_info) {
} }
break; break;
case VENDOR_INTEL: case VENDOR_INTEL:
if (strstr(gl_info->gl_renderer, "GMA 950")) { if (strstr(gl_info->gl_renderer, "GMA 950") ||
strstr(gl_info->gl_renderer, "945GM")) {
/* MacOS calls the card GMA 950, but everywhere else the PCI ID is named 945GM */ /* MacOS calls the card GMA 950, but everywhere else the PCI ID is named 945GM */
gl_info->gl_card = CARD_INTEL_I945GM; gl_info->gl_card = CARD_INTEL_I945GM;
vidmem = 64; vidmem = 64;
......
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