mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-05 18:01:34 +00:00
wined3d: Detect intel 945 GM.
This commit is contained in:
parent
b15ba7696b
commit
143bd931b6
1 changed files with 2 additions and 1 deletions
|
@ -1303,7 +1303,8 @@ static BOOL IWineD3DImpl_FillGLCaps(WineD3D_GL_Info *gl_info) {
|
|||
}
|
||||
break;
|
||||
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 */
|
||||
gl_info->gl_card = CARD_INTEL_I945GM;
|
||||
vidmem = 64;
|
||||
|
|
Loading…
Reference in a new issue