wined3d: Recognize GL_VENDOR "Tungsten Graphics, Inc." as VENDOR_MESA.

This commit is contained in:
Henri Verbeet 2009-08-13 10:03:07 +02:00 committed by Alexandre Julliard
parent e205973915
commit 914a21740c
1 changed files with 2 additions and 1 deletions

View File

@ -1008,7 +1008,8 @@ static BOOL IWineD3DImpl_FillGLCaps(struct wined3d_gl_info *gl_info)
{
gl_info->gl_vendor = VENDOR_INTEL;
}
else if (strstr(gl_string, "Mesa"))
else if (strstr(gl_string, "Mesa")
|| strstr(gl_string, "Tungsten Graphics, Inc."))
{
gl_info->gl_vendor = VENDOR_MESA;
}