Bug 629265 - dont block NVIDIA 260.19 for now - r+a=joe

This commit is contained in:
Benoit Jacob 2011-02-14 16:39:52 -05:00
parent 7f910b1ee1
commit b7b161307b

View File

@ -340,18 +340,6 @@ GLContext::InitWithPrefix(const char *prefix, PRBool trygl)
break;
}
}
#ifdef MOZ_X11
// bug 629265: block NVIDIA 260.19 on X11
if (mVendor == VendorNVIDIA &&
strstr((const char *)fGetString(LOCAL_GL_VERSION), "260.19") &&
!PR_GetEnv("MOZ_GLX_IGNORE_BLACKLIST"))
{
printf_stderr("[GLX] NVIDIA driver version 260.19 is blacklisted because of many crash reports (see bug 629265), "
"define the MOZ_GLX_IGNORE_BLACKLIST environment variable to bypass this.\n");
mInitialized = PR_FALSE;
}
#endif
}
if (mInitialized) {