From 147961a36e9e87ef55ad2663a4715d6a778af114 Mon Sep 17 00:00:00 2001 From: Benoit Jacob Date: Sun, 30 Jan 2011 18:10:44 -0500 Subject: [PATCH] Bug 623338 - NVIDIA drivers use different internal version numbers on WinXP than they do on newer Windows versions, as a result in today's nightly they were accidentally blacklisted - r+a=trust-me-we-want-this-in --- widget/src/windows/GfxInfo.cpp | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/widget/src/windows/GfxInfo.cpp b/widget/src/windows/GfxInfo.cpp index 519ad1dfc4f..b392143491a 100644 --- a/widget/src/windows/GfxInfo.cpp +++ b/widget/src/windows/GfxInfo.cpp @@ -602,7 +602,15 @@ static const GfxDriverInfo gDriverInfo[] = { /* * NVIDIA entries */ - GfxDriverInfo( DRIVER_OS_ALL, + GfxDriverInfo( DRIVER_OS_WINDOWS_XP, + vendorNVIDIA, GfxDriverInfo::allDevices, + GfxDriverInfo::allFeatures, nsIGfxInfo::FEATURE_BLOCKED_DRIVER_VERSION, + DRIVER_LESS_THAN, V(6,14,12,5721), "257.21" ), + GfxDriverInfo( DRIVER_OS_WINDOWS_VISTA, + vendorNVIDIA, GfxDriverInfo::allDevices, + GfxDriverInfo::allFeatures, nsIGfxInfo::FEATURE_BLOCKED_DRIVER_VERSION, + DRIVER_LESS_THAN, V(8,17,12,5721), "257.21" ), + GfxDriverInfo( DRIVER_OS_WINDOWS_7, vendorNVIDIA, GfxDriverInfo::allDevices, GfxDriverInfo::allFeatures, nsIGfxInfo::FEATURE_BLOCKED_DRIVER_VERSION, DRIVER_LESS_THAN, V(8,17,12,5721), "257.21" ),