diff --git a/.hgtags b/.hgtags
index c81c919d1a2f966df2fcea947d8aaaf046248c53..07ddf93c11858f1c5952b42e0e18501b5d6de1f0 100755
--- a/.hgtags
+++ b/.hgtags
@@ -468,3 +468,6 @@ bf6d453046011a11de2643fac610cc5258650f82 3.6.5-release
 ae457ece77001767ae9613148c495e7b98cc0f4a 3.6.7-release
 d40c66e410741de7e90b1ed6dac28dd8a2d7e1f6 3.6.8-release
 70eda3721d36df3e00730629c42a1304e5bc65b8 3.6.9-release
+5b54b36862ff8bc3b6935673c9d1c1f22ee8d521 3.6.10-release
+2feb70a4cfde43f2898d95ff8fcae3e67805c7c2 3.6.11-release
+88bbfd7a6971033f3aa103f3a3500ceb4c73521b 3.6.12-release
diff --git a/BuildParams b/BuildParams
index 31e7e841ad0e39329cfd7fc3e29558a9dc49058f..6b63448c52743cc83987552425d1addb5d8981f5 100755
--- a/BuildParams
+++ b/BuildParams
@@ -51,13 +51,13 @@ viewer_channel = "Second Life Test"
 sourceid = ""
 additional_packages = "Amazon Desura B C"
 Amazon_sourceid = "1207v_Amazon"
-Amazon_viewer_channel_suffix = " Amazon"
+Amazon_viewer_channel_suffix = "Amazon"
 Desura_sourceid = "1208_desura"
-Desura_viewer_channel_suffix = " Desura"
+Desura_viewer_channel_suffix = "Desura"
 B_sourceid = "1301_B"
-B_viewer_channel_suffix = " B"
+B_viewer_channel_suffix = "B"
 C_sourceid = "1302_C"
-C_viewer_channel_suffix = " C"
+C_viewer_channel_suffix = "C"
 
 # Report changes since...
 viewer-development.show_changes_since = last_sprint
diff --git a/build.sh b/build.sh
index 4875ef39f770d5259cc25f998ea5d3c424769963..ccc8476ceafb0e4c3edc5ea12692a1712211b647 100755
--- a/build.sh
+++ b/build.sh
@@ -347,8 +347,7 @@ then
   if $build_viewer
   then
     begin_section Upload Installer
-    # Upload installer - note that ONLY THE FIRST ITEM uploaded as "installer"
-    # will appear in the version manager.
+    # Upload installer
     package=$(installer_$arch)
     if [ x"$package" = x ] || test -d "$package"
     then
@@ -372,7 +371,7 @@ then
         then
           upload_item installer "$package" binary/octet-stream
         else
-          record_failure "Failed to upload $package_id package."
+          record_failure "Failed to upload $package_id package ($package::$additional_package_name)."
         fi
       done
       export additional_package_name=""
diff --git a/doc/contributions.txt b/doc/contributions.txt
index 99527c0587dca18d29b00c8d23b330b8cb8cfc61..2f9d0c2c86ecc359ead1240cebf737c61a66805a 100755
--- a/doc/contributions.txt
+++ b/doc/contributions.txt
@@ -1184,6 +1184,7 @@ TankMaster Finesmith
 	STORM-1258
 	STORM-1602
 	STORM-1868
+	STORM-1950
     VWR-26622
 	VWR-29224
 Talamasca
diff --git a/indra/lib/python/indra/util/llmanifest.py b/indra/lib/python/indra/util/llmanifest.py
index 52b4acbc94dd8974e3bf2c721e1e2e60f13c33cc..1d85aa297802ea473d49bca683dd805b5e6552ca 100755
--- a/indra/lib/python/indra/util/llmanifest.py
+++ b/indra/lib/python/indra/util/llmanifest.py
@@ -85,7 +85,8 @@ def get_default_platform(dummy):
             }[sys.platform]
 
 DEFAULT_SRCTREE = os.path.dirname(sys.argv[0])
-RELEASE_CHANNEL = 'Second Life Release'
+CHANNEL_VENDOR_BASE = 'Second Life'
+RELEASE_CHANNEL = CHANNEL_VENDOR_BASE + ' Release'
 
 ARGUMENTS=[
     dict(name='actions',
@@ -112,13 +113,14 @@ def get_default_platform(dummy):
          default="Release"),
     dict(name='dest', description='Destination directory.', default=DEFAULT_SRCTREE),
     dict(name='grid',
-         description="""Which grid the client will try to connect to. Even
-        though it's not strictly a grid, 'firstlook' is also an acceptable
-        value for this parameter.""",
-         default=""),
+         description="""Which grid the client will try to connect to.""",
+         default=None),
     dict(name='channel',
          description="""The channel to use for updates, packaging, settings name, etc.""",
          default='CHANNEL UNSET'),
+    dict(name='channel_suffix',
+         description="""Addition to the channel for packaging and channel value, but not application name (used internally)""",
+         default=None),
     dict(name='installer_name',
          description=""" The name of the file that the installer should be
         packaged up into. Only used on Linux at the moment.""",
@@ -213,9 +215,9 @@ def main():
             print "Unable to read versionfile '%s'" % args['versionfile']
             raise
 
-    # default and agni are default
-    if args['grid'] in ['default', 'agni']:
-        args['grid'] = ''
+    # unspecified, default, and agni are default
+    if args['grid'] in ['', 'default', 'agni']:
+        args['grid'] = None
 
     if 'actions' in args:
         args['actions'] = args['actions'].split()
@@ -286,21 +288,24 @@ def main():
         base_channel_name = args['channel']
         # Build each additional package.
         package_id_list = additional_packages.split(" ")
+        args['channel'] = base_channel_name
         for package_id in package_id_list:
             try:
-                args['package_id'] = package_id
-                args['channel'] = base_channel_name + os.environ[package_id + "_viewer_channel_suffix"]
+                if package_id + "_viewer_channel_suffix" in os.environ:
+                    args['channel_suffix'] = os.environ[package_id + "_viewer_channel_suffix"]
+                else:
+                    args['channel_suffix'] = None
                 if package_id + "_sourceid" in os.environ:
                     args['sourceid'] = os.environ[package_id + "_sourceid"]
                 else:
-                    args['sourceid'] = ""
+                    args['sourceid'] = None
                 args['dest'] = base_dest_prefix + os.sep + package_id + os.sep + base_dest_postfix
             except KeyError:
                 sys.stderr.write("Failed to create package for package_id: %s" % package_id)
                 sys.stderr.flush()
                 continue
             if touch:
-                print 'Creating additional package for ', package_id, ' in ', args['dest']
+                print 'Creating additional package for "', package_id, '" in ', args['dest']
             wm = LLManifest.for_platform(args['platform'], args.get('arch'))(args)
             wm.do(*args['actions'])
             if touch:
@@ -332,7 +337,7 @@ class LLManifest(object):
     manifests = {}
     def for_platform(self, platform, arch = None):
         if arch:
-            platform = platform + '_' + arch
+            platform = platform + '_' + arch + '_'
         return self.manifests[platform.lower()]
     for_platform = classmethod(for_platform)
 
@@ -349,8 +354,6 @@ def __init__(self, args):
         self.created_paths = []
         self.package_name = "Unknown"
         
-    def default_grid(self):
-        return self.args.get('grid', None) == ''
     def default_channel(self):
         return self.args.get('channel', None) == RELEASE_CHANNEL
 
diff --git a/indra/llcommon/llsd.cpp b/indra/llcommon/llsd.cpp
index 8276ec836a77399ed164ff02d4ec65a3286aafb5..f9624852843c6a41cd6b35ede7cd4d03a69ff88b 100755
--- a/indra/llcommon/llsd.cpp
+++ b/indra/llcommon/llsd.cpp
@@ -506,6 +506,8 @@ namespace
 
 		LLSD::array_iterator beginArray() { return mData.begin(); }
 		LLSD::array_iterator endArray() { return mData.end(); }
+		LLSD::reverse_array_iterator rbeginArray() { return mData.rbegin(); }
+		LLSD::reverse_array_iterator rendArray() { return mData.rend(); }
 		virtual LLSD::array_const_iterator beginArray() const { return mData.begin(); }
 		virtual LLSD::array_const_iterator endArray() const { return mData.end(); }
 
@@ -947,6 +949,9 @@ LLSD::array_iterator		LLSD::endArray()		{ return makeArray(impl).endArray(); }
 LLSD::array_const_iterator	LLSD::beginArray() const{ return safe(impl).beginArray(); }
 LLSD::array_const_iterator	LLSD::endArray() const	{ return safe(impl).endArray(); }
 
+LLSD::reverse_array_iterator	LLSD::rbeginArray()		{ return makeArray(impl).rbeginArray(); }
+LLSD::reverse_array_iterator	LLSD::rendArray()		{ return makeArray(impl).rendArray(); }
+
 namespace llsd
 {
 
diff --git a/indra/llcommon/llsd.h b/indra/llcommon/llsd.h
index 5eb69059ac6e5f41e4f76504f6d081419652766f..deb87d74976fac998503de8c3365e2d5dd3f1cae 100755
--- a/indra/llcommon/llsd.h
+++ b/indra/llcommon/llsd.h
@@ -320,11 +320,15 @@ class LL_COMMON_API LLSD
 		
 		typedef std::vector<LLSD>::iterator			array_iterator;
 		typedef std::vector<LLSD>::const_iterator	array_const_iterator;
+		typedef std::vector<LLSD>::reverse_iterator reverse_array_iterator;
 		
 		array_iterator			beginArray();
 		array_iterator			endArray();
 		array_const_iterator	beginArray() const;
 		array_const_iterator	endArray() const;
+
+		reverse_array_iterator	rbeginArray();
+		reverse_array_iterator	rendArray();
 	//@}
 	
 	/** @name Type Testing */
diff --git a/indra/llcommon/llsys.cpp b/indra/llcommon/llsys.cpp
index 0730b2ed8b8cb30d26f7a3eb857eee6e932f3df2..e63045659e22c803656405743660c8609fbb701b 100755
--- a/indra/llcommon/llsys.cpp
+++ b/indra/llcommon/llsys.cpp
@@ -114,6 +114,9 @@ static const F32 MEM_INFO_THROTTLE = 20;
 static const F32 MEM_INFO_WINDOW = 10*60;
 
 #if LL_WINDOWS
+// We cannot trust GetVersionEx function on Win8.1 , we should check this value when creating OS string
+static const U32 WINNT_WINBLUE = 0x0603;
+
 #ifndef DLLVERSIONINFO
 typedef struct _DllVersionInfo
 {
@@ -214,6 +217,26 @@ static bool regex_search_no_exc(const S& string, M& match, const R& regex)
     }
 }
 
+#if LL_WINDOWS
+// GetVersionEx should not works correct with Windows 8.1 and the later version. We need to check this case 
+static bool	check_for_version(WORD wMajorVersion, WORD wMinorVersion, WORD wServicePackMajor)
+{
+    OSVERSIONINFOEXW osvi = { sizeof(osvi), 0, 0, 0, 0, {0}, 0, 0 };
+    DWORDLONG        const dwlConditionMask = VerSetConditionMask(
+        VerSetConditionMask(
+        VerSetConditionMask(
+            0, VER_MAJORVERSION, VER_GREATER_EQUAL),
+               VER_MINORVERSION, VER_GREATER_EQUAL),
+               VER_SERVICEPACKMAJOR, VER_GREATER_EQUAL);
+
+    osvi.dwMajorVersion = wMajorVersion;
+    osvi.dwMinorVersion = wMinorVersion;
+    osvi.wServicePackMajor = wServicePackMajor;
+
+    return VerifyVersionInfoW(&osvi, VER_MAJORVERSION | VER_MINORVERSION | VER_SERVICEPACKMAJOR, dwlConditionMask) != FALSE;
+}
+#endif
+
 
 LLOSInfo::LLOSInfo() :
 	mMajorVer(0), mMinorVer(0), mBuild(0), mOSVersionString("")	 
@@ -222,6 +245,7 @@ LLOSInfo::LLOSInfo() :
 #if LL_WINDOWS
 	OSVERSIONINFOEX osvi;
 	BOOL bOsVersionInfoEx;
+	BOOL bShouldUseShellVersion = false;
 
 	// Try calling GetVersionEx using the OSVERSIONINFOEX structure.
 	ZeroMemory(&osvi, sizeof(OSVERSIONINFOEX));
@@ -284,11 +308,19 @@ LLOSInfo::LLOSInfo() :
 				}
 				else if(osvi.dwMinorVersion == 2)
 				{
+					if (check_for_version(HIBYTE(WINNT_WINBLUE), LOBYTE(WINNT_WINBLUE), 0))
+					{
+						mOSStringSimple = "Microsoft Windows 8.1 ";
+						bShouldUseShellVersion = true; // GetVersionEx failed, going to use shell version
+					}
+					else
+					{
 					if(osvi.wProductType == VER_NT_WORKSTATION)
 						mOSStringSimple = "Microsoft Windows 8 ";
 					else
 						mOSStringSimple = "Windows Server 2012 ";
 				}
+				}
 
 				///get native system info if available..
 				typedef void (WINAPI *PGNSI)(LPSYSTEM_INFO); ///function pointer for loading GetNativeSystemInfo
@@ -354,9 +386,8 @@ LLOSInfo::LLOSInfo() :
 			}
 			else
 			{
-				tmpstr = llformat("%s (Build %d)",
-								  csdversion.c_str(),
-								  (osvi.dwBuildNumber & 0xffff));
+				tmpstr = !bShouldUseShellVersion ?  llformat("%s (Build %d)", csdversion.c_str(), (osvi.dwBuildNumber & 0xffff)):
+					llformat("%s (Build %d)", csdversion.c_str(), shell32_build);
 			}
 
 			mOSString = mOSStringSimple + tmpstr;
@@ -392,7 +423,7 @@ LLOSInfo::LLOSInfo() :
 	std::string compatibility_mode;
 	if(got_shell32_version)
 	{
-		if(osvi.dwMajorVersion != shell32_major || osvi.dwMinorVersion != shell32_minor)
+		if((osvi.dwMajorVersion != shell32_major || osvi.dwMinorVersion != shell32_minor) && !bShouldUseShellVersion)
 		{
 			compatibility_mode = llformat(" compatibility mode. real ver: %d.%d (Build %d)", 
 											shell32_major,
diff --git a/indra/llinventory/llparcel.cpp b/indra/llinventory/llparcel.cpp
index 37c603348e3342a1ed9191e72cffcf47d125cc04..5eb5fb442d0f958860de8691e7e54541c46c66bd 100755
--- a/indra/llinventory/llparcel.cpp
+++ b/indra/llinventory/llparcel.cpp
@@ -414,117 +414,6 @@ BOOL LLParcel::allowTerraformBy(const LLUUID &agent_id) const
 }
 
 
-bool LLParcel::isAgentBlockedFromParcel(LLParcel* parcelp,
-                                        const LLUUID& agent_id,
-                                        const uuid_vec_t& group_ids,
-                                        const BOOL is_agent_identified,
-                                        const BOOL is_agent_transacted,
-                                        const BOOL is_agent_ageverified)
-{
-    S32 current_group_access = parcelp->blockAccess(agent_id, LLUUID::null, is_agent_identified, is_agent_transacted, is_agent_ageverified);
-    S32 count;
-    bool is_allowed = (current_group_access == BA_ALLOWED) ? true: false;
-    LLUUID group_id;
-    
-    count = group_ids.size();
-    for (int i = 0; i < count && !is_allowed; i++)
-    {
-        group_id = group_ids[i];
-        current_group_access = parcelp->blockAccess(agent_id, group_id, is_agent_identified, is_agent_transacted, is_agent_ageverified);
-        
-        if (current_group_access == BA_ALLOWED) is_allowed = true;
-    }
-    
-    return !is_allowed;
-}
-
-BOOL LLParcel::isAgentBanned(const LLUUID& agent_id) const
-{
-	// Test ban list
-	if (mBanList.find(agent_id) != mBanList.end())
-	{
-		return TRUE;
-	}
-    
-    return FALSE;
-}
-
-S32 LLParcel::blockAccess(const LLUUID& agent_id, const LLUUID& group_id,
-                          const BOOL is_agent_identified,
-                          const BOOL is_agent_transacted,
-                          const BOOL is_agent_ageverified) const
-{
-    // Test ban list
-    if (isAgentBanned(agent_id))
-    {
-        return BA_BANNED;
-    }
-    
-    // Always allow owner on (unless he banned himself, useful for
-    // testing). We will also allow estate owners/managers in if they 
-    // are not explicitly banned.
-    if (agent_id == mOwnerID)
-    {
-        return BA_ALLOWED;
-    }
-    
-    // Special case when using pass list where group access is being restricted but not 
-    // using access list.	 In this case group members are allowed only if they buy a pass.
-    // We return BA_NOT_IN_LIST if not in list
-    BOOL passWithGroup = getParcelFlag(PF_USE_PASS_LIST) && !getParcelFlag(PF_USE_ACCESS_LIST) 
-    && getParcelFlag(PF_USE_ACCESS_GROUP) && !mGroupID.isNull() && group_id == mGroupID;
-    
-    
-    // Test group list
-    if (getParcelFlag(PF_USE_ACCESS_GROUP)
-        && !mGroupID.isNull()
-        && group_id == mGroupID
-        && !passWithGroup)
-    {
-        return BA_ALLOWED;
-    }
-    
-    // Test access list
-    if (getParcelFlag(PF_USE_ACCESS_LIST) || passWithGroup )
-    {
-        if (mAccessList.find(agent_id) != mAccessList.end())
-        {
-            return BA_ALLOWED;
-        }
-        
-        return BA_NOT_ON_LIST; 
-    }
-    
-    // If we're not doing any other limitations, all users
-    // can enter, unless
-    if (		 !getParcelFlag(PF_USE_ACCESS_GROUP)
-                 && !getParcelFlag(PF_USE_ACCESS_LIST))
-    { 
-        //If the land is group owned, and you are in the group, bypass these checks
-        if(getIsGroupOwned() && group_id == mGroupID)
-        {
-            return BA_ALLOWED;
-        }
-        
-        // Test for "payment" access levels
-        // Anonymous - No Payment Info on File
-        if(getParcelFlag(PF_DENY_ANONYMOUS) && !is_agent_identified && !is_agent_transacted)
-        {
-            return BA_NO_ACCESS_LEVEL;
-        }
-        // AgeUnverified - Not Age Verified
-        if(getParcelFlag(PF_DENY_AGEUNVERIFIED) && !is_agent_ageverified)
-        {
-			return BA_NOT_AGE_VERIFIED;
-        }
-    
-        return BA_ALLOWED;
-    }
-    
-    return BA_NOT_IN_GROUP;
-    
-}
-
 
 void LLParcel::setArea(S32 area, S32 sim_object_limit)
 {
diff --git a/indra/llinventory/llparcel.h b/indra/llinventory/llparcel.h
index 0279e8bef970371595250a794c2bfc79bee03ded..c4363a48df5151bc3b73e9b9bfdec97a9f9b25c1 100755
--- a/indra/llinventory/llparcel.h
+++ b/indra/llinventory/llparcel.h
@@ -527,23 +527,6 @@ class LLParcel
 	// Can this agent change the shape of the land?
 	BOOL	allowTerraformBy(const LLUUID &agent_id) const;
 
-	// Returns 0 if access is OK, otherwise a BA_ return code above.
-	S32	 blockAccess(const LLUUID& agent_id, 
-			const LLUUID& group_id, 
-			const BOOL is_agent_identified, 
-			const BOOL is_agent_transacted,
-			const BOOL is_agent_ageverified) const;
-
-	// Only checks if the agent is explicitly banned from this parcel
-	BOOL isAgentBanned(const LLUUID& agent_id) const;
-
-	static bool isAgentBlockedFromParcel(LLParcel* parcelp, 
-									const LLUUID& agent_id,
-									const uuid_vec_t& group_ids,
-									const BOOL is_agent_identified,
-									const BOOL is_agent_transacted,
-									const BOOL is_agent_ageverified);
-
 	bool	operator==(const LLParcel &rhs) const;
 
 	// Calculate rent - area * rent * discount rate
diff --git a/indra/llmath/llvolume.cpp b/indra/llmath/llvolume.cpp
index 2b865b4a8eff6a77c77edee8384c7229810c570d..f74c934b21fdaf0a0dd03d816fb6e0d0301eb03f 100755
--- a/indra/llmath/llvolume.cpp
+++ b/indra/llmath/llvolume.cpp
@@ -166,7 +166,8 @@ void calc_tangent_from_triangle(
 
 	F32 rd = s1*t2-s2*t1;
 
-	float r = ((rd*rd) > FLT_EPSILON) ? 1.0F / rd : 1024.f; //some made up large ratio for division by zero
+	float r = ((rd*rd) > FLT_EPSILON) ? (1.0f / rd)
+											    : ((rd > 0.0f) ? 1024.f : -1024.f); //some made up large ratio for division by zero
 
 	llassert(llfinite(r));
 	llassert(!llisnan(r));
@@ -6789,7 +6790,8 @@ void CalculateTangentArray(U32 vertexCount, const LLVector4a *vertex, const LLVe
         
 		F32 rd = s1*t2-s2*t1;
 
-		float r = ((rd*rd) > FLT_EPSILON) ? 1.0F / rd : 1024.f; //some made up large ratio for division by zero
+		float r = ((rd*rd) > FLT_EPSILON) ? (1.0f / rd)
+													 : ((rd > 0.0f) ? 1024.f : -1024.f); //some made up large ratio for division by zero
 
 		llassert(llfinite(r));
 		llassert(!llisnan(r));
diff --git a/indra/llrender/llrendertarget.cpp b/indra/llrender/llrendertarget.cpp
index b82b370d6ee431d27216ba224bd1c0a25f64ab05..fe8110904d68bf91c9544570bcc2249e257908d7 100755
--- a/indra/llrender/llrendertarget.cpp
+++ b/indra/llrender/llrendertarget.cpp
@@ -364,35 +364,55 @@ void LLRenderTarget::release()
 
 		sBytesAllocated -= mResX*mResY*4;
 	}
-	else if (mUseDepth && mFBO)
-	{ //detach shared depth buffer
+	else if (mFBO)
+	{
 		glBindFramebuffer(GL_FRAMEBUFFER, mFBO);
-		if (mStencil)
-		{ //attached as a renderbuffer
-			glFramebufferRenderbuffer(GL_FRAMEBUFFER, GL_STENCIL_ATTACHMENT, GL_RENDERBUFFER, 0);
-			glFramebufferRenderbuffer(GL_FRAMEBUFFER, GL_DEPTH_ATTACHMENT, GL_RENDERBUFFER, 0);
-			mStencil = false;
+
+		if (mUseDepth)
+		{ //detach shared depth buffer
+			if (mStencil)
+			{ //attached as a renderbuffer
+				glFramebufferRenderbuffer(GL_FRAMEBUFFER, GL_STENCIL_ATTACHMENT, GL_RENDERBUFFER, 0);
+				glFramebufferRenderbuffer(GL_FRAMEBUFFER, GL_DEPTH_ATTACHMENT, GL_RENDERBUFFER, 0);
+				mStencil = false;
+			}
+			else
+			{ //attached as a texture
+				glFramebufferTexture2D(GL_FRAMEBUFFER, GL_DEPTH_ATTACHMENT, LLTexUnit::getInternalType(mUsage), 0, 0);
+			}
+			mUseDepth = false;
 		}
-		else
-		{ //attached as a texture
-			glFramebufferTexture2D(GL_FRAMEBUFFER, GL_DEPTH_ATTACHMENT, LLTexUnit::getInternalType(mUsage), 0, 0);
+	}
+
+	// Detach any extra color buffers (e.g. SRGB spec buffers)
+	//
+	if (mFBO && (mTex.size() > 1))
+	{		
+		S32 z;
+		for (z = mTex.size() - 1; z >= 1; z--)
+		{
+			sBytesAllocated -= mResX*mResY*4;
+			glFramebufferTexture2D(GL_FRAMEBUFFER, GL_COLOR_ATTACHMENT0+z, LLTexUnit::getInternalType(mUsage), 0, 0);
+			stop_glerror();
+			LLImageGL::deleteTextures(1, &mTex[z]);
 		}
-		mUseDepth = false;
 	}
 
 	if (mFBO)
 	{
 		glDeleteFramebuffers(1, (GLuint *) &mFBO);
+		stop_glerror();
 		mFBO = 0;
 	}
 
 	if (mTex.size() > 0)
 	{
-		sBytesAllocated -= mResX*mResY*4*mTex.size();
-		LLImageGL::deleteTextures(mTex.size(), &mTex[0]);
+		sBytesAllocated -= mResX*mResY*4;
+		LLImageGL::deleteTextures(1, &mTex[0]);
+	}
+
 		mTex.clear();
 		mInternalFormat.clear();
-	}
 	
 	mResX = mResY = 0;
 
diff --git a/indra/llui/llcombobox.cpp b/indra/llui/llcombobox.cpp
index d4e14d94190bcaa4d5d8c4867b8f8737d94cfc8c..56be52f69abf317403f28d8bd3277000b1a59313 100755
--- a/indra/llui/llcombobox.cpp
+++ b/indra/llui/llcombobox.cpp
@@ -534,6 +534,13 @@ void LLComboBox::createLineEditor(const LLComboBox::Params& p)
 	}
 }
 
+void LLComboBox::setLeftTextPadding(S32 pad)
+{
+	S32 left_pad, right_pad;
+	mTextEntry->getTextPadding(&left_pad, &right_pad);
+	mTextEntry->setTextPadding(pad, right_pad);
+}
+
 void* LLComboBox::getCurrentUserdata()
 {
 	LLScrollListItem* item = mList->getFirstSelected();
diff --git a/indra/llui/llcombobox.h b/indra/llui/llcombobox.h
index 64dbaea30634d1d6cb95f88a397de45b907b3187..67393504e7ff36aa90e6bfdf8274e6ff3ad9a415 100755
--- a/indra/llui/llcombobox.h
+++ b/indra/llui/llcombobox.h
@@ -191,6 +191,8 @@ class LLComboBox
 
 	//========================================================================
 	
+	void			setLeftTextPadding(S32 pad);
+	
 	void*			getCurrentUserdata();
 
 	void			setPrearrangeCallback( commit_callback_t cb ) { mPrearrangeCallback = cb; }
diff --git a/indra/llui/llcommandmanager.cpp b/indra/llui/llcommandmanager.cpp
index 625fb8e87024c7cfc5f2a8d646737dabe181be76..49cfb2255e73318a4c7df2447235f3e1d894918f 100755
--- a/indra/llui/llcommandmanager.cpp
+++ b/indra/llui/llcommandmanager.cpp
@@ -50,6 +50,8 @@ const LLCommandId LLCommandId::null = LLCommandId("null command");
 LLCommand::Params::Params()
 	: available_in_toybox("available_in_toybox", false)
 	, icon("icon")
+	, hover_icon_unselected("hover_icon_unselected")
+	, hover_icon_selected("hover_icon_selected")
 	, label_ref("label_ref")
 	, name("name")
 	, tooltip_ref("tooltip_ref")
@@ -71,6 +73,8 @@ LLCommand::LLCommand(const LLCommand::Params& p)
 	: mIdentifier(p.name)
 	, mAvailableInToybox(p.available_in_toybox)
 	, mIcon(p.icon)
+	, mHoverIconUnselected(p.hover_icon_unselected)
+	, mHoverIconSelected(p.hover_icon_selected)
 	, mLabelRef(p.label_ref)
 	, mName(p.name)
 	, mTooltipRef(p.tooltip_ref)
diff --git a/indra/llui/llcommandmanager.h b/indra/llui/llcommandmanager.h
index ff5a8a325738b1c9a511cbd3df93b96683c357ca..9f276f712df4649a02d674063ccf854052c786dd 100755
--- a/indra/llui/llcommandmanager.h
+++ b/indra/llui/llcommandmanager.h
@@ -96,6 +96,9 @@ class LLCommand
 		Mandatory<std::string>	name;
 		Mandatory<std::string>	tooltip_ref;
 
+		Optional<std::string>   hover_icon_selected;
+		Optional<std::string>   hover_icon_unselected;
+
 		Mandatory<std::string>	execute_function;
 		Optional<LLSD>			execute_parameters;
 
@@ -124,6 +127,8 @@ class LLCommand
 	const std::string& labelRef() const { return mLabelRef; }
 	const std::string& name() const { return mName; }
 	const std::string& tooltipRef() const { return mTooltipRef; }
+	const std::string& hoverIconUnselected() const {return mHoverIconUnselected; }
+	const std::string& hoverIconSelected() const {return mHoverIconSelected; }
 
 	const std::string& executeFunctionName() const { return mExecuteFunction; }
 	const LLSD& executeParameters() const { return mExecuteParameters; }
@@ -150,6 +155,8 @@ class LLCommand
 	std::string mLabelRef;
 	std::string mName;
 	std::string mTooltipRef;
+	std::string mHoverIconUnselected;
+	std::string mHoverIconSelected;
 
 	std::string mExecuteFunction;
 	LLSD        mExecuteParameters;
diff --git a/indra/llui/llfloater.cpp b/indra/llui/llfloater.cpp
index 182c5cfd8acf731f16cf77690004349af0c7ec13..6e6bcd6ab5ff5819f12ef3a6c58faa9d6562526c 100755
--- a/indra/llui/llfloater.cpp
+++ b/indra/llui/llfloater.cpp
@@ -1821,7 +1821,7 @@ void LLFloater::onClickClose( LLFloater* self )
 	self->onClickCloseBtn();
 }
 
-void	LLFloater::onClickCloseBtn()
+void LLFloater::onClickCloseBtn(bool app_quitting)
 {
 	closeFloater(false);
 }
diff --git a/indra/llui/llfloater.h b/indra/llui/llfloater.h
index 953689498f28bbbe0c233c059239a80f21affb69..75715ef296b03a26c5b482d55415dba4065f118a 100755
--- a/indra/llui/llfloater.h
+++ b/indra/llui/llfloater.h
@@ -390,7 +390,7 @@ class LLFloater : public LLPanel, public LLInstanceTracker<LLFloater>
 
 	void			destroy(); // Don't call this directly.  You probably want to call closeFloater()
 
-	virtual	void	onClickCloseBtn();
+	virtual	void	onClickCloseBtn(bool app_quitting = false);
 
 	virtual void	updateTitleButtons();
 
diff --git a/indra/llui/llfolderviewitem.cpp b/indra/llui/llfolderviewitem.cpp
index f06131364593737103d3d814982071156ec3ea20..aa2343226cbd29c3b2132792304c53c17ab77c65 100644
--- a/indra/llui/llfolderviewitem.cpp
+++ b/indra/llui/llfolderviewitem.cpp
@@ -526,7 +526,7 @@ BOOL LLFolderViewItem::handleMouseDown( S32 x, S32 y, MASK mask )
 
 BOOL LLFolderViewItem::handleHover( S32 x, S32 y, MASK mask )
 {
-	static LLCachedControl<S32> drag_and_drop_threshold(*LLUI::sSettingGroups["config"],"DragAndDropDistanceThreshold");
+	static LLCachedControl<S32> drag_and_drop_threshold(*LLUI::sSettingGroups["config"],"DragAndDropDistanceThreshold", 3);
 
 	mIsMouseOverTitle = (y > (getRect().getHeight() - mItemHeight));
 
diff --git a/indra/llui/llmodaldialog.cpp b/indra/llui/llmodaldialog.cpp
index 8c2be449045f563a837530eba4d6abb30d366eb7..4d6e189b92bc0d2b1535faf45d8eabe8e4646122 100755
--- a/indra/llui/llmodaldialog.cpp
+++ b/indra/llui/llmodaldialog.cpp
@@ -34,7 +34,7 @@
 #include "llui.h"
 #include "llwindow.h"
 #include "llkeyboard.h"
-
+#include "llmenugl.h"
 // static
 std::list<LLModalDialog*> LLModalDialog::sModalStack;
 
@@ -161,6 +161,18 @@ void LLModalDialog::setVisible( BOOL visible )
 
 BOOL LLModalDialog::handleMouseDown(S32 x, S32 y, MASK mask)
 {
+	LLView* popup_menu = LLMenuGL::sMenuContainer->getVisibleMenu();
+	if (popup_menu != NULL)
+	{
+		S32 mx, my;
+		LLUI::getMousePositionScreen(&mx, &my);
+		LLRect menu_screen_rc = popup_menu->calcScreenRect();
+		if(!menu_screen_rc.pointInRect(mx, my))
+		{
+			LLMenuGL::sMenuContainer->hideMenus();
+		}
+	}
+
 	if (mModal)
 	{
 		if (!LLFloater::handleMouseDown(x, y, mask))
@@ -173,6 +185,8 @@ BOOL LLModalDialog::handleMouseDown(S32 x, S32 y, MASK mask)
 	{
 		LLFloater::handleMouseDown(x, y, mask);
 	}
+
+
 	return TRUE;
 }
 
@@ -183,6 +197,22 @@ BOOL LLModalDialog::handleHover(S32 x, S32 y, MASK mask)
 		getWindow()->setCursor(UI_CURSOR_ARROW);
 		lldebugst(LLERR_USER_INPUT) << "hover handled by " << getName() << llendl;		
 	}
+
+	LLView* popup_menu = LLMenuGL::sMenuContainer->getVisibleMenu();
+	if (popup_menu != NULL)
+	{
+		S32 mx, my;
+		LLUI::getMousePositionScreen(&mx, &my);
+		LLRect menu_screen_rc = popup_menu->calcScreenRect();
+		if(menu_screen_rc.pointInRect(mx, my))
+		{
+			S32 local_x = mx - popup_menu->getRect().mLeft;
+			S32 local_y = my - popup_menu->getRect().mBottom;
+			popup_menu->handleHover(local_x, local_y, mask);
+			gFocusMgr.setMouseCapture(NULL);
+		}
+	}
+
 	return TRUE;
 }
 
@@ -210,6 +240,7 @@ BOOL LLModalDialog::handleDoubleClick(S32 x, S32 y, MASK mask)
 
 BOOL LLModalDialog::handleRightMouseDown(S32 x, S32 y, MASK mask)
 {
+	LLMenuGL::sMenuContainer->hideMenus();
 	childrenHandleRightMouseDown(x, y, mask);
 	return TRUE;
 }
diff --git a/indra/llui/llscrollcontainer.cpp b/indra/llui/llscrollcontainer.cpp
index cbcce0ece545fa7e7617fa5ad6f3f4a1127da877..238eae21c25f6366e63dc24f0e8a1c39015f670d 100755
--- a/indra/llui/llscrollcontainer.cpp
+++ b/indra/llui/llscrollcontainer.cpp
@@ -519,7 +519,7 @@ bool LLScrollContainer::addChild(LLView* view, S32 tab_group)
 
 void LLScrollContainer::updateScroll()
 {
-	if (!mScrolledView)
+	if (!getVisible() || !mScrolledView)
 	{
 		return;
 	}
diff --git a/indra/llui/lltabcontainer.cpp b/indra/llui/lltabcontainer.cpp
index 76ba53ec329e600084424a110695f7924edc709b..6fd2bb1b36739e7cf3a56f3a643658a2f61d777f 100755
--- a/indra/llui/lltabcontainer.cpp
+++ b/indra/llui/lltabcontainer.cpp
@@ -193,12 +193,15 @@ LLTabContainer::TabParams::TabParams()
 :	tab_top_image_unselected("tab_top_image_unselected"),
 	tab_top_image_selected("tab_top_image_selected"),
 	tab_top_image_flash("tab_top_image_flash"),
+	tab_top_image_hovered("tab_top_image_hovered"),
 	tab_bottom_image_unselected("tab_bottom_image_unselected"),
 	tab_bottom_image_selected("tab_bottom_image_selected"),
 	tab_bottom_image_flash("tab_bottom_image_flash"),
+	tab_bottom_image_hovered("tab_bottom_image_hovered"),
 	tab_left_image_unselected("tab_left_image_unselected"),
 	tab_left_image_selected("tab_left_image_selected"),
-	tab_left_image_flash("tab_left_image_flash")
+	tab_left_image_flash("tab_left_image_flash"),
+	tab_left_image_hovered("tab_left_image_hovered")
 {}
 
 LLTabContainer::Params::Params()
@@ -218,7 +221,8 @@ LLTabContainer::Params::Params()
 	open_tabs_on_drag_and_drop("open_tabs_on_drag_and_drop", false),
 	tab_icon_ctrl_pad("tab_icon_ctrl_pad", 0),
 	use_ellipses("use_ellipses"),
-	font_halign("halign")
+	font_halign("halign"),
+	use_highlighting_on_hover("use_highlighting_on_hover",false)
 {}
 
 LLTabContainer::LLTabContainer(const LLTabContainer::Params& p)
@@ -254,7 +258,8 @@ LLTabContainer::LLTabContainer(const LLTabContainer::Params& p)
 	mCustomIconCtrlUsed(p.use_custom_icon_ctrl),
 	mOpenTabsOnDragAndDrop(p.open_tabs_on_drag_and_drop),
 	mTabIconCtrlPad(p.tab_icon_ctrl_pad),
-	mUseTabEllipses(p.use_ellipses)
+	mUseTabEllipses(p.use_ellipses),
+	mUseHighlightingOnHover(p.use_highlighting_on_hover)
 {
 	static LLUICachedControl<S32> tabcntr_vert_tab_min_width ("UITabCntrVertTabMinWidth", 0);
 
@@ -903,18 +908,30 @@ void LLTabContainer::update_images(LLTabTuple* tuple, TabParams params, LLTabCon
 			tuple->mButton->setImageUnselected(static_cast<LLUIImage*>(params.tab_top_image_unselected));
 			tuple->mButton->setImageSelected(static_cast<LLUIImage*>(params.tab_top_image_selected));
 			tuple->mButton->setImageFlash(static_cast<LLUIImage*>(params.tab_top_image_flash));
+			if(mUseHighlightingOnHover)
+			{
+				tuple->mButton->setImageHoverUnselected(static_cast<LLUIImage*>(params.tab_top_image_hovered));
+			}
 		}
 		else if (pos == LLTabContainer::BOTTOM)
 		{
 			tuple->mButton->setImageUnselected(static_cast<LLUIImage*>(params.tab_bottom_image_unselected));
 			tuple->mButton->setImageSelected(static_cast<LLUIImage*>(params.tab_bottom_image_selected));
 			tuple->mButton->setImageFlash(static_cast<LLUIImage*>(params.tab_bottom_image_flash));
+			if(mUseHighlightingOnHover)
+			{
+				tuple->mButton->setImageHoverUnselected(static_cast<LLUIImage*>(params.tab_bottom_image_hovered));
+			}
 		}
 		else if (pos == LLTabContainer::LEFT)
 		{
 			tuple->mButton->setImageUnselected(static_cast<LLUIImage*>(params.tab_left_image_unselected));
 			tuple->mButton->setImageSelected(static_cast<LLUIImage*>(params.tab_left_image_selected));
 			tuple->mButton->setImageFlash(static_cast<LLUIImage*>(params.tab_left_image_flash));
+			if(mUseHighlightingOnHover)
+			{
+				tuple->mButton->setImageHoverUnselected(static_cast<LLUIImage*>(params.tab_left_image_hovered));
+			}
 		}
 	}
 }
diff --git a/indra/llui/lltabcontainer.h b/indra/llui/lltabcontainer.h
index 57862fc626c0374c49a863a238836b0d4963553e..7e7d4ac6e6d22b942c7645eb8a10e69a933cea3a 100755
--- a/indra/llui/lltabcontainer.h
+++ b/indra/llui/lltabcontainer.h
@@ -62,12 +62,15 @@ class LLTabContainer : public LLPanel
 		Optional<LLUIImage*>				tab_top_image_unselected,
 											tab_top_image_selected,
 											tab_top_image_flash,
+											tab_top_image_hovered,
 											tab_bottom_image_unselected,
 											tab_bottom_image_selected,
 											tab_bottom_image_flash,
+											tab_bottom_image_hovered,
 											tab_left_image_unselected,
 											tab_left_image_selected,
-											tab_left_image_flash;		
+											tab_left_image_flash,
+											tab_left_image_hovered;
 		TabParams();
 	};
 
@@ -114,6 +117,11 @@ class LLTabContainer : public LLPanel
 		 */
 		Optional<S32>						tab_icon_ctrl_pad;
 
+		/**
+		 *  This variable is used to found out should we highlight tab button on hover
+		*/
+		Optional<bool>						use_highlighting_on_hover;
+
 		Params();
 	};
 
@@ -307,6 +315,7 @@ class LLTabContainer : public LLPanel
 	bool							mOpenTabsOnDragAndDrop;
 	S32								mTabIconCtrlPad;
 	bool							mUseTabEllipses;
+	bool                            mUseHighlightingOnHover;
 };
 
 #endif  // LL_TABCONTAINER_H
diff --git a/indra/llui/lltextbase.cpp b/indra/llui/lltextbase.cpp
index cc171661ce0bb0bcd32b35f4034b1009a270716d..5ec4cf4fe5dd57af6b51e9d1e93365dd4d6b0083 100755
--- a/indra/llui/lltextbase.cpp
+++ b/indra/llui/lltextbase.cpp
@@ -1029,7 +1029,7 @@ BOOL LLTextBase::handleMouseDown(S32 x, S32 y, MASK mask)
 BOOL LLTextBase::handleMouseUp(S32 x, S32 y, MASK mask)
 {
 	LLTextSegmentPtr cur_segment = getSegmentAtLocalPos(x, y);
-	if (cur_segment && cur_segment->handleMouseUp(x, y, mask))
+	if (hasMouseCapture() && cur_segment && cur_segment->handleMouseUp(x, y, mask))
 	{
 		// Did we just click on a link?
 		if (mURLClickSignal
diff --git a/indra/llui/lltextbox.cpp b/indra/llui/lltextbox.cpp
index 11cfa1d2632cf5223f2308d02050b3211b62a16f..d175204e6d598673f46ec0a35bc8a94ae42487e2 100755
--- a/indra/llui/lltextbox.cpp
+++ b/indra/llui/lltextbox.cpp
@@ -59,11 +59,14 @@ BOOL LLTextBox::handleMouseDown(S32 x, S32 y, MASK mask)
 	}
 
 	if (!handled && mClickedCallback)
+	{
+		handled = TRUE;
+	}
+
+	if (handled)
 	{
 		// Route future Mouse messages here preemptively.  (Release on mouse up.)
 		gFocusMgr.setMouseCapture( this );
-
-		handled = TRUE;
 	}
 
 	return handled;
@@ -71,7 +74,7 @@ BOOL LLTextBox::handleMouseDown(S32 x, S32 y, MASK mask)
 
 BOOL LLTextBox::handleMouseUp(S32 x, S32 y, MASK mask)
 {
-	BOOL	handled = FALSE;
+	BOOL	handled = LLTextBase::handleMouseUp(x, y, mask);
 
 	if (getSoundFlags() & MOUSE_UP)
 	{
@@ -93,10 +96,6 @@ BOOL LLTextBox::handleMouseUp(S32 x, S32 y, MASK mask)
 			handled = TRUE;
 		}
 	}
-	else
-	{
-		handled = LLTextBase::handleMouseUp(x, y, mask);
-	}
 
 	return handled;
 }
diff --git a/indra/llui/lltexteditor.cpp b/indra/llui/lltexteditor.cpp
index 0c16e06109fbd51b21eea8484785201adcc9d978..62140dd9d67909de341221f61efaa6f092dad743 100755
--- a/indra/llui/lltexteditor.cpp
+++ b/indra/llui/lltexteditor.cpp
@@ -666,6 +666,14 @@ void LLTextEditor::selectAll()
 	updatePrimary();
 }
 
+void LLTextEditor::selectByCursorPosition(S32 prev_cursor_pos, S32 next_cursor_pos)
+{
+	setCursorPos(prev_cursor_pos);
+	startSelection();
+	setCursorPos(next_cursor_pos);
+	endSelection();
+}
+
 BOOL LLTextEditor::handleMouseDown(S32 x, S32 y, MASK mask)
 {
 	BOOL	handled = FALSE;
@@ -713,7 +721,6 @@ BOOL LLTextEditor::handleMouseDown(S32 x, S32 y, MASK mask)
 				setCursorAtLocalPos( x, y, true );
 				startSelection();
 			}
-			gFocusMgr.setMouseCapture( this );
 		}
 
 		handled = TRUE;
@@ -722,6 +729,10 @@ BOOL LLTextEditor::handleMouseDown(S32 x, S32 y, MASK mask)
 	// Delay cursor flashing
 	resetCursorBlink();
 
+	if (handled && !gFocusMgr.getMouseCapture())
+	{
+		gFocusMgr.setMouseCapture( this );
+	}
 	return handled;
 }
 
diff --git a/indra/llui/lltexteditor.h b/indra/llui/lltexteditor.h
index 32b543ec0e3439380847c001ee18f4cefb3dece0..d3b7bc0eb7681ef04c31155ee3561496a9896b48 100755
--- a/indra/llui/lltexteditor.h
+++ b/indra/llui/lltexteditor.h
@@ -144,6 +144,8 @@ class LLTextEditor :
 	virtual void	selectAll();
 	virtual BOOL	canSelectAll()	const;
 
+	void 			selectByCursorPosition(S32 prev_cursor_pos, S32 next_cursor_pos);
+
 	virtual bool	canLoadOrSaveToFile();
 
 	void			selectNext(const std::string& search_text_in, BOOL case_insensitive, BOOL wrap = TRUE);
diff --git a/indra/llui/lltoolbar.cpp b/indra/llui/lltoolbar.cpp
index 928e82cb8c21c798e2cdb1744270ababa2b7012c..6bfe113933d322c46b8dea9d2d6cddc9985302f5 100755
--- a/indra/llui/lltoolbar.cpp
+++ b/indra/llui/lltoolbar.cpp
@@ -928,6 +928,8 @@ LLToolBarButton* LLToolBar::createButton(const LLCommandId& id)
 	button_p.label = LLTrans::getString(commandp->labelRef());
 	button_p.tool_tip = LLTrans::getString(commandp->tooltipRef());
 	button_p.image_overlay = LLUI::getUIImage(commandp->icon());
+	button_p.image_hover_unselected = LLUI::getUIImage(commandp->hoverIconUnselected());
+	button_p.image_hover_selected = LLUI::getUIImage(commandp->hoverIconSelected());
 	button_p.button_flash_enable = commandp->isFlashingAllowed();
 	button_p.overwriteFrom(mButtonParams[mButtonType]);
 	LLToolBarButton* button = LLUICtrlFactory::create<LLToolBarButton>(button_p);
diff --git a/indra/llui/llui.h b/indra/llui/llui.h
index 0a0e0e164ec830191b912707ee8d37e169ec7827..0bc4424a8cab7b39a58a7fce63b8558fab524ca6 100755
--- a/indra/llui/llui.h
+++ b/indra/llui/llui.h
@@ -405,11 +405,6 @@ class LLUICachedControl : public LLCachedControl<T>
 					  const std::string& comment = "Declared In Code")
 	:	LLCachedControl<T>(LLUI::getControlControlGroup(name), name, default_value, comment)
 	{}
-
-	// This constructor will signal an error if the control doesn't exist in the control group
-	LLUICachedControl(const std::string& name)
-	:	LLCachedControl<T>(LLUI::getControlControlGroup(name), name)
-	{}
 };
 
 namespace LLInitParam
diff --git a/indra/llwindow/llwindowcallbacks.cpp b/indra/llwindow/llwindowcallbacks.cpp
index 9712ae1d91a39111a0db162da0055a5214d16732..eadff8a6b4af096d3f4dd0e922b3548f8330d983 100755
--- a/indra/llwindow/llwindowcallbacks.cpp
+++ b/indra/llwindow/llwindowcallbacks.cpp
@@ -122,6 +122,7 @@ void LLWindowCallbacks::handleResize(LLWindow *window, const S32 width, const S3
 
 void LLWindowCallbacks::handleFocus(LLWindow *window)
 {
+	 LL_WARNS("COCOA") << "Called handleFocus proto" << LL_ENDL;
 }
 
 void LLWindowCallbacks::handleFocusLost(LLWindow *window)
diff --git a/indra/llwindow/llwindowmacosx.cpp b/indra/llwindow/llwindowmacosx.cpp
index d5b62bd3a71d17dc2c50f1811e17afc72cfc4d22..11c0b5108692e787d5276529be7ba7cc1f13d4ea 100755
--- a/indra/llwindow/llwindowmacosx.cpp
+++ b/indra/llwindow/llwindowmacosx.cpp
@@ -331,7 +331,16 @@ void callMouseExit()
 
 void callWindowFocus()
 {
-	gWindowImplementation->getCallbacks()->handleFocus(gWindowImplementation);
+   if ( gWindowImplementation && gWindowImplementation->getCallbacks() )
+	{
+		gWindowImplementation->getCallbacks()->handleFocus (gWindowImplementation);
+	}
+	else
+	{
+		LL_WARNS("COCOA") << "Window Implementation or callbacks not yet initialized." << LL_ENDL;
+	}
+
+
 }
 
 void callWindowUnfocus()
diff --git a/indra/llxml/llcontrol.h b/indra/llxml/llcontrol.h
index e1f9be80ddad26d909449b0a6300f4d50c08b553..f46d21408bfe2bcd0538679056ef1caab59342b3 100755
--- a/indra/llxml/llcontrol.h
+++ b/indra/llxml/llcontrol.h
@@ -408,16 +408,6 @@ class LLCachedControl
 		}
 	}
 
-	LLCachedControl(LLControlGroup& group,
-					const std::string& name)
-	{
-		mCachedControlPtr = LLControlCache<T>::getInstance(name);
-		if (mCachedControlPtr.isNull())
-		{
-			mCachedControlPtr = new LLControlCache<T>(group, name);
-		}
-	}
-
 	operator const T&() const { return mCachedControlPtr->getValue(); }
 	operator boost::function<const T&()> () const { return boost::function<const T&()>(*this); }
 	const T& operator()() { return mCachedControlPtr->getValue(); }
diff --git a/indra/newview/CMakeLists.txt b/indra/newview/CMakeLists.txt
index b937d53bd850fc240fca973ed31d07f4ef6ff8b6..828849a3271bd2f4f3ad612ebf6cf7b874761235 100755
--- a/indra/newview/CMakeLists.txt
+++ b/indra/newview/CMakeLists.txt
@@ -1756,6 +1756,7 @@ if (WINDOWS)
       ARGS
         ${CMAKE_CURRENT_SOURCE_DIR}/viewer_manifest.py
         --actions=copy
+        --arch=${ARCH}
         --artwork=${ARTWORK_DIR}
         --build=${CMAKE_CURRENT_BINARY_DIR}
         --buildtype=${CMAKE_BUILD_TYPE}
@@ -1823,6 +1824,7 @@ if (WINDOWS)
         COMMAND ${PYTHON_EXECUTABLE}
         ARGS
           ${CMAKE_CURRENT_SOURCE_DIR}/viewer_manifest.py
+          --arch=${ARCH}
           --artwork=${ARTWORK_DIR}
           --build=${CMAKE_CURRENT_BINARY_DIR}
           --buildtype=${CMAKE_BUILD_TYPE}
@@ -1947,7 +1949,6 @@ if (LINUX)
         --configuration=${CMAKE_CFG_INTDIR}
         --dest=${CMAKE_CURRENT_BINARY_DIR}/packaged
         --grid=${GRID}
-        --installer_name=${product}
         --source=${CMAKE_CURRENT_SOURCE_DIR}
         --touch=${CMAKE_CURRENT_BINARY_DIR}/${CMAKE_CFG_INTDIR}/.${product}.touched
       DEPENDS
@@ -2025,6 +2026,7 @@ if (DARWIN)
     ARGS
       ${CMAKE_CURRENT_SOURCE_DIR}/viewer_manifest.py
       --actions=copy
+      --arch=${ARCH}
       --artwork=${ARTWORK_DIR}
       --build=${CMAKE_CURRENT_BINARY_DIR}
       --buildtype=${CMAKE_BUILD_TYPE}
@@ -2057,6 +2059,7 @@ if (DARWIN)
         COMMAND ${PYTHON_EXECUTABLE}
         ARGS
           ${CMAKE_CURRENT_SOURCE_DIR}/viewer_manifest.py
+          --arch=${ARCH}
           --artwork=${ARTWORK_DIR}
           --build=${CMAKE_CURRENT_BINARY_DIR}
           --buildtype=${CMAKE_BUILD_TYPE}
diff --git a/indra/newview/VIEWER_VERSION.txt b/indra/newview/VIEWER_VERSION.txt
index c47e8b5872d2549dd1c67c6ee4c3c98b1c293dda..3609cf77078c22803a5732ba2871c3414b95d826 100644
--- a/indra/newview/VIEWER_VERSION.txt
+++ b/indra/newview/VIEWER_VERSION.txt
@@ -1 +1 @@
-3.6.10
+3.6.13
diff --git a/indra/newview/app_settings/commands.xml b/indra/newview/app_settings/commands.xml
index 7b329e2092a0fc7dbc1b318d3145fd325fd2d3b2..d332583ca9507488d7ba2c47a3e498ee49389531 100755
--- a/indra/newview/app_settings/commands.xml
+++ b/indra/newview/app_settings/commands.xml
@@ -3,6 +3,8 @@
   <command name="aboutland"
            available_in_toybox="true"
            icon="Command_AboutLand_Icon"
+           hover_icon_unselected="Command_Highlighting_Icon"
+           hover_icon_selected="Command_Highlighting_Selected_Icon"
            label_ref="Command_AboutLand_Label"
            tooltip_ref="Command_AboutLand_Tooltip"
            execute_function="Floater.ToggleOrBringToFront"
@@ -13,6 +15,8 @@
   <command name="appearance"  
            available_in_toybox="true"
            icon="Command_Appearance_Icon"
+           hover_icon_unselected="Command_Highlighting_Icon"
+           hover_icon_selected="Command_Highlighting_Selected_Icon"
            label_ref="Command_Appearance_Label"
            tooltip_ref="Command_Appearance_Tooltip"
            execute_function="Floater.ToggleOrBringToFront"
@@ -23,6 +27,8 @@
   <command name="avatar"
            available_in_toybox="true"
            icon="Command_Avatar_Icon"
+           hover_icon_unselected="Command_Highlighting_Icon"
+           hover_icon_selected="Command_Highlighting_Selected_Icon"
            label_ref="Command_Avatar_Label"
            tooltip_ref="Command_Avatar_Tooltip"
            execute_function="Floater.ToggleOrBringToFront"
@@ -33,6 +39,8 @@
   <command name="build"
            available_in_toybox="true"
            icon="Command_Build_Icon"
+           hover_icon_unselected="Command_Highlighting_Icon"
+           hover_icon_selected="Command_Highlighting_Selected_Icon"
            label_ref="Command_Build_Label"
            tooltip_ref="Command_Build_Tooltip"
            execute_function="Build.Toggle"
@@ -46,6 +54,8 @@
            available_in_toybox="true"
 		   is_flashing_allowed="true"
            icon="Command_Chat_Icon"
+           hover_icon_unselected="Command_Highlighting_Icon"
+           hover_icon_selected="Command_Highlighting_Selected_Icon"
            label_ref="Command_Chat_Label"
            tooltip_ref="Command_Conversations_Tooltip"
            execute_function="Floater.ToggleOrBringToFront"
@@ -56,6 +66,8 @@
   <command name="compass"
            available_in_toybox="false"
            icon="Command_Compass_Icon"
+           hover_icon_unselected="Command_Highlighting_Icon"
+           hover_icon_selected="Command_Highlighting_Selected_Icon"
            label_ref="Command_Compass_Label"
            tooltip_ref="Command_Compass_Tooltip"
            execute_function="Floater.ToggleOrBringToFront"
@@ -66,6 +78,8 @@
   <command name="destinations"
            available_in_toybox="true"
            icon="Command_Destinations_Icon"
+           hover_icon_unselected="Command_Highlighting_Icon"
+           hover_icon_selected="Command_Highlighting_Selected_Icon"
            label_ref="Command_Destinations_Label"
            tooltip_ref="Command_Destinations_Tooltip"
            execute_function="Floater.ToggleOrBringToFront"
@@ -76,6 +90,8 @@
   <command name="gestures"
            available_in_toybox="true"
            icon="Command_Gestures_Icon"
+           hover_icon_unselected="Command_Highlighting_Icon"
+           hover_icon_selected="Command_Highlighting_Selected_Icon"
            label_ref="Command_Gestures_Label"
            tooltip_ref="Command_Gestures_Tooltip"
            execute_function="Floater.ToggleOrBringToFront"
@@ -86,6 +102,8 @@
   <command name="howto"
            available_in_toybox="true"
            icon="Command_HowTo_Icon"
+           hover_icon_unselected="Command_Highlighting_Icon"
+           hover_icon_selected="Command_Highlighting_Selected_Icon"
            label_ref="Command_HowTo_Label"
            tooltip_ref="Command_HowTo_Tooltip"
            execute_function="Help.ToggleHowTo"
@@ -94,6 +112,8 @@
   <command name="inventory"
            available_in_toybox="true"
            icon="Command_Inventory_Icon"
+           hover_icon_unselected="Command_Highlighting_Icon"
+           hover_icon_selected="Command_Highlighting_Selected_Icon"
            label_ref="Command_Inventory_Label"
            tooltip_ref="Command_Inventory_Tooltip"
            execute_function="Floater.ToggleOrBringToFront"
@@ -104,6 +124,8 @@
   <command name="map"
            available_in_toybox="true"
            icon="Command_Map_Icon"
+           hover_icon_unselected="Command_Highlighting_Icon"
+           hover_icon_selected="Command_Highlighting_Selected_Icon"
            label_ref="Command_Map_Label"
            tooltip_ref="Command_Map_Tooltip"
            execute_function="Floater.ToggleOrBringToFront"
@@ -114,6 +136,8 @@
   <command name="marketplace"
            available_in_toybox="false"
            icon="Command_Marketplace_Icon"
+           hover_icon_unselected="Command_Highlighting_Icon"
+           hover_icon_selected="Command_Highlighting_Selected_Icon"
            label_ref="Command_Marketplace_Label"
            tooltip_ref="Command_Marketplace_Tooltip"
            execute_function="Avatar.OpenMarketplace"
@@ -121,6 +145,8 @@
   <command name="minimap"
            available_in_toybox="true"
            icon="Command_MiniMap_Icon"
+           hover_icon_unselected="Command_Highlighting_Icon"
+           hover_icon_selected="Command_Highlighting_Selected_Icon"
            label_ref="Command_MiniMap_Label"
            tooltip_ref="Command_MiniMap_Tooltip"
            execute_function="Floater.ToggleOrBringToFront"
@@ -131,6 +157,8 @@
   <command name="move"
            available_in_toybox="true"
            icon="Command_Move_Icon"
+           hover_icon_unselected="Command_Highlighting_Icon"
+           hover_icon_selected="Command_Highlighting_Selected_Icon"
            label_ref="Command_Move_Label"
            tooltip_ref="Command_Move_Tooltip"
            execute_function="Floater.ToggleOrBringToFront"
@@ -141,6 +169,8 @@
   <command name="outbox"
            available_in_toybox="false"
            icon="Command_Outbox_Icon"
+           hover_icon_unselected="Command_Highlighting_Icon"
+           hover_icon_selected="Command_Highlighting_Selected_Icon"
            label_ref="Command_Outbox_Label"
            tooltip_ref="Command_Outbox_Tooltip"
            execute_function="Floater.ToggleOrBringToFront"
@@ -151,6 +181,8 @@
   <command name="people"
            available_in_toybox="true"
            icon="Command_People_Icon"
+           hover_icon_unselected="Command_Highlighting_Icon"
+           hover_icon_selected="Command_Highlighting_Selected_Icon"
            label_ref="Command_People_Label"
            tooltip_ref="Command_People_Tooltip"
            execute_function="Floater.ToggleOrBringToFront"
@@ -161,6 +193,8 @@
   <command name="picks"
            available_in_toybox="true"
            icon="Command_Picks_Icon"
+           hover_icon_unselected="Command_Highlighting_Icon"
+           hover_icon_selected="Command_Highlighting_Selected_Icon"
            label_ref="Command_Picks_Label"
            tooltip_ref="Command_Picks_Tooltip"
            execute_function="Floater.ToggleOrBringToFront"
@@ -171,6 +205,8 @@
   <command name="places"
            available_in_toybox="true"
            icon="Command_Places_Icon"
+           hover_icon_unselected="Command_Highlighting_Icon"
+           hover_icon_selected="Command_Highlighting_Selected_Icon"
            label_ref="Command_Places_Label"
            tooltip_ref="Command_Places_Tooltip"
            execute_function="Floater.ToggleOrBringToFront"
@@ -181,6 +217,8 @@
   <command name="preferences"
            available_in_toybox="true"
            icon="Command_Preferences_Icon"
+           hover_icon_unselected="Command_Highlighting_Icon"
+           hover_icon_selected="Command_Highlighting_Selected_Icon"
            label_ref="Command_Preferences_Label"
            tooltip_ref="Command_Preferences_Tooltip"
            execute_function="Floater.ToggleOrBringToFront"
@@ -191,6 +229,8 @@
   <command name="profile"
            available_in_toybox="true"
            icon="Command_Profile_Icon"
+           hover_icon_unselected="Command_Highlighting_Icon"
+           hover_icon_selected="Command_Highlighting_Selected_Icon"
            label_ref="Command_Profile_Label"
            tooltip_ref="Command_Profile_Tooltip"
            execute_function="Avatar.ToggleMyProfile"
@@ -199,6 +239,8 @@
   <command name="search"
            available_in_toybox="true"
            icon="Command_Search_Icon"
+           hover_icon_unselected="Command_Highlighting_Icon"
+           hover_icon_selected="Command_Highlighting_Selected_Icon"
            label_ref="Command_Search_Label"
            tooltip_ref="Command_Search_Tooltip"
            execute_function="Floater.ToggleOrBringToFront"
@@ -209,6 +251,8 @@
   <command name="snapshot"
            available_in_toybox="true"
            icon="Command_Snapshot_Icon"
+           hover_icon_unselected="Command_Highlighting_Icon"
+           hover_icon_selected="Command_Highlighting_Selected_Icon"
            label_ref="Command_Snapshot_Label"
            tooltip_ref="Command_Snapshot_Tooltip"
            execute_function="Floater.ToggleOrBringToFront"
@@ -249,6 +293,8 @@
   <command name="speak"
            available_in_toybox="true"
            icon="Command_Speak_Icon"
+           hover_icon_unselected="Command_Highlighting_Icon"
+           hover_icon_selected="Command_Highlighting_Selected_Icon"
            label_ref="Command_Speak_Label"
            tooltip_ref="Command_Speak_Tooltip"
            execute_function="Agent.PressMicrophone"
@@ -263,6 +309,8 @@
   <command name="view"
            available_in_toybox="true"
            icon="Command_View_Icon"
+           hover_icon_unselected="Command_Highlighting_Icon"
+           hover_icon_selected="Command_Highlighting_Selected_Icon"
            label_ref="Command_View_Label"
            tooltip_ref="Command_View_Tooltip"
            execute_function="Floater.ToggleOrBringToFront"
diff --git a/indra/newview/app_settings/settings.xml b/indra/newview/app_settings/settings.xml
index 0f60fc02106b5ed91aaa774b99ddd828ffbb04e9..a82d0b3f95253d049fa472406dc2b8a63b8971ca 100755
--- a/indra/newview/app_settings/settings.xml
+++ b/indra/newview/app_settings/settings.xml
@@ -5942,6 +5942,17 @@
       <key>Value</key>
       <real>1.6</real>
     </map>
+    <key>MaxPersistentNotifications</key>
+    <map>
+      <key>Comment</key>
+      <string>Maximum amount of persistent notifications</string>
+      <key>Persist</key>
+      <integer>1</integer>
+      <key>Type</key>
+      <string>S32</string>
+      <key>Value</key>
+      <real>250</real>
+    </map>
     <key>MaxSelectDistance</key>
     <map>
       <key>Comment</key>
@@ -9850,7 +9861,7 @@
     <key>RenderUseVAO</key>
     <map>
       <key>Comment</key>
-      <string>[EXPERIMENTAL] Use GL Vertex Array Objects</string>
+      <string>[EXPERIMENTAL] Use GL Vertex Array Objects.</string>
       <key>Persist</key>
       <integer>1</integer>
       <key>Type</key>
@@ -13334,7 +13345,7 @@
       <key>Type</key>
       <string>String</string>
       <key>Value</key>
-      <string>-1</string>
+      <string>0</string>
     </map>
     <key>VivoxDebugSIPURIHostName</key>
     <map>
diff --git a/indra/newview/app_settings/settings_per_account.xml b/indra/newview/app_settings/settings_per_account.xml
index 636caf5ef321cd69a50cb381609e6745ab26889f..500151c935277b05d2d5d04ddf64f93bf9273945 100755
--- a/indra/newview/app_settings/settings_per_account.xml
+++ b/indra/newview/app_settings/settings_per_account.xml
@@ -77,6 +77,17 @@
         <key>Value</key>
             <integer>412</integer>
     </map>
+    <key>ConversationsParticipantListCollapsed</key>
+    <map>
+        <key>Comment</key>
+            <string>Stores the expanded/collapsed state of Nearby chat participant list</string>
+        <key>Persist</key>
+            <integer>1</integer>
+        <key>Type</key>
+            <string>Boolean</string>
+        <key>Value</key>
+            <integer>true</integer>
+    </map>   
     <key>InstantMessageLogPath</key>
         <map>
         <key>Comment</key>
diff --git a/indra/newview/app_settings/shaders/class1/avatar/avatarSkinV.glsl b/indra/newview/app_settings/shaders/class1/avatar/avatarSkinV.glsl
index bc63d07d726ccda9dee47a148166cd0592cea4be..c98e7d1cd3779310fa90f239d176da122d91f5c6 100755
--- a/indra/newview/app_settings/shaders/class1/avatar/avatarSkinV.glsl
+++ b/indra/newview/app_settings/shaders/class1/avatar/avatarSkinV.glsl
@@ -33,8 +33,8 @@ mat4 getSkinnedTransform()
 	mat4 ret;
 	int i = int(floor(weight.x));
 	float x = fract(weight.x);
-		
-	ret[0] = mix(matrixPalette[i+0], matrixPalette[i+1], x);
+	
+	ret[0] = mix(matrixPalette[i+0], matrixPalette[i+1],  x);
 	ret[1] = mix(matrixPalette[i+15],matrixPalette[i+16], x);
 	ret[2] = mix(matrixPalette[i+30],matrixPalette[i+31], x);
 	ret[3] = vec4(0,0,0,1);
diff --git a/indra/newview/app_settings/shaders/class1/avatar/objectSkinV.glsl b/indra/newview/app_settings/shaders/class1/avatar/objectSkinV.glsl
index efd0d03965725dcdd8b3fcb42efc68c0c9718690..39632d0cef04c8e72115ebfa6df3a4e8e7b74617 100755
--- a/indra/newview/app_settings/shaders/class1/avatar/objectSkinV.glsl
+++ b/indra/newview/app_settings/shaders/class1/avatar/objectSkinV.glsl
@@ -35,6 +35,9 @@ mat4 getObjectSkinnedTransform()
 	vec4 w = fract(weight4);
 	vec4 index = floor(weight4);
 	
+		 index = min(index, vec4(31.0));
+		 index = max(index, vec4( 0.0));
+
 	float scale = 1.0/(w.x+w.y+w.z+w.w);
 	w *= scale;
 	
diff --git a/indra/newview/gpu_table.txt b/indra/newview/gpu_table.txt
index 23a065caffa7aa67fb692139bd015cafbf2ddcc7..8efc4ee87da47f64b5fa244469367eea7121c7cb 100755
--- a/indra/newview/gpu_table.txt
+++ b/indra/newview/gpu_table.txt
@@ -22,11 +22,11 @@
 //
 // Class Numbers:
 //		0 - Defaults to low graphics settings.	No shaders on by default
-//		1 - Defaults to mid graphics settings.	Basic shaders on by default
-//		2 - Defaults to high graphics settings.	 Atmospherics on by default.
-//		3 - Same as 2, but with lighting and shadows enabled.
-//		4 - Same as 3, but with ambient occlusion enabled.
-//		5 - Same as 4, but with shadows set to "Sun/Moon+Projectors."
+//		1 - Defaults to low-mid graphics settings.		Basic shaders on by default
+//		2 - Defaults to mid graphics settings.			Atmospherics on by default
+//		3 - Defaults to mid-high graphics settings.		Advanced Lighting Model on by default
+//		4 - Defaults to high graphics settings.			Ambient Occlusion on by default
+//		5 - Defaults to high-ultra graphics settings.	Shadows set to "Sun/Moon+Projectors."
 //
 // Supported Number:
 //		0 - We claim to not support this card.
@@ -35,7 +35,9 @@
 
 3Dfx									.*3Dfx.*											0	0	0	0
 3Dlabs									.*3Dlabs.*											0	0	0	0
+Hijacker								.*Mohr.*Hijacker.*									0	0	0	0
 ATI 3D-Analyze							.*ATI.*3D-Analyze.*									0	0	0	0
+ATI ARES								.*ATI.*ARES.*										0	0	0	0
 ATI All-in-Wonder 7500					.*ATI.*All-in-Wonder 75.*							0	1	0	0
 ATI All-in-Wonder 8500					.*ATI.*All-in-Wonder 85.*							0	1	0	0
 ATI All-in-Wonder 9200					.*ATI.*All-in-Wonder 92.*							0	1	0	0
@@ -47,15 +49,14 @@ ATI All-in-Wonder X1800					.*ATI.*All-in-Wonder X18.*							3	1	0	0
 ATI All-in-Wonder X1900					.*ATI.*All-in-Wonder X19.*							3	1	0	0
 ATI All-in-Wonder PCI-E					.*ATI.*All-in-Wonder.*PCI-E.*						1	1	0	0
 ATI All-in-Wonder Radeon				.*ATI.*All-in-Wonder Radeon.*						0	1	0	0
-ATI Radeon X1300						.*ATI.*(ASUS|Radeon).*X13.*							2	1	1	2.1
-ATI Radeon X1500						.*ATI.*(ASUS|Radeon).*X15.*							2	1	1	2.1
-ATI Radeon X1600						.*ATI.*(ASUS|Radeon).*X16.*							2	1	1	2.1
-ATI Radeon X1700						.*ATI.*(ASUS|Radeon).*X17.*							2	1	1	2.1
-ATI Radeon X1800						.*ATI.*(Radeon|Diamond) X18.* ?.*					3	1	1	2.1
-ATI Radeon X1900						.*ATI.*(Radeon|Diamond|ASUS) X19.* ?.*				2	1	1	2.1
-ATI Radeon X17xx						.*ATI.*(Radeon|Diamond) X17.* ?.*					1	1	1	2.1
-ATI Radeon X16xx						.*ATI.*(Radeon|Diamond) X17.* ?.*					1	1	1	2.1
-ATI Radeon X28xx						.*ATI.*(Radeon|Diamond) X28.. ?.*					1	1	1	2.1
+ATI Radeon X1300						.*ATI.*(Radeon|Diamond|ASUS) *X13.* ?.*							2	1	1	2.1
+ATI Radeon X1400						.*ATI.*(Radeon|Diamond|ASUS) *X14.* ?.*							2	1	1	2.1
+ATI Radeon X1500						.*ATI.*(Radeon|Diamond|ASUS) *X15.* ?.*							2	1	1	2.1
+ATI Radeon X1600						.*ATI.*(Radeon|Diamond|ASUS) *X16.* ?.*							2	1	1	2.1
+ATI Radeon X1700						.*ATI.*(Radeon|Diamond|ASUS) *X17.* ?.*							2	1	1	2.1
+ATI Radeon X1800						.*ATI.*(Radeon|Diamond|ASUS) *X18.* ?.*						3	1	1	2.1
+ATI Radeon X1900						.*ATI.*(Radeon|Diamond|ASUS) *X19.* ?.*				2	1	1	2.1
+ATI Radeon X2800						.*ATI.*(Radeon|Diamond|ASUS) *X28.* ?.*							2	1	1	2.1
 ATI Display Adapter						.*ATI.*display adapter.*							1	1	1	4.1
 ATI FireGL 5200							.*ATI.*FireGL V52.*									1	1	1	2.1
 ATI FireGL 5xxx							.*ATI.*FireGL V5.*									2	1	1	3.3
@@ -74,26 +75,6 @@ ATI M56									.*ATI.*M56.*										1	1	0	0
 ATI M71									.*ATI.*M71.*										1	1	0	0
 ATI M72									.*ATI.*M72.*										1	1	0	0
 ATI M76									.*ATI.*M76.*										3	1	0	0
-ATI Radeon HD 6300M						.*ATI.*AMD Radeon.* (HD|HD )63..M					2	1	1	4.2
-ATI Radeon HD 6400M						.*ATI.*AMD Radeon.* (HD|HD )64..M					2	1	1	4.2
-ATI Radeon HD 6500M						.*ATI.*AMD Radeon.* (HD|HD )65..M					2	1	1	4.2
-ATI Radeon HD 6600M						.*ATI.*AMD Radeon.* (HD 6|6)6..M					3	1	1	4.2
-ATI Radeon HD 6700M						.*ATI.*AMD Radeon.* (HD|HD )67..M					3	1	1	4.2
-ATI Radeon HD 6800M						.*ATI.*AMD Radeon.* (HD|HD )68..M					3	1	1	4.2
-ATI Radeon HD 6300G						.*ATI.*AMD Radeon.* (HD|HD )63..G					2	1	1	4.2
-ATI Radeon HD 6400G						.*ATI.*AMD Radeon.* (HD|HD )64..G					2	1	1	4.2
-ATI Radeon HD 6500G						.*ATI.*AMD Radeon.* (HD|HD )65..G					2	1	1	4.2
-ATI Radeon HD 6600G						.*ATI.*AMD Radeon.* (HD|HD )66..G					3	1	1	4.2
-ATI Radeon HD 7100						.*ATI.*(Radeon|ASUS).* (HD|HD )71.*					2	1	0	0
-ATI Radeon HD 7200						.*ATI.*(Radeon|ASUS).* (HD|HD )72.*					2	1	0	4.2
-ATI Radeon HD 7300						.*ATI.*(Radeon|ASUS).* (HD|HD )73.*					2	1	0	4.2
-ATI Radeon HD 7400						.*ATI.*(Radeon|ASUS).* (HD|HD )74.*					2	1	0	4.2
-ATI Radeon HD 7500						.*ATI.*(Radeon|ASUS).* (HD|HD )75.*					3	1	1	4.2
-ATI Radeon HD 7600						.*ATI.*(Radeon|ASUS).* (HD|HD )76.*					3	1	0	4.2
-ATI Radeon HD 7700						.*ATI.*(Radeon|ASUS).* (HD|HD )77.*					4	1	1	4.2
-ATI Radeon HD 7800						.*ATI.*(Radeon|ASUS).* (HD|HD )78.*					5	1	1	4.2
-ATI Radeon HD 7900						.*ATI.*(Radeon|ASUS).* (HD|HD )79.*					5	1	1	4.2
-ATI Radeon HD 7000 Series				.*ATI.*(Radeon|ASUS).* (HD|HD )7000 Series.*		3	1	1	4.2
 ATI Mobility Radeon 4100				.*ATI.*Mobility.* 41..								1	1	1	3.3
 ATI Mobility Radeon 5000				.*ATI.*Mobility.* 50..								1	1	1	4.2
 ATI Mobility Radeon 7xxx				.*ATI.*Mobility.*Radeon 7.*							0	1	1	1.3
@@ -128,42 +109,66 @@ ATI Mobility Radeon HD 5400				.*ATI.*Mobility.*HD 54.*							2	1	1	4.2
 ATI Mobility Radeon HD 5500				.*ATI.*Mobility.*HD 55.*							3	1	0	4.2
 ATI Mobility Radeon HD 5600				.*ATI.*Mobility.*HD 56.*							3	1	1	4.2
 ATI Mobility Radeon HD 5700				.*ATI.*Mobility.*HD 57.*							3	1	1	4.1
-ATI Mobility Radeon HD 6200				.*ATI.*Mobility.*HD 62.*							3	1	0	0
-ATI Mobility Radeon HD 6300				.*ATI.*Mobility.*HD 63.*							3	1	1	4.2
-ATI Mobility Radeon HD 6400M			.*ATI.*Mobility.*HD 64.*							3	1	0	0
-ATI Mobility Radeon HD 6500M			.*ATI.*Mobility.*HD 65.*							5	1	1	4.2
-ATI Mobility Radeon HD 6600M			.*ATI.*Mobility.*HD 66.*							5	1	0	0
-ATI Mobility Radeon HD 6700M			.*ATI.*Mobility.*HD 67.*							5	1	0	0
-ATI Mobility Radeon HD 6800M			.*ATI.*Mobility.*HD 68.*							5	1	0	0
-ATI Mobility Radeon HD 6900M			.*ATI.*Mobility.*HD 69.*							5	1	0	0
-ATI Mobility Radeon Graphics			.*ATI Mobility Radeon Graphics.*					1	1	0	4
+ATI Mobility Radeon X1000				.*ATI.*Mobility.*Radeon ?X1..*								2	1	0	2.1
+ATI Mobility Radeon X1200				.*ATI.*Mobility.*Radeon ?X12.*								2	1	0	2.1
+ATI Mobility Radeon X2000				.*ATI.*Mobility.*Radeon ?X20.*								2	1	0	2.1
+ATI Mobility Radeon X2300				.*ATI.*Mobility.*Radeon ?X23.*								2	1	0	2.1
+ATI Mobility Radeon X2500				.*ATI.*Mobility.*Radeon ?X25.*								2	1	0	2.1
+ATI Mobility Radeon XX000				.*ATI.*Mobility.*Radeon ?Xx.*								2	1	0	2.1
+ATI Radeon HD 5xx						.*ATI.*(Radeon|ASUS).* (AH|AX|HD|HD |EAH)5x.		1	1	1	4
+ATI Radeon HD 6200D/G/M				.*ATI.*AMD Radeon.* (HD|HD )62..[DGM].*				3	1	0	4.2
+ATI Radeon HD 6300D/G/M				.*ATI.*AMD Radeon.* (HD|HD )63..[DGM].*				3	1	1	4.2
+ATI Radeon HD 6400D/G/M				.*ATI.*AMD Radeon.* (HD|HD )64..[DGM].*				3	1	0	4.2
+ATI Radeon HD 6500D/G/M				.*ATI.*AMD Radeon.* (HD|HD )65..[DGM].*				4	1	1	4.2
+ATI Radeon HD 6600D/G/M				.*ATI.*AMD Radeon.* (HD|HD )66..[DGM].*				4	1	0	4.2
+ATI Radeon HD 6700D/G/M				.*ATI.*AMD Radeon.* (HD|HD )67..[DGM].*				4	1	0	4.2
+ATI Radeon HD 6800D/G/M				.*ATI.*AMD Radeon.* (HD|HD )68..[DGM].*				4	1	0	4.2
+ATI Radeon HD 6900D/G/M				.*ATI.*AMD Radeon.* (HD|HD )69..[DGM].*				4	1	0	4.2
+ATI Radeon HD 7200D/G/M				.*ATI.*AMD Radeon.* (HD|HD )72..[DGM].*				3	1	0	4.2
+ATI Radeon HD 7300D/G/M				.*ATI.*AMD Radeon.* (HD|HD )73..[DGM].*				3	1	0	4.2
+ATI Radeon HD 7400D/G/M				.*ATI.*AMD Radeon.* (HD|HD )74..[DGM].*				3	1	0	4.2
+ATI Radeon HD 7500D/G/M				.*ATI.*AMD Radeon.* (HD|HD )75..[DGM].*				4	1	0	4.2
+ATI Radeon HD 7600D/G/M				.*ATI.*AMD Radeon.* (HD|HD )76..[DGM].*				4	1	0	4.2
+ATI Radeon HD 7700D/G/M				.*ATI.*AMD Radeon.* (HD|HD )77..[DGM].*				4	1	0	4.2
+ATI Radeon HD 7800D/G/M				.*ATI.*AMD Radeon.* (HD|HD )78..[DGM].*				4	1	0	4.2
+ATI Radeon HD 7900D/G/M				.*ATI.*AMD Radeon.* (HD|HD )79..[DGM].*				4	1	0	4.2
+ATI Radeon HD 8200D/G/M				.*ATI.*AMD Radeon.* (HD|HD )82..[DGM].*				3	1	0	4.2
+ATI Radeon HD 8300D/G/M				.*ATI.*AMD Radeon.* (HD|HD )83..[DGM].*				3	1	0	4.2
+ATI Radeon HD 8400D/G/M				.*ATI.*AMD Radeon.* (HD|HD )84..[DGM].*				4	1	0	4.2
+ATI Radeon HD 8500D/G/M				.*ATI.*AMD Radeon.* (HD|HD )85..[DGM].*				4	1	0	4.2
+ATI Radeon HD 8600D/G/M				.*ATI.*AMD Radeon.* (HD|HD )86..[DGM].*				4	1	0	4.2
+ATI Radeon HD 8700D/G/M				.*ATI.*AMD Radeon.* (HD|HD )87..[DGM].*				4	1	0	4.2
+ATI Radeon HD 8800D/G/M				.*ATI.*AMD Radeon.* (HD|HD )88..[DGM].*				4	1	0	4.2
+ATI Radeon HD 8900D/G/M				.*ATI.*AMD Radeon.* (HD|HD )89..[DGM].*				4	1	0	4.2
 ATI Radeon HD 2300						.*ATI.*Radeon.* (HD|HD )23..						0	1	1	3.3
-ATI Radeon HD 2400						.*ATI.*(Radeon|ASUS).* (HD|HD |EAH)24..				1	1	1	4
-ATI Radeon HD 2600						.*ATI.*(Radeon|ASUS).* (HD|HD |EAH)26..				2	1	1	4
+ATI Radeon HD 2400						.*ATI.*(Radeon|ASUS).* (AH|AX|HD|HD |EAH)24..		1	1	1	4
+ATI Radeon HD 2600						.*ATI.*(Radeon|ASUS).* (AH|AX|HD|HD |EAH)26..		2	1	1	4
 ATI Radeon HD 2900						.*ATI.*Radeon.* (HD|HD )29..						3	1	1	3.3
 ATI Radeon HD 3000						.*ATI.*Radeon.* (HD|HD )30..						0	1	0	0
 ATI Radeon HD 3100						.*ATI.*Radeon.* (HD|HD )31..						1	1	0	0
 ATI Radeon HD 3200						.*ATI.*Radeon.* (HD|HD )32..						1	1	1	4
 ATI Radeon HD 3300						.*ATI.*Radeon.* (HD|HD )33..						1	1	1	3.3
-ATI Radeon HD 3400						.*ATI.*(Radeon|ASUS).* (HD|HD |AH|EAH)34..			1	1	1	4
+ATI Radeon HD 3400						.*ATI.*(Radeon|ASUS).* (AH|AX|HD|HD |AH||AX|EAH)34..		1	1	1	4
 ATI Radeon HD 3500						.*ATI.*Radeon.* (HD|HD )35..						2	1	0	0
-ATI Radeon HD 3600						.*ATI.*(Radeon|ASUS).* (HD|HD |AH|EAH)36..			3	1	1	4
+ATI Radeon HD 3600						.*ATI.*(Radeon|ASUS).* (AH|AX|HD|HD |AH||AX|EAH)36..		3	1	1	4
 ATI Radeon HD 3700						.*ATI.*Radeon.* (HD|HD )37..						3	1	0	3.3
 ATI HD3700								.*ATI.* HD37..										3	1	0	3.3
-ATI Radeon HD 3800						.*ATI.*(Radeon|ASUS).* (HD|HD |EAH)38..				3	1	1	4
+ATI Radeon HD 3800						.*ATI.*(Radeon|ASUS).* (AH|AX|HD|HD |EAH|AX|)38..			3	1	1	4
 ATI Radeon HD 4100						.*ATI.*Radeon.* (HD|HD )41..						1	1	0	0
 ATI Radeon HD 4200						.*ATI.*Radeon.* (HD|HD )42..						1	1	1	4
-ATI Radeon HD 4300						.*ATI.*(Radeon|ASUS).* (HD4|HD 4|EAH4|4)3..			2	1	1	4
+ATI Radeon HD 4300						.*ATI.*(Radeon|ASUS).* (AH|AX|HD4|HD 4|EAH4|4)3..			2	1	1	4
 ATI Radeon HD 4400						.*ATI.*Radeon.* (HD|HD )44..						2	1	0	0
-ATI Radeon HD 4500						.*ATI.*(Radeon|ASUS).* (HD|HD |EAH)45..				2	1	1	3.3
-ATI Radeon HD 4600						.*ATI.*(Radeon|ASUS).* (HD|HD |EAH)46..				3	1	1	4
-ATI Radeon HD 4700						.*ATI.*(Radeon|ASUS).* (HD|HD |EAH)47..				3	1	1	3.3
-ATI Radeon HD 4800						.*ATI.*(Radeon|ASUS).* (HD|HD |EAH)48..				3	1	1	4
-ATI Radeon HD 5400						.*ATI.*(Radeon|ASUS).* (HD|HD |EAH)54..				3	1	1	4.2
-ATI Radeon HD 5500						.*ATI.*(Radeon|ASUS).* (HD|HD |EAH)55..				3	1	1	4.2
-ATI Radeon HD 5600						.*ATI.*(Radeon|ASUS).* (HD|HD |EAH)56..				3	1	1	4.2
-ATI Radeon HD 5700						.*ATI.*(Radeon|ASUS).* (HD|HD |EAH)57..				3	1	1	4.2
-ATI Radeon HD 5800						.*ATI.*(Radeon|ASUS).* (HD|HD |EAH)58..				4	1	1	4.2
+ATI Radeon HD 4500						.*ATI.*(Radeon|ASUS).* (AH|AX|HD|HD |EAH)45..		2	1	1	3.3
+ATI RADEON E4690						.*ATI.*RADEON.* E46..								3	1	1	4
+ATI Radeon HD 4600						.*ATI.*(Radeon|ASUS).* (AH|AX|HD|HD |EAH)46..		3	1	1	4
+ATI Radeon HD 4700						.*ATI.*(Radeon|ASUS).* (AH|AX|HD|HD |EAH)47..		3	1	1	3.3
+ATI Radeon HD 4800						.*ATI.*(Radeon|ASUS).* (AH|AX|HD|HD |EAH)48..		3	1	1	4
+ATI Radeon HD 5000						.*ATI.*(Radeon|ASUS).* (AH|AX|HD|HD |EAH)50..		3	1	1	4.2
+ATI Radeon HD 5400						.*ATI.*(Radeon|ASUS).* (AH|AX|HD|HD |EAH)54..		3	1	1	4.2
+ATI Radeon HD 5500						.*ATI.*(Radeon|ASUS).* (AH|AX|HD|HD |EAH)55..		3	1	1	4.2
+ATI Radeon HD 5600						.*ATI.*(Radeon|ASUS).* (AH|AX|HD|HD |EAH)56..		3	1	1	4.2
+ATI Radeon HD 5700						.*ATI.*(Radeon|ASUS).* (AH|AX|HD|HD |EAH)57..		3	1	1	4.2
+ATI Radeon HD 5800						.*ATI.*(Radeon|ASUS).* (AH|AX|HD|HD |EAH)58..		4	1	1	4.2
 ATI Radeon HD 5900						.*ATI.*Radeon.* (HD|HD )59..						4	1	1	4.2
 ATI Radeon HD 6200						.*ATI.*Radeon.* (HD|HD )62..						0	1	1	4.2
 ATI Radeon HD 6300						.*ATI.*Radeon.* (HD|HD )63..						1	1	1	4.2
@@ -173,11 +178,31 @@ ATI Radeon HD 6600						.*ATI.*(Radeon|ASUS).* (HD|HD |EAH)66..				3	1	1	4.2
 ATI Radeon HD 6700						.*ATI.*(Radeon|ASUS).* (HD|HD |EAH)67..				3	1	1	4.2
 ATI Radeon HD 6800						.*ATI.*(Radeon|ASUS).* (HD|HD |EAH)68..				4	1	1	4.2
 ATI Radeon HD 6900						.*ATI.*(Radeon|ASUS).* (HD|HD |EAH)69..				5	1	1	4.2
+ATI Radeon HD 6x00						.*ATI.*(Radeon|ASUS).* (HD|HD |EAH)6x..				5	1	1	4.2
+ATI Radeon HD 7100						.*ATI.*(Radeon|ASUS).* (HD|HD |EAH)71.*					2	1	0	0
+ATI Radeon HD 7200						.*ATI.*(Radeon|ASUS).* (HD|HD |EAH)72.*					2	1	0	4.2
+ATI Radeon HD 7300						.*ATI.*(Radeon|ASUS).* (HD|HD |EAH)73.*					2	1	0	4.2
+ATI Radeon HD 7400						.*ATI.*(Radeon|ASUS).* (HD|HD |EAH)74.*					2	1	0	4.2
+ATI Radeon HD 7500						.*ATI.*(Radeon|ASUS).* (HD|HD |EAH)75.*					3	1	1	4.2
+ATI Radeon HD 7600						.*ATI.*(Radeon|ASUS).* (HD|HD |EAH)76.*					3	1	0	4.2
+ATI Radeon HD 7700						.*ATI.*(Radeon|ASUS).* (HD|HD |EAH)77.*					4	1	1	4.2
+ATI Radeon HD 7800						.*ATI.*(Radeon|ASUS).* (HD|HD |EAH)78.*					5	1	1	4.2
+ATI Radeon HD 7900						.*ATI.*(Radeon|ASUS).* (HD|HD |EAH)79.*					5	1	1	4.2
+ATI Radeon HD 7000 Series				.*ATI.*(Radeon|ASUS).* (HD|HD |EAH)7000 Series.*		3	1	1	4.2
+ATI Radeon HD 8200						.*ATI.*(Radeon|ASUS).* (HD|HD |EAH)82.*					2	1	0	4.2
+ATI Radeon HD 8300 (OEM)				.*ATI.*(Radeon|ASUS).* (HD|HD |EAH)83.*					2	1	0	4.2
+ATI Radeon HD 8400 (OEM)				.*ATI.*(Radeon|ASUS).* (HD|HD |EAH)84.*					2	1	0	4.2
+ATI Radeon HD 8500 (OEM)				.*ATI.*(Radeon|ASUS).* (HD|HD |EAH)85.*					3	1	1	4.2
+ATI Radeon HD 8600 (OEM)				.*ATI.*(Radeon|ASUS).* (HD|HD |EAH)86.*					3	1	0	4.2
+ATI Radeon HD 8700 (OEM)				.*ATI.*(Radeon|ASUS).* (HD|HD |EAH)87.*					4	1	1	4.2
+ATI Radeon HD 8800 (OEM)				.*ATI.*(Radeon|ASUS).* (HD|HD |EAH)88.*					5	1	1	4.2
+ATI Radeon HD 8900 (OEM)				.*ATI.*(Radeon|ASUS).* (HD|HD |EAH)89.*					5	1	1	4.2
 ATI Radeon OpenGL						.*ATI.*Radeon OpenGL.*								0	0	0	0
 ATI Radeon 2100							.*ATI.*Radeon 21..									0	1	1	2.1
 ATI Radeon 3000							.*ATI.*Radeon 30..									1	1	1	4
 ATI Radeon 3100							.*ATI.*Radeon 31..									0	1	1	3.3
 ATI Radeon 5xxx							.*ATI.*Radeon 5...									3	1	0	0
+ATI Radeon 6xxx							.*ATI.*Radeon 6...									0	1	0	0
 ATI Radeon 7xxx							.*ATI.*Radeon 7...									0	1	1	2
 ATI Radeon 8xxx							.*ATI.*Radeon 8...									0	1	0	0
 ATI Radeon 9000							.*ATI.*Radeon 90..									0	1	1	1.3
@@ -187,6 +212,8 @@ ATI Radeon 9500							.*ATI.*Radeon 95..									0	1	1	2.1
 ATI Radeon 9600							.*ATI.*Radeon 96..									0	1	1	2.1
 ATI Radeon 9700							.*ATI.*Radeon 97..									1	1	0	0
 ATI Radeon 9800							.*ATI.*Radeon 98..									1	1	1	2.1
+ATI Radeon R7						.*ATI.*(Radeon|ASUS).* R7.*								4	1	0	4.2
+ATI Radeon R9						.*ATI.*(Radeon|ASUS).* R9.*								5	1	0	4.2
 ATI Radeon RV250						.*ATI.*RV250.*										0	1	0	0
 ATI Radeon RV600						.*ATI.*RV6.*										1	1	0	0
 ATI Radeon RX700						.*ATI.*RX70.*										1	1	0	0
@@ -195,6 +222,7 @@ ATI RS880M								.*ATI.*RS880M										1	1	0	0
 ATI Radeon RX9550						.*ATI.*RX9550.*										1	1	0	0
 ATI Radeon VE							.*ATI.*Radeon.*VE.*									0	0	0	0
 ATI Radeon X300							.*ATI.*Radeon X3.*									1	1	1	2.1
+ATI RADEON X300SE						.*ATI.*RADEON[ ]*X300SE*								1	1	1	2.1
 ATI Radeon X400							.*ATI.*Radeon ?X4.*									0	1	0	0
 ATI Radeon X500							.*ATI.*Radeon ?X5.*									1	1	1	2.1
 ATI Radeon X600							.*ATI.*(Radeon |ASUS Extreme A)X6.*					1	1	1	2.1
@@ -202,10 +230,14 @@ ATI Radeon X700							.*ATI.*Radeon ?X7.*									2	1	1	2.1
 ATI Radeon X800							.*ATI.*Radeon ?X8.*									1	1	1	2.1
 ATI Radeon X900							.*ATI.*Radeon ?X9.*									2	1	0	0
 ATI Radeon X1000						.*ATI.*Radeon ?X10.*								2	1	0	2.1
+ATI Radeon X1100						.*ATI.*Radeon ?X11.*								2	1	0	2.1
 ATI Radeon X1200						.*ATI.*Radeon ?X12.*								2	1	0	2.1
-ATI Radeon X1400						.*ATI.*Radeon ?X14.*								2	1	0	2.1
+ATI Radeon X1xxx						.*ATI.*Radeon ?X1xx.*								2	1	0	2.1
+ATI Radeon X12xx						.*ATI.*Radeon ?X12x.*								2	1	0	2.1
+ATI Radeon X2xxx						.*ATI.*Radeon ?X2x.*								2	1	0	2.1
 ATI Radeon X2300						.*ATI.*Radeon ?X23.*								2	1	0	2.1
 ATI Radeon Xpress						.*ATI.*Radeon Xpress.*								0	1	1	2.1
+ATI Radeon								.*ATI.*Radeon$										3	1	0	0
 ATI Rage 128							.*ATI.*Rage 128.*									0	1	0	0
 ATI R300 (9700)							.*R300.*											0	1	1	2.1
 ATI R350 (9800)							.*R350.*											1	1	0	0
@@ -224,7 +256,9 @@ ATI RX480 (Xpress 200P)					.*RX480.*											0	1	0	0
 ATI RX700								.*RX700.*											1	1	0	0
 AMD ANTILLES (HD 6990)					.*(AMD|ATI).*Antilles.*								3	1	0	0
 ATI ROBSON								.*(AMD|ATI).*ROBSON.*								3	1	0	4
+AMD ARUBA (HD 6800)						.*(AMD|ATI).*ARUBA.*								3	1	1	2.1
 AMD BARTS (HD 6800)						.*(AMD|ATI).*Barts.*								3	1	1	2.1
+AMD BA (HD 6800)						.*(AMD|ATI).*BA.*									3	1	1	2.1
 AMD WRESTLER							.*(AMD|ATI).*WRESTLER.*								3	1	1	4
 AMD SUMO								.*(AMD|ATI).*SUMO.*									3	1	1	4.1
 AMD CAICOS (HD 6400)					.*(AMD|ATI).*Caicos.*								3	1	0	0
@@ -236,6 +270,8 @@ AMD JUNIPER (HD 5700)					.*(AMD|ATI).*Juniper.*								3	1	0	0
 AMD PARK								.*(AMD|ATI).*Park.*									3	1	0	0
 AMD REDWOOD (HD 5500/5600)				.*(AMD|ATI).*Redwood.*								3	1	0	1.4
 AMD TURKS (HD 6500/6600)				.*(AMD|ATI).*Turks.*								3	1	0	2.1
+AMD PITCAIRN (HD 7870)					.*(AMD|ATI).*Pitcairn.*								3	1	0	2.1
+AMD TAHITI (HD 7000)					.*(AMD|ATI).*Tahiti.*								3	1	0	2.1
 AMD RS780 (HD 3200)						.*RS780.*											0	1	1	2.1
 AMD RS880 (HD 4200)						.*RS880.*											0	1	1	3.2
 AMD RV610 (HD 2400)						.*RV610.*											1	1	0	0
@@ -253,15 +289,15 @@ AMD RV790 (HD 4800)						.*RV790.*											3	1	0	0
 ATI 760G/Radeon 3000					.*ATI.*AMD 760G.*									1	1	1	3.3
 ATI 780L/Radeon 3000					.*ATI.*AMD 780L.*									1	1	0	0
 ATI Radeon DDR							.*ATI.*Radeon ?DDR.*								0	1	0	0
-ATI FirePro 2000						.*ATI.*FirePro 2.*									2	1	1	4.2
-ATI FirePro 3000						.*ATI.*FirePro V3.*									2	1	0	0
-ATI FirePro 4000						.*ATI.*FirePro V4.*									2	1	0	4.1
-ATI FirePro 5000						.*ATI.*FirePro V5.*									3	1	0	0
-ATI FirePro 7000						.*ATI.*FirePro V7.*									3	1	0	0
+ATI FirePro 2000						.*ATI.*FirePro [V]*2.*									2	1	1	4.2
+ATI FirePro 3000						.*ATI.*FirePro [V]*3.*									2	1	0	0
+ATI FirePro 4000						.*ATI.*FirePro [V]*4.*									2	1	0	4.1
+ATI FirePro 5000						.*ATI.*FirePro [V]*5.*									3	1	0	0
+ATI FirePro 7000						.*ATI.*FirePro [V]*7.*									3	1	0	0
 ATI FirePro M							.*ATI.*FirePro M.*									3	1	1	4.2
-ATI R300 (9700)							.*R300.*											0	1	1	2.1
 Intel X3100								.*Intel.*X3100.*									1	1	1	2.1
 Intel GMA 3600							.*Intel.* 3600.*									0	1	1	3
+Intel Royal BNA							.*Intel.*Royal[ ]*BNA.*								0	0	0	0
 Intel 830M								.*Intel.*830M										0	0	0	0
 Intel 845G								.*Intel.*845G										0	0	1	1.4
 Intel 855GM								.*Intel.*855GM										0	0	1	1.4
@@ -282,11 +318,20 @@ Intel Brookdale							.*Intel.*Brookdale.*								0	0	1	1.3
 Intel Cantiga							.*Intel.*Cantiga.*									0	0	1	2
 Intel Eaglelake							.*Intel.*Eaglelake.*								1	1	1	2
 Intel Graphics Media HD					.*Intel.*Graphics Media.*HD.*						1	1	1	2.1
-Intel HD Graphics 2000					.*Intel.*HD Graphics 2.*							2	1	0	4
+Intel HD Graphics 2500					.*Intel.*HD Graphics 25.*							2	1	0	4.2
+Intel HD Graphics 2000					.*Intel.*HD Graphics 2.*							2	1	0	3.1
 Intel HD Graphics 3000					.*Intel.*HD Graphics 3.*							3	1	1	3.1
-Intel HD Graphics 4000					.*Intel.*HD Graphics 4.*							3	1	1	4
+Intel HD Graphics 4200					.*Intel.*HD Graphics 42.*							3	1	0	4.2
+Intel HD Graphics 4400					.*Intel.*HD Graphics 44.*							3	1	0	4.2
+Intel HD Graphics 4600					.*Intel.*HD Graphics 46.*							3	1	0	4.2
+Intel HD Graphics 4000					.*Intel.*HD Graphics 4.*							3	1	1	4.2
+Intel Intel Iris Pro Graphics 5200		.*Intel.*Iris Pro Graphics 52.*						4	1	0	4
+Intel Intel Iris Graphics 5100			.*Intel.*Iris Graphics 51.*							4	1	0	4
+Intel Intel Iris OpenGL Engine			.*Intel.*Iris (Pro )*OpenGL.*							4	1	0	4
+Intel HD Graphics 5000					.*Intel.*HD Graphics 5.*							4	1	0	4
 Intel HD Graphics						.*Intel.*HD Graphics.*								2	1	1	4
 Intel Mobile 4 Series					.*Intel.*Mobile.* 4 Series.*						0	1	1	2.1
+Intel Mobile 45 Express					.*Intel.*Mobile.* 45 Express Chipset.*				0	1	0	2.1
 Intel 4 Series Internal					.*Intel.* 4 Series Internal.*						1	1	1	2.1
 Intel Media Graphics HD					.*Intel.*Media Graphics HD.*						0	1	0	0
 Intel Montara							.*Intel.*Montara.*									0	0	1	1.3
@@ -299,116 +344,197 @@ Intel 3D-Analyze						.*Intel.*3D-Analyze.*								2	1	0	0
 Matrox									.*Matrox.*											0	0	0	0
 Mesa									.*Mesa.*											1	0	1	3
 Gallium									.*Gallium.*											1	1	1	2.1
-NVIDIA G100M							.*NVIDIA .* 10[0-9]M.*								4	1	1	3.3
-NVIDIA G 110M							.*NVIDIA .* 11[0-9]M.*								1	1	1	3.3
-NVIDIA G 120M							.*NVIDIA .* 12[0-9]M.*								1	1	1	3.3
-NVIDIA G 200M							.*NVIDIA .* 20[0-9]M.*								1	1	0	0
-NVIDIA G 410M							.*NVIDIA .* 41[0-9]M.*								3	1	1	4.2
-NVIDIA GT 130M							.*NVIDIA .*GT 13[0-9]M.*							3	1	1	3.3
-NVIDIA GT 140M							.*NVIDIA .*GT 14[0-9]M.*							3	1	1	3.3
-NVIDIA GT 150M							.*NVIDIA .*GTS 15[0-9]M.*							2	1	0	0
-NVIDIA GTS 160M							.*NVIDIA .*GTS 16[0-9]M.*							2	1	0	0
-NVIDIA G210M							.*NVIDIA .*G21[0-9]M.*								3	1	0	3.3
+NVIDIA GeForce Pre-Release				.*NVIDIA .*GeForce[ ]Pre-Release.*					2	1	1	3.3
+NVIDIA D1xP1							.*NVIDIA .*D1[0-4]P1.*								0	0	0	0
+NVIDIA Mystery PCI Card					.*NVIDIA .Corporation [/]PCI]/]SSE2.*				0	0	0	0
+NVIDIA Quadro FX 770M					.*Quadro.*FX 77[0-9]M.*								2	1	0	3.3
+NVIDIA Quadro FX 1500M					.*Quadro.*FX 150[0-9]M.*							1	1	0	2.1
+NVIDIA Quadro FX 1600M					.*Quadro.*FX 160[0-9]M.*							2	1	0	3.3
+NVIDIA Quadro FX 2500M					.*Quadro.*FX 250[0-9]M.*							2	1	0	2.1
+NVIDIA Quadro FX 2700M					.*Quadro.*FX 270[0-9]M.*							3	1	0	3.3
+NVIDIA Quadro FX 2800M					.*Quadro.*FX 280[0-9]M.*							3	1	0	3.3
+NVIDIA Quadro FX 3500					.*Quadro.*FX 3500.*									2	1	0	2.1
+NVIDIA Quadro FX 3600					.*Quadro.*FX 3600.*									3	1	0	3.3
+NVIDIA Quadro FX 3700					.*Quadro.*FX 3700.*									3	1	0	3.3
+NVIDIA Quadro FX 3800					.*Quadro.*FX 3800.*									3	1	0	3.3
+NVIDIA Quadro FX 4500					.*Quadro.*FX 45.*									3	1	0	2.1
+NVIDIA Quadro FX 880M					.*Quadro.*FX 88[0-9]M.*								3	1	0	3.3
+NVIDIA Quadro FX 4800					.*NVIDIA .*Quadro FX 4800.*							3	1	0	3.1
+NVIDIA Quadro FX						.*NVIDIA .*Quadro FX.*										1	1	0	3.3
+NVIDIA Quadro NVS 1xxM					.*NVIDIA .*(Quadro)* NVS *1.[05]M.*								0	1	1	3.3
+NVIDIA Quadro NVS 300M					.*NVIDIA .*(Quadro)*[ ]+NVS *30[0-9]M.*							2	1	0	0
+NVIDIA Quadro NVS 320M					.*NVIDIA .*(Quadro)*[ ]+NVS *32[0-9]M.*							2	1	0	0
+NVIDIA Quadro NVS 2100M					.*NVIDIA .*(Quadro)*[ ]+NVS *210[0-9]M.*							2	1	0	3.3
+NVIDIA Quadro NVS 3100M					.*NVIDIA .*(Quadro)*[ ]+NVS *310[0-9]M.*							2	1	0	3.3
+NVIDIA Quadro NVS 4200M					.*NVIDIA .*(Quadro)*[ ]+NVS *420[0-9]M.*							2	1	0	4.2
+NVIDIA Quadro NVS 5100M					.*NVIDIA .*(Quadro)*[ ]+NVS *510[0-9]M.*							2	1	0	0
+NVIDIA Quadro NVS 5200M					.*NVIDIA .*(Quadro)*[ ]+NVS *520[0-9]M.*							2	1	0	0
+NVIDIA Quadro NVS 5400M					.*NVIDIA .*(Quadro)*[ ]+NVS *540[0-9]M.*							2	1	0	0
+NVIDIA Quadro NVS						.*NVIDIA .*(Quadro)*[ ]+NVS										0	1	0	4.2
+NVIDIA Quadro2							.*Quadro2.*											0	1	0	1.5
+NVIDIA Quadro 1000M						.*Quadro.* (K1|1)00[0-9]M.*							2	1	0	4.2
+NVIDIA Quadro 1100M						.*Quadro.* *110[0-9]M.*								2	1	0	3.3
+NVIDIA Quadro K600						.*Quadro.* (K6|6)0[0-9][^0].*							2	1	0	4.2
+NVIDIA Quadro K1000						.*Quadro.* (K1|1)00[0-9].*							2	1	0	4.2
+NVIDIA Quadro 2000 M/D					.*Quadro.* (K2|2)000.*								3	1	0	4.2
+NVIDIA Quadro 3000M						.*Quadro.* (K3|3)00[0-9]M.*							3	1	0	4.2
+NVIDIA Quadro 4000M						.*Quadro.* (K4|4)00[0-9]M.*							3	1	0	4.2
+NVIDIA Quadro 4000						.*Quadro.* (K4|4)000.*										3	1	0	4.2
+NVIDIA Quadro 50x0 M					.*Quadro.* (K5|5)0.0.*									3	1	0	4.2
+NVIDIA Quadro 6000						.*Quadro.* (K6|6)000.*									3	1	0	0
+NVIDIA Quadro 400						.*Quadro.* 400.*									2	1	0	3.3
+NVIDIA Quadro 600						.*Quadro.* 600.*									2	1	0	4.2
+NVIDIA Quadro4							.*Quadro4.*											0	1	0	1.5
+NVIDIA Quadro DCC						.*Quadro DCC.*										0	1	0	0
+NVIDIA Quadro CX						.*Quadro.*CX.*										3	1	0	0
+NVIDIA G 100M							.*NVIDIA .*G *10[0-9]M.*								1	1	1	3.3
+NVIDIA G 110M							.*NVIDIA .*G *11[0-9]M.*								1	1	1	3.3
+NVIDIA G 120M							.*NVIDIA .*G *12[0-9]M.*								1	1	1	3.3
+NVIDIA G 200M							.*NVIDIA .*G *20[0-9]M.*								1	1	0	0
+NVIDIA G 410M							.*NVIDIA .*G *41[0-9]M.*								3	1	1	4.2
+NVIDIA GT 130M							.*NVIDIA .*GT *13[0-9]M.*							3	1	1	3.3
+NVIDIA GT 140M							.*NVIDIA .*GT *14[0-9]M.*							3	1	1	3.3
+NVIDIA GT 150M							.*NVIDIA .*GTS *15[0-9]M.*							2	1	0	0
+NVIDIA GTS 160M							.*NVIDIA .*GTS *16[0-9]M.*							2	1	0	0
+NVIDIA G210M							.*NVIDIA .*G *21[0-9]M.*							3	1	0	3.3
 NVIDIA GT 220M							.*NVIDIA .*GT 22[0-9]M.*							3	1	1	3.3
 NVIDIA GT 230M							.*NVIDIA .*GT 23[0-9]M.*							3	1	1	3.3
 NVIDIA GT 240M							.*NVIDIA .*GT 24[0-9]M.*							3	1	1	3.3
+NVIDIA GT 260M							.*NVIDIA .*GT 26[0-9]M.*							3	1	1	3.3
 NVIDIA GTS 250M							.*NVIDIA .*GTS 25[0-9]M.*							3	1	0	3.3
 NVIDIA GTS 260M							.*NVIDIA .*GTS 26[0-9]M.*							3	1	0	0
 NVIDIA GTX 260M							.*NVIDIA .*GTX 26[0-9]M.*							3	1	0	3.3
 NVIDIA GTX 270M							.*NVIDIA .*GTX 27[0-9]M.*							3	1	0	0
 NVIDIA GTX 280M							.*NVIDIA .*GTX 28[0-9]M.*							3	1	0	3.3
 NVIDIA 300M								.*NVIDIA .*GT 30[0-9]M.*							3	1	1	4.2
-NVIDIA G 310M							.*NVIDIA .* 31[0-9]M.*								2	1	0	3.3
-NVIDIA GT 320M							.*NVIDIA .* 32[0-9]M.*								3	1	0	3.3
-NVIDIA GT 330M							.*NVIDIA .*GT 33[0-9]M.*							3	1	1	3.3
-NVIDIA GT 340M							.*NVIDIA .*GT 34[0-9]M.*							4	1	1	3.3
+NVIDIA G 310M							.*NVIDIA .*G[T]* 31[0-9]M.*								2	1	0	3.3
+NVIDIA GT 320M							.*NVIDIA .*G[T]* 32[0-9]M.*								3	1	0	3.3
+NVIDIA GT 330M							.*NVIDIA .*G[T]* 33[0-9]M.*							3	1	1	3.3
+NVIDIA GT 340M							.*NVIDIA .*G[T]* 34[0-9]M.*							4	1	1	3.3
 NVIDIA GTS 350M							.*NVIDIA .*GTS 35[0-9]M.*							4	1	1	3.3
 NVIDIA GTS 360M							.*NVIDIA .*GTS 36[0-9]M.*							5	1	1	3.3
-NVIDIA 400M								.*NVIDIA .* 40[0-9]M.*								2	1	0	0
-NVIDIA 410M								.*NVIDIA .* 41[0-9]M.*								3	1	0	0
-NVIDIA GT 420M							.*NVIDIA .*GT 42[0-9]M.*							3	1	1	4.2
-NVIDIA GT 430M							.*NVIDIA .*GT 43[0-9]M.*							3	1	1	4.2
-NVIDIA GT 440M							.*NVIDIA .*GT 44[0-9]M.*							3	1	1	4.2
-NVIDIA GT 450M							.*NVIDIA .*GT 45[0-9]M.*							3	1	0	0
-NVIDIA GTX 460M							.*NVIDIA .*GTX 46[0-9]M.*							4	1	1	4.3
-NVIDIA GTX 470M							.*NVIDIA .*GTX 47[0-9]M.*							3	1	0	4.2
-NVIDIA GTX 480M							.*NVIDIA .*GTX 48[0-9]M.*							3	1	1	4.2
-NVIDIA GT 520M							.*NVIDIA .*GT 52[0-9]M.*							3	1	1	4.2
-NVIDIA GT 530M							.*NVIDIA .*GT 53[0-9]M.*							3	1	1	4.2
-NVIDIA GT 540M							.*NVIDIA .*GT 54[0-9]M.*							3	1	1	4.2
-NVIDIA GT 550M							.*GeForce GT 55[0-9]M.*								3	1	1	4.2
-NVIDIA GTX 560M							.*NVIDIA .*GTX 56[0-9]M.*							3	1	0	4.2
-NVIDIA GTX 570M							.*NVIDIA .*GTX 57[0-9]M.*							5	1	0	4.2
-NVIDIA GTX 580M							.*NVIDIA .*GTX 58[0-9]M.*							5	1	1	4.2
-NVIDIA 610M								.*NVIDIA.* 61[0-9]M.*								3	1	1	4.2
-NVIDIA GT 620M							.*NVIDIA .*GT 62[0-9]M.*							3	1	0	4.2
-NVIDIA GT 630M							.*NVIDIA .*GT 63[0-9]M.*							3	1	0	4.2
-NVIDIA GT 640M							.*NVIDIA .*GT 64[0-9]M.*							3	1	0	4.2
-NVIDIA GT 650M							.*NVIDIA .*GT 65[0-9]M.*							3	1	0	4.2
-NVIDIA GTX 660M							.*NVIDIA .*GTX 66[0-9]M.*							5	1	0	4.3
-NVIDIA GTX 670M							.*NVIDIA .*GTX 67[0-9]M.*							5	1	1	4.2
-NVIDIA GTX 680M							.*NVIDIA .*GTX 68[0-9]M.*							5	1	0	4.2
-NVIDIA GTX 690M							.*NVIDIA .*GTX 69[0-9]M.*							5	1	0	0
+NVIDIA 310M								.*NVIDIA .*31[0-9]M.*								2	1	0	3.3
+NVIDIA 320M								.*NVIDIA .*320M.*									2	1	0	3.3
+NVIDIA 400M								.*NVIDIA .*[ ]+40[0-9]M.*								2	1	0	0
+NVIDIA 410M								.*NVIDIA .*[ ]+41[0-9]M.*								3	1	0	0
+NVIDIA GT 420M							.*NVIDIA .*GT *42[0-9]M.*							3	1	1	4.3
+NVIDIA GT 430M							.*NVIDIA .*GT *43[0-9]M.*							3	1	1	4.3
+NVIDIA GT 440M							.*NVIDIA .*GT *44[0-9]M.*							3	1	1	4.3
+NVIDIA GT 450M							.*NVIDIA .*GT *45[0-9]M.*							3	1	0	0
+NVIDIA GTX 460M							.*NVIDIA .*GTX *46[0-9]M.*							4	1	1	4.3
+NVIDIA GTX 470M							.*NVIDIA .*GTX *47[0-9]M.*							3	1	0	4.3
+NVIDIA GTX 480M							.*NVIDIA .*GTX *48[0-9]M.*							3	1	1	4.3
+NVIDIA GT 520M							.*NVIDIA .*GT *52[0-9]M.*							3	1	1	4.3
+NVIDIA GT 530M							.*NVIDIA .*GT *53[0-9]M.*							3	1	1	4.3
+NVIDIA GT 540M							.*NVIDIA .*GT *54[0-9]M.*							3	1	1	4.3
+NVIDIA GT 550M							.*NVIDIA .*GT *55[0-9]M.*							3	1	1	4.3
+NVIDIA GTX 560M							.*NVIDIA .*GTX *56[0-9]M.*							3	1	0	4.3
+NVIDIA GTX 570M							.*NVIDIA .*GTX *57[0-9]M.*							5	1	0	4.3
+NVIDIA GTX 580M							.*NVIDIA .*GTX *58[0-9]M.*							5	1	1	4.3
+NVIDIA 610M								.*NVIDIA.* 61[0-9]M.*								3	1	1	4.3
+NVIDIA GT 620M							.*NVIDIA .*GT *62[0-9]M.*							3	1	0	4.3
+NVIDIA GT 630M							.*NVIDIA .*GT *63[0-9]M.*							3	1	0	4.3
+NVIDIA GT 640M							.*NVIDIA .*GT *64[0-9]M.*							3	1	0	4.3
+NVIDIA GT 650M							.*NVIDIA .*GT *65[0-9]M.*							3	1	0	4.3
+NVIDIA GTX 660M							.*NVIDIA .*GTX *66[0-9]M.*							5	1	0	4.3
+NVIDIA GTX 670M							.*NVIDIA .*GTX *67[0-9]M.*							5	1	1	4.3
+NVIDIA GTX 680M							.*NVIDIA .*GTX *68[0-9]M.*							5	1	0	4.3
+NVIDIA GTX 690M							.*NVIDIA .*GTX *69[0-9]M.*							5	1	0	4.3
+NVIDIA 710M								.*NVIDIA.* 71[0-9]M.*								3	1	0	4.3
+NVIDIA GT 720M							.*NVIDIA .*GT *72[0-9]M.*							3	1	0	4.3
+NVIDIA GT 730M							.*NVIDIA .*GT *73[0-9]M.*							3	1	0	4.3
+NVIDIA GT 740M							.*NVIDIA .*GT *74[0-9]M.*							3	1	0	4.3
+NVIDIA GT 750M							.*NVIDIA .*GT *75[0-9]M.*							3	1	0	4.3
+NVIDIA GTX 760M							.*NVIDIA .*GTX *76[0-9]M.*							5	1	0	4.3
+NVIDIA GTX 770M							.*NVIDIA .*GTX *77[0-9]M.*							5	1	0	4.3
+NVIDIA GTX 780M							.*NVIDIA .*GTX *78[0-9]M.*							5	1	0	4.3
 NVIDIA G100								.*NVIDIA .*G10.*									3	1	1	4.2
 NVIDIA GT 120							.*NVIDIA .*GT 12.*									2	1	0	3.3
 NVIDIA GT 130							.*NVIDIA .*GT 13.*									2	1	0	3.3
 NVIDIA GT 140							.*NVIDIA .*GT 14.*									2	1	0	3.3
+NVIDIA GT 150							.*NVIDIA .*GT 15.*									2	1	1	3.3
 NVIDIA GTS 150							.*NVIDIA .*GTS 15.*									2	1	0	0
-NVIDIA 200								.*NVIDIA .*GeForce 20.*								2	1	1	3.3
-NVIDIA G200								.*NVIDIA .*GeForce G20.*							2	1	1	3.3
-NVIDIA G210								.*NVIDIA .*GeForce G210.*							3	1	1	3.3
-NVIDIA 210								.*NVIDIA .*GeForce 210.*							3	1	1	3.3
-NVIDIA GT 220							.*NVIDIA .*GT 22.*									2	1	1	3.3
-NVIDIA GT 230							.*NVIDIA .*GT 23.*									2	1	1	3.3
-NVIDIA GT 240							.*NVIDIA .*GT 24.*									4	1	1	3.3
-NVIDIA GTS 240							.*NVIDIA .*GTS 24.*									4	1	1	3.3
-NVIDIA GTS 250							.*NVIDIA .*GTS 25.*									4	1	1	3.3
-NVIDIA GTX 260							.*NVIDIA .*GTX 26.*									4	1	1	3.3
-NVIDIA GTX 270							.*NVIDIA .*GTX 27.*									4	1	0	3.3
-NVIDIA GTX 280							.*NVIDIA .*GTX 28.*									4	1	1	3.3
-NVIDIA GTX 290							.*NVIDIA .*GTX 29.*									5	1	0	3.3
-NVIDIA 310								.*NVIDIA .*GeForce 310.*							3	1	1	3.3
-NVIDIA 315								.*NVIDIA .*GeForce 315.*							3	1	1	3.3
-NVIDIA GT 320							.*NVIDIA .*GT 32.*									3	1	0	3.3
-NVIDIA GT 330							.*NVIDIA .*GT 33.*									3	1	0	3.3
-NVIDIA GT 340							.*NVIDIA .*GT 34.*									3	1	0	3.3
-NVIDIA 405								.*NVIDIA .* 405.*									3	1	0	3.3
-NVIDIA GT 420							.*NVIDIA .*GT 42.*									3	1	1	4.2
-NVIDIA GT 430							.*NVIDIA .*GT 43.*									3	1	1	4.3
-NVIDIA GT 440							.*NVIDIA .*GT 44.*									4	1	0	4.3
-NVIDIA GTS 450							.*NVIDIA .*GTS 45.*									4	1	1	4.2
-NVIDIA GTX 460							.*NVIDIA .*GTX 46.*									5	1	1	4.3
-NVIDIA GTX 470							.*NVIDIA .*GTX 47.*									5	1	1	4.2
-NVIDIA GTX 480							.*NVIDIA .*GTX 48.*									5	1	1	4.2
-NVIDIA 510								.*NVIDIA .* 510.*									3	1	0	4.2
-NVIDIA GT 520							.*NVIDIA .*GT 52.*									3	1	1	4.2
-NVIDIA GT 530							.*NVIDIA .*GT 53.*									3	1	1	4.2
-NVIDIA GT 540							.*NVIDIA .*GT 54.*									3	1	1	4.2
-NVIDIA GTX 550							.*NVIDIA .*GTX 55.*									5	1	1	4.3
-NVIDIA GTX 560							.*NVIDIA .*GTX 56.*									5	1	1	4.3
-NVIDIA GTX 570							.*NVIDIA .*GTX 57.*									5	1	1	4.2
-NVIDIA GTX 580							.*NVIDIA .*GTX 58.*									5	1	1	4.3
-NVIDIA GTX 590							.*NVIDIA .*GTX 59.*									5	1	1	4.2
-NVIDIA 605								.*NVIDIA .* 605.*									3	1	1	4.2
-NVIDIA GT 610							.*NVIDIA .*GT 61.*									3	1	1	4.2
-NVIDIA GT 620							.*NVIDIA .*GT 62.*									3	1	0	4.2
-NVIDIA GT 630							.*NVIDIA .*GT 63.*									3	1	0	4.2
-NVIDIA GT 640							.*NVIDIA .*GT 64.*									3	1	0	4.2
-NVIDIA GT 650							.*NVIDIA .*GT 65.*									3	1	1	4.2
-NVIDIA GTX 650							.*NVIDIA .*GTX 65.*									3	1	1	4.2
-NVIDIA GTX 660							.*NVIDIA .*GTX 66.*									5	1	0	4.3
-NVIDIA GTX 670							.*NVIDIA .*GTX 67.*									5	1	1	4.2
-NVIDIA GTX 680							.*NVIDIA .*GTX 68.*									5	1	1	4.2
-NVIDIA GTX 690							.*NVIDIA .*GTX 69.*									5	1	1	4.2
+NVIDIA 200								.*NVIDIA .[ ]+200[^0].*								2	1	1	3.3
+NVIDIA G200								.*NVIDIA .*G[ ]*200.*							2	1	1	3.3
+NVIDIA G210								.*NVIDIA .*G[ ]*210.*							3	1	1	3.3
+NVIDIA 205								.*NVIDIA .*205[^0]*.*							3	1	1	3.3
+NVIDIA 210								.*NVIDIA .*210$							3	1	1	3.3
+NVIDIA GeForce 210						.*NVIDIA .*(GeForce)[ ]210[^0]*$							3	1	1	3.3
+NVIDIA GT 220							.*NVIDIA .*GT *22.*									2	1	1	3.3
+NVIDIA GT 230							.*NVIDIA .*GT *23.*									2	1	1	3.3
+NVIDIA GT 240							.*NVIDIA .*GT *24.*									4	1	1	3.3
+NVIDIA GTS 240							.*NVIDIA .*GTS *24.*									4	1	1	3.3
+NVIDIA GTS 250							.*NVIDIA .*GTS *25.*									4	1	1	3.3
+NVIDIA GTS 360							.*NVIDIA .*GTS *36.*									4	1	1	3.3
+NVIDIA GTX 260							.*NVIDIA .*GTX *26.*									4	1	1	3.3
+NVIDIA GTX 270							.*NVIDIA .*GTX *27.*									4	1	0	3.3
+NVIDIA GTX 280							.*NVIDIA .*GTX *28.*									4	1	1	3.3
+NVIDIA GTX 290							.*NVIDIA .*GTX *29.*									5	1	0	3.3
+NVIDIA GT 320							.*NVIDIA .*GT *32.*									3	1	0	3.3
+NVIDIA GT 330							.*NVIDIA .*GT *33.*									3	1	0	3.3
+NVIDIA GT 340							.*NVIDIA .*GT *34.*						3	1	0	0
+NVIDIA 310								.*NVIDIA .*310[^0M]*.*							3	1	1	3.3
+NVIDIA 315								.*NVIDIA .*315[^0M]*.*							3	1	1	3.3
+NVIDIA 320								.*NVIDIA .*320[^0M]*.*							3	1	1	3.3
+NVIDIA 405								.*NVIDIA .*405[^0]*.*									3	1	0	3.3
+NVIDIA 410								.*NVIDIA .*410[^0]*.*									3	1	0	3.3
+NVIDIA GT 415							.*NVIDIA .*GT *415.*									3	1	1	4.3
+NVIDIA GT 420							.*NVIDIA .*GT *42.*									3	1	1	4.3
+NVIDIA GT 430							.*NVIDIA .*GT *43.*									3	1	1	4.3
+NVIDIA GT 440							.*NVIDIA .*GT *44.*									4	1	1	4.3
+NVIDIA GT 450							.*NVIDIA .*GT *45.*									4	1	1	4.3
+NVIDIA GTS 450							.*NVIDIA .*GTS *45.*									4	1	1	4.3
+NVIDIA GTX 460							.*NVIDIA .*GTX *46.*					5	1	1	4.3
+NVIDIA GTX 470							.*NVIDIA .*GTX *47.*									5	1	1	4.3
+NVIDIA GTX 480							.*NVIDIA .*GTX *48.*									5	1	1	4.3
+NVIDIA 505								.*NVIDIA .*505[^0]*.*						3	1	0	0
+NVIDIA 510								.*NVIDIA .*510[^0]*.*						3	1	0	0
+NVIDIA GT 520							.*NVIDIA .*GT *52.*									3	1	1	4.3
+NVIDIA GT 530							.*NVIDIA .*GT *53.*									3	1	1	4.3
+NVIDIA GT 540							.*NVIDIA .*GT *54.*									3	1	1	4.3
+NVIDIA GT 550							.*NVIDIA .*GT *55.*									3	1	1	4.3
+NVIDIA GTX 550							.*NVIDIA .*GTX *55.*					5	1	1	4.3
+NVIDIA GTX 560							.*NVIDIA .*GTX *56.*									5	1	1	4.3
+NVIDIA GTX 570							.*NVIDIA .*GTX *57.*									5	1	1	4.3
+NVIDIA GTX 580							.*NVIDIA .*GTX *58.*					5	1	1	4.3
+NVIDIA GTX 590							.*NVIDIA .*GTX *59.*									5	1	1	4.3
+NVIDIA 605								.*NVIDIA .*605[^0]*.*									3	1	1	4.3
+NVIDIA GT 61x							.*NVIDIA .*GT 61.*									3	1	1	4.3
+NVIDIA GT 62x							.*NVIDIA .*GT 62.*									3	1	0	4.3
+NVIDIA GT 63x							.*NVIDIA .*GT 63.*									3	1	0	4.3
+NVIDIA GT 64x							.*NVIDIA .*GT 64.*									3	1	0	4.3
+NVIDIA GT 65x							.*NVIDIA .*GT 65.*									3	1	1	4.3
+NVIDIA GTX 64x							.*NVIDIA .*GTX 64.*									3	1	1	4.3
+NVIDIA GTX 65x							.*NVIDIA .*GTX 65.*									3	1	1	4.3
+NVIDIA GTX 66x							.*NVIDIA .*GTX 66.*									5	1	0	4.3
+NVIDIA GTX 67x							.*NVIDIA .*GTX 67.*									5	1	1	4.3
+NVIDIA GTX 68x							.*NVIDIA .*GTX 68.*									5	1	1	4.3
+NVIDIA GTX 69x							.*NVIDIA .*GTX 69.*									5	1	1	4.3
+NVIDIA GT 71x							.*NVIDIA .*GT *71.*									3	1	0	4.3
+NVIDIA GT 72x							.*NVIDIA .*GT *72.*									3	1	0	4.3
+NVIDIA GT 73x							.*NVIDIA .*GT *73.*									3	1	0	4.3
+NVIDIA GT 74x							.*NVIDIA .*GT *74.*									3	1	0	4.3
+NVIDIA GTX 75x							.*NVIDIA .*GTX *75.*								3	1	0	4.3
+NVIDIA GTX 76x							.*NVIDIA .*GTX *76.*								5	1	0	4.3
+NVIDIA GTX 77x							.*NVIDIA .*GTX *77.*								5	1	0	4.3
+NVIDIA GTX 78x							.*NVIDIA .*GTX *78.*								5	1	0	4.3
+NVIDIA GTX TITAN						.*NVIDIA .*GTX *TITAN.*								5	1	0	4.3
 NVIDIA C51								.*NVIDIA .*C51.*									0	1	1	2
 NVIDIA G72								.*NVIDIA .*G72.*									1	1	0	0
 NVIDIA G73								.*NVIDIA .*G73.*									1	1	0	0
 NVIDIA G84								.*NVIDIA .*G84.*									2	1	0	0
 NVIDIA G86								.*NVIDIA .*G86.*									3	1	0	0
 NVIDIA G92								.*NVIDIA .*G92.*									3	1	0	0
+NVIDIA GK106							.*NVIDIA .*GK106.*									5	1	0	4.3
 NVIDIA GeForce							.*GeForce 256.*										0	0	0	0
 NVIDIA GeForce 2						.*GeForce ?2 ?.*									0	1	1	1.5
+NVIDIA GeForce 3						.*GeForce ?3 ?.*						2	1	1	2.1
+NVIDIA GeForce 3 Ti						.*GeForce ?3 Ti.*						0	1	0	0
 NVIDIA GeForce 4						.*NVIDIA .*GeForce ?4.*								0	1	1	1.5
+NVIDIA GeForce 4 Go						.*NVIDIA .*GeForce ?4.*Go.*				0	1	0	0
+NVIDIA GeForce 4 MX						.*NVIDIA .*GeForce ?4 MX.*				0	1	0	0
+NVIDIA GeForce 4 PCX					.*NVIDIA .*GeForce ?4 PCX.*				0	1	0	0
+NVIDIA GeForce 4 Ti						.*NVIDIA .*GeForce ?4 Ti.*				0	1	0	0
 NVIDIA GeForce 6100						.*NVIDIA .*GeForce 61.*								3	1	1	4.2
 NVIDIA GeForce 6200						.*NVIDIA .*GeForce 62.*								0	1	1	2.1
 NVIDIA GeForce 6500						.*NVIDIA .*GeForce 65.*								1	1	1	2.1
@@ -486,8 +612,6 @@ NVIDIA GeForce Go 7900					.*NVIDIA .*GeForce Go 79.*							1	1	1	2.1
 NVIDIA D9M								.*NVIDIA .*D9M.*									1	1	0	0
 NVIDIA G94								.*NVIDIA .*G94.*									3	1	0	0
 NVIDIA GeForce Go 6						.*GeForce Go 6.*									1	1	0	0
-NVIDIA ION 2							.*NVIDIA .*ION 2.*									2	1	0	0
-NVIDIA ION 								.*NVIDIA Corporation.*ION.*							2	1	1	3.3
 NVIDIA NB8M								.*NVIDIA .*NB8M.*									1	1	0	0
 NVIDIA NB8P								.*NVIDIA .*NB8P.*									2	1	0	0
 NVIDIA NB9E								.*NVIDIA .*NB9E.*									3	1	0	0
@@ -495,7 +619,9 @@ NVIDIA NB9M								.*NVIDIA .*NB9M.*									1	1	0	0
 NVIDIA NB9P								.*NVIDIA .*NB9P.*									2	1	0	0
 NVIDIA N10								.*NVIDIA .*N10.*									1	1	0	2.1
 NVIDIA GeForce PCX						.*GeForce PCX.*										0	1	0	1.5
-NVIDIA Generic							.*NVIDIA .*Unknown.*								0	0	0	2.1
+NVIDIA PCI								.*NVIDIA PCI[ ]*								0	0	0	2.1
+NVIDIA Generic							.*NVIDIA Generic.*								0	0	0	2.1
+NVIDIA Generic Unknown					.*NVIDIA .*Unknown.*								0	0	0	2.1
 NVIDIA NV17								.*NVIDIA .*NV17.*									0	1	0	0
 NVIDIA NV34								.*NVIDIA .*NV34.*									0	1	0	0
 NVIDIA NV35								.*NVIDIA .*NV35.*									0	1	0	0
@@ -513,45 +639,14 @@ NVIDIA MCP77							.*NVIDIA .*MCP77.*									1	1	0	0
 NVIDIA MCP78							.*NVIDIA .*MCP78.*									1	1	0	0
 NVIDIA MCP79							.*NVIDIA .*MCP79.*									1	1	0	0
 NVIDIA MCP7A							.*NVIDIA .*MCP7A.*									1	1	0	0
-NVIDIA Quadro2							.*Quadro2.*											0	1	0	1.5
-NVIDIA Quadro 1000M						.*Quadro.* (K1|1)00[0-9]M.*							2	1	0	4.2
-NVIDIA Quadro 2000 M/D					.*Quadro.* (K2|2)000.*								3	1	0	4.2
-NVIDIA Quadro 3000M						.*Quadro.* (K3|3)00[0-9]M.*							3	1	0	4.2
-NVIDIA Quadro 4000M						.*Quadro.* (K4|4)00[0-9]M.*							3	1	0	4.2
-NVIDIA Quadro 4000						.*Quadro 4000.*										3	1	0	4.2
-NVIDIA Quadro 50x0 M					.*Quadro.* 50.0.*									3	1	0	4.2
-NVIDIA Quadro 6000						.*Quadro.* 6000.*									3	1	0	0
-NVIDIA Quadro 400						.*Quadro.* 400.*									2	1	0	3.3
-NVIDIA Quadro 600						.*Quadro.* 600.*									2	1	0	4.2
-NVIDIA Quadro4							.*Quadro4.*											0	1	0	1.5
-NVIDIA Quadro DCC						.*Quadro DCC.*										0	1	0	0
-NVIDIA Quadro CX						.*Quadro.*CX.*										3	1	0	0
-NVIDIA Quadro FX 770M					.*Quadro.*FX 77[0-9]M.*								2	1	0	3.3
-NVIDIA Quadro FX 1500M					.*Quadro.*FX 150[0-9]M.*							1	1	0	2.1
-NVIDIA Quadro FX 1600M					.*Quadro.*FX 160[0-9]M.*							2	1	0	3.3
-NVIDIA Quadro FX 2500M					.*Quadro.*FX 250[0-9]M.*							2	1	0	2.1
-NVIDIA Quadro FX 2700M					.*Quadro.*FX 270[0-9]M.*							3	1	0	3.3
-NVIDIA Quadro FX 2800M					.*Quadro.*FX 280[0-9]M.*							3	1	0	3.3
-NVIDIA Quadro FX 3500					.*Quadro.*FX 3500.*									2	1	0	2.1
-NVIDIA Quadro FX 3600					.*Quadro.*FX 3600.*									3	1	0	3.3
-NVIDIA Quadro FX 3700					.*Quadro.*FX 3700.*									3	1	0	3.3
-NVIDIA Quadro FX 3800					.*Quadro.*FX 3800.*									3	1	0	3.3
-NVIDIA Quadro FX 4500					.*Quadro.*FX 45.*									3	1	0	2.1
-NVIDIA Quadro FX 880M					.*Quadro.*FX 88[0-9]M.*								3	1	0	3.3
-NVIDIA Quadro FX 4800					.*NVIDIA .*Quadro FX 4800.*							3	1	0	3.1
-NVIDIA Quadro FX						.*Quadro FX.*										1	1	0	3.3
-NVIDIA Quadro NVS 1xxM					.*Quadro NVS 1.[05]M.*								0	1	1	3.3
-NVIDIA Quadro NVS 300M					.*NVIDIA .*NVS 30[0-9]M.*							2	1	0	0
-NVIDIA Quadro NVS 320M					.*NVIDIA .*NVS 32[0-9]M.*							2	1	0	0
-NVIDIA Quadro NVS 2100M					.*NVIDIA .*NVS 210[0-9]M.*							2	1	0	3.3
-NVIDIA Quadro NVS 3100M					.*NVIDIA .*NVS 310[0-9]M.*							2	1	0	3.3
-NVIDIA Quadro NVS 4200M					.*NVIDIA .*NVS 420[0-9]M.*							2	1	0	4.2
-NVIDIA Quadro NVS 5100M					.*NVIDIA .*NVS 510[0-9]M.*							2	1	0	0
-NVIDIA Quadro NVS						.*NVIDIA .*NVS										0	1	0	4.2
 NVIDIA Corporation N12P					.*NVIDIA .*N12P.*									1	1	1	4.1
 NVIDIA Corporation N11M					.*NVIDIA .*N11M.*									2	1	0	3.1
 NVIDIA RIVA TNT							.*RIVA TNT.*										0	0	0	1.5
-S3										.*S3 Graphics.*										0	0	1	1.4
+NVIDIA GRID								.*NVIDIA .*GRID.*									0	0	0	1.5
+NVIDIA ION 2							.*NVIDIA .* *[I][O][N] 2.*							2	1	0	0
+NVIDIA ION a							.*NVIDIA .*[I][O][N]$							2	1	1	3.3
+NVIDIA ION b							.*NVIDIA .*(Corporation) [I][O][N].*				2	1	1	3.3
+S3										.*S3 *(Graphics)*.*									0	0	1	1.4
 SiS										SiS.*												0	0	1	1.5
 Trident									Trident.*											0	0	0	0
 Tungsten Graphics						Tungsten.*											0	0	0	0
@@ -559,5 +654,9 @@ XGI										XGI.*												0	0	0	0
 VIA										VIA.*												0	0	0	0
 Apple Generic							Apple.*Generic.*									0	0	0	0
 Apple Software Renderer					Apple.*Software Renderer.*							0	0	0	0
+Oracle									VirtualBox.*										0	1	1	2.1
 Humper									Humper.*											0	1	1	2.1
 PowerVR SGX545							.*PowerVR SGX.*										1	1	1	3
+ATI GeForce Lulz						.*ATI.*GeForce.*									0	0	0	0
+
+
diff --git a/indra/newview/installers/windows/installer_template.nsi b/indra/newview/installers/windows/installer_template.nsi
index 8a6114f0d5736c8c0bcf3e0eac16246d00cb0145..dd316cdbdf420ca77d9947d5baa8fd9d10a7c8c0 100755
--- a/indra/newview/installers/windows/installer_template.nsi
+++ b/indra/newview/installers/windows/installer_template.nsi
@@ -72,16 +72,8 @@ LangString LanguageCode ${LANG_RUSSIAN}  "ru"
 LangString LanguageCode ${LANG_TURKISH}  "tr"
 LangString LanguageCode ${LANG_TRADCHINESE}  "zh"
 
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-;; Tweak for different servers/builds (this placeholder is replaced by viewer_manifest.py)
-;; For example:
-;; !define INSTFLAGS "%(flags)s"
-;; !define INSTNAME   "SecondLife%(grid_caps)s"
-;; !define SHORTCUT   "Second Life (%(grid_caps)s)"
-;; !define URLNAME   "secondlife%(grid)s"
-;; !define UNINSTALL_SETTINGS 1
-
-%%GRID_VARS%%
+;; this placeholder is replaced by viewer_manifest.py
+%%INST_VARS%%
 
 Name ${INSTNAME}
 
@@ -109,7 +101,6 @@ Page instfiles
 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
 Var INSTPROG
 Var INSTEXE
-Var INSTFLAGS
 Var INSTSHORTCUT
 Var COMMANDLINE         ; command line passed to this installer, set in .onInit
 Var SHORTCUT_LANG_PARAM ; "--set InstallLanguage de", passes language to viewer
@@ -147,7 +138,7 @@ label_ask_launch:
         
 label_launch:
 	# Assumes SetOutPath $INSTDIR
-	Exec '"$INSTDIR\$INSTEXE" $INSTFLAGS $SHORTCUT_LANG_PARAM'
+	Exec '"$INSTDIR\$INSTEXE" $SHORTCUT_LANG_PARAM'
 label_no_launch:
 	Pop $R0
 FunctionEnd
@@ -720,7 +711,6 @@ ShowUninstDetails show
 Section Uninstall
 
 ; Start with some default values.
-StrCpy $INSTFLAGS ""
 StrCpy $INSTPROG "${INSTNAME}"
 StrCpy $INSTEXE "${INSTEXE}"
 StrCpy $INSTSHORTCUT "${SHORTCUT}"
@@ -919,7 +909,6 @@ Section ""						; (default section)
 SetShellVarContext all			; install for all users (if you change this, change it in the uninstall as well)
 
 ; Start with some default values.
-StrCpy $INSTFLAGS "${INSTFLAGS}"
 StrCpy $INSTPROG "${INSTNAME}"
 StrCpy $INSTEXE "${INSTEXE}"
 StrCpy $INSTSHORTCUT "${SHORTCUT}"
@@ -966,7 +955,7 @@ StrCpy $SHORTCUT_LANG_PARAM "--set InstallLanguage $(LanguageCode)"
 CreateDirectory	"$SMPROGRAMS\$INSTSHORTCUT"
 SetOutPath "$INSTDIR"
 CreateShortCut	"$SMPROGRAMS\$INSTSHORTCUT\$INSTSHORTCUT.lnk" \
-				"$INSTDIR\$INSTEXE" "$INSTFLAGS $SHORTCUT_LANG_PARAM"
+				"$INSTDIR\$INSTEXE" "$SHORTCUT_LANG_PARAM"
 
 
 WriteINIStr		"$SMPROGRAMS\$INSTSHORTCUT\SL Create Account.url" \
@@ -985,9 +974,9 @@ CreateShortCut	"$SMPROGRAMS\$INSTSHORTCUT\Uninstall $INSTSHORTCUT.lnk" \
 ; Other shortcuts
 SetOutPath "$INSTDIR"
 CreateShortCut "$DESKTOP\$INSTSHORTCUT.lnk" \
-        "$INSTDIR\$INSTEXE" "$INSTFLAGS $SHORTCUT_LANG_PARAM"
+        "$INSTDIR\$INSTEXE" "$SHORTCUT_LANG_PARAM"
 CreateShortCut "$INSTDIR\$INSTSHORTCUT.lnk" \
-        "$INSTDIR\$INSTEXE" "$INSTFLAGS $SHORTCUT_LANG_PARAM"
+        "$INSTDIR\$INSTEXE" "$SHORTCUT_LANG_PARAM"
 CreateShortCut "$INSTDIR\Uninstall $INSTSHORTCUT.lnk" \
 				'"$INSTDIR\uninst.exe"' ''
 
@@ -996,7 +985,6 @@ CreateShortCut "$INSTDIR\Uninstall $INSTSHORTCUT.lnk" \
 ; Write registry
 WriteRegStr HKEY_LOCAL_MACHINE "SOFTWARE\Linden Research, Inc.\$INSTPROG" "" "$INSTDIR"
 WriteRegStr HKEY_LOCAL_MACHINE "SOFTWARE\Linden Research, Inc.\$INSTPROG" "Version" "${VERSION_LONG}"
-WriteRegStr HKEY_LOCAL_MACHINE "SOFTWARE\Linden Research, Inc.\$INSTPROG" "Flags" "$INSTFLAGS"
 WriteRegStr HKEY_LOCAL_MACHINE "SOFTWARE\Linden Research, Inc.\$INSTPROG" "Shortcut" "$INSTSHORTCUT"
 WriteRegStr HKEY_LOCAL_MACHINE "SOFTWARE\Linden Research, Inc.\$INSTPROG" "Exe" "$INSTEXE"
 WriteRegStr HKEY_LOCAL_MACHINE "Software\Microsoft\Windows\CurrentVersion\Uninstall\$INSTPROG" "DisplayName" "$INSTPROG (remove only)"
@@ -1009,13 +997,13 @@ WriteRegStr HKEY_CLASSES_ROOT "${URLNAME}" "URL Protocol" ""
 WriteRegStr HKEY_CLASSES_ROOT "${URLNAME}\DefaultIcon" "" '"$INSTDIR\$INSTEXE"'
 ;; URL param must be last item passed to viewer, it ignores subsequent params
 ;; to avoid parameter injection attacks.
-WriteRegExpandStr HKEY_CLASSES_ROOT "${URLNAME}\shell\open\command" "" '"$INSTDIR\$INSTEXE" $INSTFLAGS -url "%1"'
+WriteRegExpandStr HKEY_CLASSES_ROOT "${URLNAME}\shell\open\command" "" '"$INSTDIR\$INSTEXE" -url "%1"'
 WriteRegStr HKEY_CLASSES_ROOT "x-grid-location-info"(default)" "URL:Second Life"
 WriteRegStr HKEY_CLASSES_ROOT "x-grid-location-info" "URL Protocol" ""
 WriteRegStr HKEY_CLASSES_ROOT "x-grid-location-info\DefaultIcon" "" '"$INSTDIR\$INSTEXE"'
 ;; URL param must be last item passed to viewer, it ignores subsequent params
 ;; to avoid parameter injection attacks.
-WriteRegExpandStr HKEY_CLASSES_ROOT "x-grid-location-info\shell\open\command" "" '"$INSTDIR\$INSTEXE" $INSTFLAGS -url "%1"'
+WriteRegExpandStr HKEY_CLASSES_ROOT "x-grid-location-info\shell\open\command" "" '"$INSTDIR\$INSTEXE" -url "%1"'
 
 ; write out uninstaller
 WriteUninstaller "$INSTDIR\uninst.exe"
diff --git a/indra/newview/llagent.cpp b/indra/newview/llagent.cpp
index 49f77e6c347ac70e0ead94e10fc27481ed225cd0..79da9e5873112b5e5951070f92ee42bcaf7359ac 100755
--- a/indra/newview/llagent.cpp
+++ b/indra/newview/llagent.cpp
@@ -1092,10 +1092,18 @@ const LLVector3d &LLAgent::getPositionGlobal() const
 //-----------------------------------------------------------------------------
 const LLVector3 &LLAgent::getPositionAgent()
 {
-	if (isAgentAvatarValid() && !gAgentAvatarp->mDrawable.isNull())
+	if (isAgentAvatarValid())
+	{
+		if(gAgentAvatarp->mDrawable.isNull())
+		{
+			mFrameAgent.setOrigin(gAgentAvatarp->getPositionAgent());
+		}
+		else
 	{
 		mFrameAgent.setOrigin(gAgentAvatarp->getRenderPosition());	
 	}
+	}
+
 
 	return mFrameAgent.getOrigin();
 }
diff --git a/indra/newview/llagentwearables.cpp b/indra/newview/llagentwearables.cpp
index 1edbbe2a2e8cf4ca6f49a7a817b99796fc5d7f96..fa810aac76bb6950fd5a3359cf794abe7f1ad5d7 100755
--- a/indra/newview/llagentwearables.cpp
+++ b/indra/newview/llagentwearables.cpp
@@ -1538,7 +1538,11 @@ void LLAgentWearables::userUpdateAttachments(LLInventoryModel::item_array_t& obj
 	std::set<LLUUID> requested_item_ids;
 	std::set<LLUUID> current_item_ids;
 	for (S32 i=0; i<obj_item_array.count(); i++)
-		requested_item_ids.insert(obj_item_array[i].get()->getLinkedUUID());
+	{
+		const LLUUID & requested_id = obj_item_array[i].get()->getLinkedUUID();
+		//llinfos << "Requested attachment id " << requested_id << llendl;
+		requested_item_ids.insert(requested_id);
+	}
 
 	// Build up list of objects to be removed and items currently attached.
 	llvo_vec_t objects_to_remove;
@@ -1555,17 +1559,28 @@ void LLAgentWearables::userUpdateAttachments(LLInventoryModel::item_array_t& obj
 			if (objectp)
 			{
 				LLUUID object_item_id = objectp->getAttachmentItemID();
+
+				bool remove_attachment = true;
 				if (requested_item_ids.find(object_item_id) != requested_item_ids.end())
-				{
-					// Object currently worn, was requested.
+				{	// Object currently worn, was requested to keep it
 					// Flag as currently worn so we won't have to add it again.
-					current_item_ids.insert(object_item_id);
+					remove_attachment = false;
 				}
-				else
+				else if (objectp->isTempAttachment())
+				{	// Check if we should keep this temp attachment
+					remove_attachment = LLAppearanceMgr::instance().shouldRemoveTempAttachment(objectp->getID());
+				}
+
+				if (remove_attachment)
 				{
-					// object currently worn, not requested.
+					// llinfos << "found object to remove, id " << objectp->getID() << ", item " << objectp->getAttachmentItemID() << llendl;
 					objects_to_remove.push_back(objectp);
 				}
+				else
+				{
+					// llinfos << "found object to keep, id " << objectp->getID() << ", item " << objectp->getAttachmentItemID() << llendl;
+					current_item_ids.insert(object_item_id);
+				}
 			}
 		}
 	}
diff --git a/indra/newview/llappearancemgr.cpp b/indra/newview/llappearancemgr.cpp
index fd9236c8b384cf6403edb779c320396cc1a80e04..da1609297e434fe036d0f6a135786b7f4722ebe9 100755
--- a/indra/newview/llappearancemgr.cpp
+++ b/indra/newview/llappearancemgr.cpp
@@ -3415,21 +3415,50 @@ void LLAppearanceMgr::removeItemsFromAvatar(const uuid_vec_t& ids_to_remove)
 		llwarns << "called with empty list, nothing to do" << llendl;
 	}
 	for (uuid_vec_t::const_iterator it = ids_to_remove.begin(); it != ids_to_remove.end(); ++it)
-			{
+	{
 		const LLUUID& id_to_remove = *it;
 		const LLUUID& linked_item_id = gInventory.getLinkedItemID(id_to_remove);
 		removeCOFItemLinks(linked_item_id);
-			}
-	updateAppearanceFromCOF();
+		addDoomedTempAttachment(linked_item_id);
 	}
+	updateAppearanceFromCOF();
+}
 
 void LLAppearanceMgr::removeItemFromAvatar(const LLUUID& id_to_remove)
 {
 	LLUUID linked_item_id = gInventory.getLinkedItemID(id_to_remove);
 	removeCOFItemLinks(linked_item_id);
+	addDoomedTempAttachment(linked_item_id);
 	updateAppearanceFromCOF();
 }
 
+
+// Adds the given item ID to mDoomedTempAttachmentIDs iff it's a temp attachment
+void LLAppearanceMgr::addDoomedTempAttachment(const LLUUID& id_to_remove)
+{
+	LLViewerObject * attachmentp = gAgentAvatarp->findAttachmentByID(id_to_remove);
+	if (attachmentp &&
+		attachmentp->isTempAttachment())
+	{	// If this is a temp attachment and we want to remove it, record the ID 
+		// so it will be deleted when attachments are synced up with COF
+		mDoomedTempAttachmentIDs.insert(id_to_remove);
+		//llinfos << "Will remove temp attachment id " << id_to_remove << llendl;
+	}
+}
+
+// Find AND REMOVES the given UUID from mDoomedTempAttachmentIDs
+bool LLAppearanceMgr::shouldRemoveTempAttachment(const LLUUID& item_id)
+{
+	doomed_temp_attachments_t::iterator iter = mDoomedTempAttachmentIDs.find(item_id);
+	if (iter != mDoomedTempAttachmentIDs.end())
+	{
+		mDoomedTempAttachmentIDs.erase(iter);
+		return true;
+	}
+	return false;
+}
+
+
 bool LLAppearanceMgr::moveWearable(LLViewerInventoryItem* item, bool closer_to_body)
 {
 	if (!item || !item->isWearableType()) return false;
diff --git a/indra/newview/llappearancemgr.h b/indra/newview/llappearancemgr.h
index 46252afbde14799662de45582dbf63150c1f819d..5ec80f1cf086d17956ca43e1a3e11571267b9c53 100755
--- a/indra/newview/llappearancemgr.h
+++ b/indra/newview/llappearancemgr.h
@@ -142,6 +142,9 @@ class LLAppearanceMgr: public LLSingleton<LLAppearanceMgr>
 	void removeAllClothesFromAvatar();
 	void removeAllAttachmentsFromAvatar();
 
+	// Special handling of temp attachments, which are not in the COF
+	bool shouldRemoveTempAttachment(const LLUUID& item_id);
+
 	//has the current outfit changed since it was loaded?
 	bool isOutfitDirty() { return mOutfitIsDirty; }
 
@@ -239,6 +242,12 @@ class LLAppearanceMgr: public LLSingleton<LLAppearanceMgr>
 
 	std::auto_ptr<LLOutfitUnLockTimer> mUnlockOutfitTimer;
 
+	// Set of temp attachment UUIDs that should be removed
+	typedef std::set<LLUUID> doomed_temp_attachments_t;
+	doomed_temp_attachments_t	mDoomedTempAttachmentIDs;
+
+	void addDoomedTempAttachment(const LLUUID& id_to_remove);
+
 	//////////////////////////////////////////////////////////////////////////////////
 	// Item-specific convenience functions 
 public:
diff --git a/indra/newview/llautoreplace.cpp b/indra/newview/llautoreplace.cpp
index 1d72397cbc1d4d22c215b29c57bee20348876659..dd9354fe3a8b7d8f31a62ef83024a2fab509fafd 100755
--- a/indra/newview/llautoreplace.cpp
+++ b/indra/newview/llautoreplace.cpp
@@ -39,7 +39,7 @@ void LLAutoReplace::autoreplaceCallback(S32& replacement_start, S32& replacement
 	replacement_length = 0;
 	replacement_string.clear();
 
-	static LLCachedControl<bool> perform_autoreplace(gSavedSettings, "AutoReplace");
+	static LLCachedControl<bool> perform_autoreplace(gSavedSettings, "AutoReplace", 0);
 	if (perform_autoreplace)
 	{
 		S32 word_end = cursor_pos - 1;
@@ -679,7 +679,7 @@ bool LLAutoReplaceSettings::decreaseListPriority(std::string listName)
 std::string LLAutoReplaceSettings::replaceWord(const std::string currentWord)
 {
 	std::string returnedWord = currentWord; // in case no replacement is found
-	static LLCachedControl<bool> autoreplace_enabled(gSavedSettings, "AutoReplace");
+	static LLCachedControl<bool> autoreplace_enabled(gSavedSettings, "AutoReplace", false);
 	if ( autoreplace_enabled )
 	{
 		LL_DEBUGS("AutoReplace")<<"checking '"<<currentWord<<"'"<< LL_ENDL;
diff --git a/indra/newview/llavatarrenderinfoaccountant.cpp b/indra/newview/llavatarrenderinfoaccountant.cpp
index 9e3225a2649dfbe2dea1af3c73f4930833368386..77d734cbfe3ee73f2ef099881b26abf69a8ace8b 100644
--- a/indra/newview/llavatarrenderinfoaccountant.cpp
+++ b/indra/newview/llavatarrenderinfoaccountant.cpp
@@ -336,7 +336,7 @@ void LLAvatarRenderInfoAccountant::idle()
 		sRenderInfoReportTimer.resetWithExpiry(SECS_BETWEEN_REGION_SCANS);
 	}
 
-	static LLCachedControl<U32> render_auto_mute_functions(gSavedSettings, "RenderAutoMuteFunctions");
+	static LLCachedControl<U32> render_auto_mute_functions(gSavedSettings, "RenderAutoMuteFunctions", 0);
 	static U32 prev_render_auto_mute_functions = (U32) -1;
 	if (prev_render_auto_mute_functions != render_auto_mute_functions)
 	{
diff --git a/indra/newview/llblocklist.cpp b/indra/newview/llblocklist.cpp
index 066cb71677a810488557f1594ff32806256c66cd..3849fbeb54b33fd0344b8827518ec1c7077286c7 100755
--- a/indra/newview/llblocklist.cpp
+++ b/indra/newview/llblocklist.cpp
@@ -41,10 +41,14 @@ static const LLBlockListNameTypeComparator	NAME_TYPE_COMPARATOR;
 LLBlockList::LLBlockList(const Params& p)
 :	LLFlatListViewEx(p),
  	mSelectedItem(NULL),
- 	mDirty(true)
+ 	mDirty(true),
+	mShouldAddAll(true),
+	mActionType(NONE),
+	mMuteListSize(0)
 {
 
 	LLMuteList::getInstance()->addObserver(this);
+	mMuteListSize = LLMuteList::getInstance()->getMutes().size();
 
 	// Set up context menu.
 	LLUICtrl::CommitCallbackRegistry::ScopedRegistrar registrar;
@@ -73,6 +77,41 @@ LLBlockList::~LLBlockList()
 	LLMuteList::getInstance()->removeObserver(this);
 }
 
+void LLBlockList::createList()
+{
+	std::vector<LLMute> mutes = LLMuteList::instance().getMutes();
+	std::vector<LLMute>::const_iterator mute_it = mutes.begin();
+
+	for (; mute_it != mutes.end(); ++mute_it)
+	{
+		addNewItem(&*mute_it);
+	}
+}
+
+BlockListActionType LLBlockList::getCurrentMuteListActionType()
+{
+	BlockListActionType type = NONE;
+	U32 curSize = LLMuteList::getInstance()->getMutes().size();
+	if( curSize > mMuteListSize)
+		type = ADD;
+	else if(curSize < mMuteListSize)
+		type = REMOVE;
+
+	return type;
+}
+
+void LLBlockList::onChangeDetailed(const LLMute &mute)
+{
+	mActionType = getCurrentMuteListActionType();
+
+	mCurItemId = mute.mID;
+	mCurItemName = mute.mName;
+	mCurItemType = mute.mType;
+	mCurItemFlags = mute.mFlags;
+
+	refresh();
+}
+
 BOOL LLBlockList::handleRightMouseDown(S32 x, S32 y, MASK mask)
 {
 	BOOL handled = LLUICtrl::handleRightMouseDown(x, y, mask);
@@ -88,6 +127,16 @@ BOOL LLBlockList::handleRightMouseDown(S32 x, S32 y, MASK mask)
 	return handled;
 }
 
+void LLBlockList::removeListItem(const LLMute* mute)
+{
+	removeItemByUUID(mute->mID);
+}
+
+void LLBlockList::hideListItem(LLBlockedListItem* item, bool show)
+{
+	item->setVisible(show);
+}
+
 void LLBlockList::setNameFilter(const std::string& filter)
 {
 	std::string filter_upper = filter;
@@ -136,28 +185,56 @@ void LLBlockList::refresh()
 	bool have_filter = !mNameFilter.empty();
 
 	// save selection to restore it after list rebuilt
-	LLUUID selected = getSelectedUUID();
+	LLUUID selected = getSelectedUUID(), next_selected;
 
-	// calling refresh may be initiated by removing currently selected item
-	// so select next item and save the selection to restore it after list rebuilt
+	if(mShouldAddAll)	// creating list of blockers
+	{
+		clear();
+		createList();
+		mShouldAddAll = false;
+	}
+	else
+	{
+		// handle remove/add functionality
+		LLMute mute(mCurItemId, mCurItemName, mCurItemType, mCurItemFlags);
+		if(mActionType == ADD)
+		{
+			addNewItem(&mute);
+		}
+		else if(mActionType == REMOVE)
+		{
+			if(selected == mute.mID)
+			{
+				// we are going to remove currently selected item, so select next item and save the selection to restore it
 	if (!selectNextItemPair(false, true))
 	{
 		selectNextItemPair(true, true);
 	}
-	LLUUID next_selected = getSelectedUUID();
-
-	clear();
-
-	std::vector<LLMute> mutes = LLMuteList::instance().getMutes();
-	std::vector<LLMute>::const_iterator mute_it = mutes.begin();
+				next_selected = getSelectedUUID();
+			}
+			removeListItem(&mute);
+		}
+		mActionType = NONE;
+	}
 
-	for (; mute_it != mutes.end(); ++mute_it)
+	// handle filter functionality
+	if(have_filter || (!have_filter && !mPrevNameFilter.empty()))
 	{
-		if (have_filter && !findInsensitive(mute_it->mName, mNameFilter))
-			continue;
+		// we should update visibility of our items if previous filter was not empty
+		std::vector < LLPanel* > allItems;
+		getItems(allItems);
+		std::vector < LLPanel* >::iterator it = allItems.begin();
 
-		addNewItem(&*mute_it);
+		for(; it != allItems.end() ; ++it)
+		{
+			LLBlockedListItem * curItem = dynamic_cast<LLBlockedListItem *> (*it);
+			if(curItem)
+	{
+				hideListItem(curItem, findInsensitive(curItem->getName(), mNameFilter));
+			}
+		}
 	}
+	mPrevNameFilter = mNameFilter;
 
 	if (getItemPair(selected))
 	{
@@ -169,6 +246,7 @@ void LLBlockList::refresh()
 		// previously selected item was removed, so select next item
 		selectItemPair(getItemPair(next_selected), true);
 	}
+	mMuteListSize = LLMuteList::getInstance()->getMutes().size();
 
 	// Sort the list.
 	sort();
diff --git a/indra/newview/llblocklist.h b/indra/newview/llblocklist.h
index 1a215710f463ade3bf5d1f6edee32e808e4761dd..bac79f869e3c068d4fc084e4cbb373a9f534a5b3 100755
--- a/indra/newview/llblocklist.h
+++ b/indra/newview/llblocklist.h
@@ -34,6 +34,8 @@
 class LLBlockedListItem;
 class LLMute;
 
+enum BlockListActionType {NONE, ADD, REMOVE};
+
 /**
  * List of blocked avatars and objects.
  * This list represents contents of the LLMuteList.
@@ -56,7 +58,8 @@ class LLBlockList: public LLFlatListViewEx, public LLMuteListObserver
 	LLToggleableMenu*	getContextMenu() const { return mContextMenu.get(); }
 	LLBlockedListItem*	getBlockedItem() const;
 
-	virtual void onChange() { refresh(); }
+	virtual void onChange() { }
+	virtual void onChangeDetailed(const LLMute& );
 	virtual void draw();
 
 	void setNameFilter(const std::string& filter);
@@ -67,18 +70,32 @@ class LLBlockList: public LLFlatListViewEx, public LLMuteListObserver
 private:
 
 	void addNewItem(const LLMute* mute);
+	void removeListItem(const LLMute* mute);
+	void hideListItem(LLBlockedListItem* item, bool show);
 	void setDirty(bool dirty = true) { mDirty = dirty; }
 	bool findInsensitive(std::string haystack, const std::string& needle_upper);
 
 	bool isActionEnabled(const LLSD& userdata);
 	void onCustomAction (const LLSD& userdata);
+	void createList();
 
+	BlockListActionType getCurrentMuteListActionType();
 
 	LLHandle<LLToggleableMenu>	mContextMenu;
 
 	LLBlockedListItem*			mSelectedItem;
 	std::string 				mNameFilter;
 	bool 						mDirty;
+	bool						mShouldAddAll;
+	BlockListActionType			mActionType;
+	U32							mMuteListSize;
+
+	// This data is used to save information about item that currently changed(added or removed) 
+	LLUUID						mCurItemId;
+	std::string					mCurItemName;
+	LLMute::EType 				mCurItemType;
+	U32							mCurItemFlags;
+	std::string					mPrevNameFilter;
 
 };
 
diff --git a/indra/newview/llchathistory.cpp b/indra/newview/llchathistory.cpp
index 43a733f918725afe2d2f9634f43d517adbc40ed3..2eb4074c97bac596dfd1af1ff165d48fa32dd086 100755
--- a/indra/newview/llchathistory.cpp
+++ b/indra/newview/llchathistory.cpp
@@ -60,6 +60,8 @@
 #include "llstring.h"
 #include "llurlaction.h"
 #include "llviewercontrol.h"
+#include "llviewerobjectlist.h"
+#include "llmutelist.h"
 
 static LLDefaultChildRegistry::Register<LLChatHistory> r("chat_history");
 
@@ -181,6 +183,18 @@ class LLChatHistoryHeader: public LLPanel
 		{
 			LLAvatarActions::startIM(getAvatarId());
 		}
+		else if (level == "teleport")
+		{
+			LLAvatarActions::offerTeleport(getAvatarId());
+		}
+		else if (level == "voice_call")
+		{
+			LLAvatarActions::startCall(getAvatarId());
+		}
+		else if (level == "chat_history")
+		{
+			LLAvatarActions::viewChatHistory(getAvatarId());
+		}
 		else if (level == "add")
 		{
 			LLAvatarActions::requestFriendshipDialog(getAvatarId(), mFrom);
@@ -189,13 +203,75 @@ class LLChatHistoryHeader: public LLPanel
 		{
 			LLAvatarActions::removeFriendDialog(getAvatarId());
 		}
+		else if (level == "invite_to_group")
+		{
+			LLAvatarActions::inviteToGroup(getAvatarId());
+		}
+		else if (level == "zoom_in")
+		{
+			handle_zoom_to_object(getAvatarId());
+		}
+		else if (level == "map")
+		{
+			LLAvatarActions::showOnMap(getAvatarId());
+		}
+		else if (level == "share")
+		{
+			LLAvatarActions::share(getAvatarId());
+		}
+		else if (level == "pay")
+		{
+			LLAvatarActions::pay(getAvatarId());
+		}
+		else if(level == "block_unblock")
+		{
+			mute(getAvatarId(), LLMute::flagVoiceChat);
+		}
+		else if(level == "mute_unmute")
+		{
+			mute(getAvatarId(), LLMute::flagTextChat);
+		}
+	}
+
+	bool onAvatarIconContextMenuItemChecked(const LLSD& userdata)
+	{
+		std::string level = userdata.asString();
+
+		if (level == "is_blocked")
+		{
+			return LLMuteList::getInstance()->isMuted(getAvatarId(), LLMute::flagVoiceChat);
+		}
+		if (level == "is_muted")
+		{
+			return LLMuteList::getInstance()->isMuted(getAvatarId(), LLMute::flagTextChat);
+		}
+		return false;
+	}
+
+	void mute(const LLUUID& participant_id, U32 flags)
+	{
+		BOOL is_muted = LLMuteList::getInstance()->isMuted(participant_id, flags);
+		std::string name;
+		gCacheName->getFullName(participant_id, name);
+		LLMute mute(participant_id, name, LLMute::AGENT);
+
+		if (!is_muted)
+		{
+			LLMuteList::getInstance()->add(mute, flags);
+		}
+		else
+		{
+			LLMuteList::getInstance()->remove(mute, flags);
+		}
 	}
 
 	BOOL postBuild()
 	{
 		LLUICtrl::CommitCallbackRegistry::ScopedRegistrar registrar;
+		LLUICtrl::EnableCallbackRegistry::ScopedRegistrar registrar_enable;
 
 		registrar.add("AvatarIcon.Action", boost::bind(&LLChatHistoryHeader::onAvatarIconContextMenuItemClicked, this, _2));
+		registrar_enable.add("AvatarIcon.Check", boost::bind(&LLChatHistoryHeader::onAvatarIconContextMenuItemChecked, this, _2));
 		registrar.add("ObjectIcon.Action", boost::bind(&LLChatHistoryHeader::onObjectIconContextMenuItemClicked, this, _2));
 
 		LLMenuGL* menu = LLUICtrlFactory::getInstance()->createFromFile<LLMenuGL>("menu_avatar_icon.xml", gMenuHolder, LLViewerMenuHolderGL::child_registry_t::instance());
@@ -460,7 +536,7 @@ class LLChatHistoryHeader: public LLPanel
 
 		if(menu)
 		{
-			bool is_friend = LLAvatarTracker::instance().getBuddyInfo(mAvatarID) != NULL;
+			bool is_friend = LLAvatarActions::isFriend(mAvatarID);
 			
 			menu->setItemEnabled("Add Friend", !is_friend);
 			menu->setItemEnabled("Remove Friend", is_friend);
@@ -470,13 +546,34 @@ class LLChatHistoryHeader: public LLPanel
 				menu->setItemEnabled("Add Friend", false);
 				menu->setItemEnabled("Send IM", false);
 				menu->setItemEnabled("Remove Friend", false);
+				menu->setItemEnabled("Offer Teleport",false);
+				menu->setItemEnabled("Voice Call", false);
+				menu->setItemEnabled("Invite Group", false);
+				menu->setItemEnabled("Zoom In", false);
+				menu->setItemEnabled("Share", false);
+				menu->setItemEnabled("Pay", false);
+				menu->setItemEnabled("Block Unblock", false);
+				menu->setItemEnabled("Mute Text", false);
 			}
-
-			if (mSessionID == LLIMMgr::computeSessionID(IM_NOTHING_SPECIAL, mAvatarID))
+			else
+			{
+				LLUUID currentSessionID = LLIMMgr::computeSessionID(IM_NOTHING_SPECIAL, mAvatarID);
+				if (mSessionID == currentSessionID)
 			{
 				menu->setItemVisible("Send IM", false);
 			}
+				menu->setItemEnabled("Offer Teleport", LLAvatarActions::canOfferTeleport(mAvatarID));
+				menu->setItemEnabled("Voice Call", LLAvatarActions::canCall());
+
+				// We should only show 'Zoom in' item in a nearby chat
+				bool should_show_zoom = !LLIMModel::getInstance()->findIMSession(currentSessionID);
+				menu->setItemVisible("Zoom In", should_show_zoom && gObjectList.findObject(mAvatarID));	
+				menu->setItemEnabled("Block Unblock", LLAvatarActions::canBlock(mAvatarID));
+				menu->setItemEnabled("Mute Text", LLAvatarActions::canBlock(mAvatarID));
+			}
 
+			menu->setItemEnabled("Chat History", LLLogChat::isTranscriptExist(mAvatarID));
+			menu->setItemEnabled("Map", (LLAvatarTracker::instance().isBuddyOnline(mAvatarID) && is_agent_mappable(mAvatarID)) || gAgent.isGodlike() );
 			menu->buildDrawLabels();
 			menu->updateParent(LLMenuGL::sMenuContainer);
 			LLMenuGL::showPopup(this, menu, x, y);
@@ -968,6 +1065,22 @@ void LLChatHistory::appendMessage(const LLChat& chat, const LLSD &args, const LL
 	// notify processing
 	if (chat.mNotifId.notNull())
 	{
+		bool create_toast = true;
+		for (LLToastNotifyPanel::instance_iter ti(LLToastNotifyPanel::beginInstances())
+			, tend(LLToastNotifyPanel::endInstances()); ti != tend; ++ti)
+		{
+			LLToastNotifyPanel& panel = *ti;
+			LLIMToastNotifyPanel * imtoastp = dynamic_cast<LLIMToastNotifyPanel *>(&panel);
+			const std::string& notification_name = panel.getNotificationName();
+			if (notification_name == "OfferFriendship" && panel.isControlPanelEnabled() && imtoastp)
+			{
+				create_toast = false;
+				break;
+			}
+		}
+
+		if (create_toast)
+		{
 		LLNotificationPtr notification = LLNotificationsUtil::find(chat.mNotifId);
 		if (notification != NULL)
 		{
@@ -989,6 +1102,7 @@ void LLChatHistory::appendMessage(const LLChat& chat, const LLSD &args, const LL
 			mEditor->appendWidget(params, "\n", false);
 		}
 	}
+	}
 
 	// usual messages showing
 	else
diff --git a/indra/newview/llconversationview.cpp b/indra/newview/llconversationview.cpp
index 9faa12b2eeade59bba5d8d7797d4c19b318804bb..82d3fe74c00ef264b317f2d2aa69c536f07b8ba7 100644
--- a/indra/newview/llconversationview.cpp
+++ b/indra/newview/llconversationview.cpp
@@ -267,6 +267,23 @@ BOOL LLConversationViewSession::handleMouseDown( S32 x, S32 y, MASK mask )
     //This node (conversation) was selected and a child (participant) was not
     if(result && getRoot())
     {
+
+		if(getRoot()->getCurSelectedItem() == this)
+		{
+			LLConversationItem* item = dynamic_cast<LLConversationItem *>(getViewModelItem());
+			LLUUID session_id = item? item->getUUID() : LLUUID();
+
+			LLFloaterIMContainer *im_container = LLFloaterReg::getTypedInstance<LLFloaterIMContainer>("im_container");
+			if (im_container->isConversationsPaneCollapsed() && im_container->getSelectedSession() == session_id)
+			{
+				im_container->collapseMessagesPane(!im_container->isMessagesPaneCollapsed());
+			}
+			else
+			{
+				im_container->collapseMessagesPane(false);
+			}
+
+		}
 		selectConversationItem();
     }
 
@@ -318,7 +335,6 @@ void LLConversationViewSession::selectConversationItem()
 		LLFloaterIMContainer *im_container = LLFloaterReg::getTypedInstance<LLFloaterIMContainer>("im_container");
 		im_container->flashConversationItemWidget(session_id,false);
 		im_container->selectConversationPair(session_id, false);
-		im_container->collapseMessagesPane(false);
 	}
 }
 
diff --git a/indra/newview/lldrawpoolalpha.cpp b/indra/newview/lldrawpoolalpha.cpp
index 6c5d229dbab8af41f8950f2abbb88585c92f39c1..e27dc279f4e71745708b917e1e67aa36c2683b21 100755
--- a/indra/newview/lldrawpoolalpha.cpp
+++ b/indra/newview/lldrawpoolalpha.cpp
@@ -382,9 +382,7 @@ void LLDrawPoolAlpha::renderAlpha(U32 mask, S32 pass)
 			bool is_particle_or_hud_particle = group->mSpatialPartition->mPartitionType == LLViewerRegion::PARTITION_PARTICLE
 													  || group->mSpatialPartition->mPartitionType == LLViewerRegion::PARTITION_HUD_PARTICLE;
 
-			bool draw_glow_for_this_partition = mVertexShaderLevel > 0 && // no shaders = no glow.
-				// All particle systems seem to come off the wire with texture entries which claim that they glow.  This is probably a bug in the data.  Suppress.
-				!is_particle_or_hud_particle;
+			bool draw_glow_for_this_partition = mVertexShaderLevel > 0; // no shaders = no glow.
 
 			static LLFastTimer::DeclareTimer FTM_RENDER_ALPHA_GROUP_LOOP("Alpha Group");
 			LLFastTimer t(FTM_RENDER_ALPHA_GROUP_LOOP);
diff --git a/indra/newview/llface.cpp b/indra/newview/llface.cpp
index 369273bca6f20d345371412602f1ee267f9f8cdb..ae62be0ad010d88b2c44793b2c3399ede10f3f97 100755
--- a/indra/newview/llface.cpp
+++ b/indra/newview/llface.cpp
@@ -1386,7 +1386,7 @@ BOOL LLFace::getGeometryVolume(const LLVolume& volume,
 		}
 	}
 	
-	static LLCachedControl<bool> use_transform_feedback(gSavedSettings, "RenderUseTransformFeedback");
+	static LLCachedControl<bool> use_transform_feedback(gSavedSettings, "RenderUseTransformFeedback", false);
 
 #ifdef GL_TRANSFORM_FEEDBACK_BUFFER
 	if (use_transform_feedback &&
@@ -1526,7 +1526,6 @@ BOOL LLFace::getGeometryVolume(const LLVolume& volume,
 		}
 
 		glBindBufferARB(GL_TRANSFORM_FEEDBACK_BUFFER, 0);
-
 		gGL.popMatrix();
 
 		if (cur_shader)
diff --git a/indra/newview/llface.h b/indra/newview/llface.h
index 66b5f137401f38379169f7f8ba4d70e4f7b23e5f..c9037ce1eba8f91f8f670391d950d247a84e64cd 100755
--- a/indra/newview/llface.h
+++ b/indra/newview/llface.h
@@ -194,7 +194,8 @@ class LLFace
 
 	void		setSize(S32 numVertices, S32 num_indices = 0, bool align = false);
 	
-	BOOL		genVolumeBBoxes(const LLVolume &volume, S32 f,const LLMatrix4& mat, BOOL global_volume = FALSE);
+	BOOL		genVolumeBBoxes(const LLVolume &volume, S32 f,
+									const LLMatrix4& mat_vert_in, BOOL global_volume = FALSE);
 	
 	void		init(LLDrawable* drawablep, LLViewerObject* objp);
 	void		destroy();
diff --git a/indra/newview/llfasttimerview.cpp b/indra/newview/llfasttimerview.cpp
index 8e1a1df211bc705189095992de22680ca9f3ec4c..06119620de1287281156a0f5c31e6611ac20e2ad 100755
--- a/indra/newview/llfasttimerview.cpp
+++ b/indra/newview/llfasttimerview.cpp
@@ -1545,7 +1545,7 @@ void LLFastTimerView::doAnalysis(std::string baseline, std::string target, std::
 		return ;
 	}
 }
-void	LLFastTimerView::onClickCloseBtn()
+void	LLFastTimerView::onClickCloseBtn(bool)
 {
 	setVisible(false);
 }
diff --git a/indra/newview/llfasttimerview.h b/indra/newview/llfasttimerview.h
index 5766cfa0b0525f0012d75c641dbed57e2d60f25b..1349b1e99cdd8aafe81b94c5d4245ea23f93de2f 100755
--- a/indra/newview/llfasttimerview.h
+++ b/indra/newview/llfasttimerview.h
@@ -63,7 +63,7 @@ class LLFastTimerView : public LLFloater
 	F64 getTime(const std::string& name);
 
 protected:
-	virtual	void	onClickCloseBtn();
+	virtual	void	onClickCloseBtn(bool app_quitting = false);
 private:	
 	typedef std::vector<std::vector<S32> > bar_positions_t;
 	bar_positions_t mBarStart;
diff --git a/indra/newview/llfeaturemanager.cpp b/indra/newview/llfeaturemanager.cpp
index c47618e1ec5558b65079bee26d389205841c209c..73607e100a150240cadbd276ac9ec77b1ece617e 100755
--- a/indra/newview/llfeaturemanager.cpp
+++ b/indra/newview/llfeaturemanager.cpp
@@ -350,7 +350,7 @@ bool LLFeatureManager::parseFeatureTable(std::string filename)
 	}
 
 	mTableVersion = version;
-	
+
 	LLFeatureList *flp = NULL;
 	bool parse_ok = true;
 	while (file >> name && parse_ok)
@@ -381,11 +381,11 @@ bool LLFeatureManager::parseFeatureTable(std::string filename)
 			file >> name;
 			if (!mMaskList.count(name))
 			{
-				flp = new LLFeatureList(name);
-				mMaskList[name] = flp;
-			}
-			else
-			{
+			flp = new LLFeatureList(name);
+			mMaskList[name] = flp;
+		}
+		else
+		{
 				LL_WARNS("RenderInit") << "Overriding mask " << name << ", this is invalid!" << LL_ENDL;
 				parse_ok = false;
 			}
@@ -394,11 +394,11 @@ bool LLFeatureManager::parseFeatureTable(std::string filename)
 		{
 			if (flp)
 			{
-				S32 available;
-				F32 recommended;
-				file >> available >> recommended;
-				flp->addFeature(name, available, recommended);
-			}
+			S32 available;
+			F32 recommended;
+			file >> available >> recommended;
+			flp->addFeature(name, available, recommended);
+		}
 			else
 			{
 				LL_WARNS("RenderInit") << "Specified parameter before <list> keyword!" << LL_ENDL;
@@ -444,7 +444,7 @@ bool LLFeatureManager::loadGPUClass()
 			// the HTTP table failed to parse, so delete it
 			LLFile::remove(http_path);
 			LL_WARNS("RenderInit") << "Removed invalid gpu table '" << http_path << "'" << LL_ENDL;
-		}
+	}
 	}
 
 	if (!parse_ok)
@@ -459,7 +459,7 @@ bool LLFeatureManager::loadGPUClass()
 bool LLFeatureManager::parseGPUTable(std::string filename)
 {
 	llifstream file;
-	
+		
 	LL_INFOS("RenderInit") << "Attempting to parse GPU table from " << filename << LL_ENDL;
 	file.open(filename);
 
diff --git a/indra/newview/llfilepicker.cpp b/indra/newview/llfilepicker.cpp
index c151b51c23ba24cc9450256329c0ff8189b13d17..16eacc9392fb70382dc9466c2e46582f9211b0c1 100755
--- a/indra/newview/llfilepicker.cpp
+++ b/indra/newview/llfilepicker.cpp
@@ -422,6 +422,19 @@ BOOL LLFilePicker::getSaveFile(ESaveFilter filter, const std::string& filename)
 			L"PNG Images (*.png)\0*.png\0" \
 			L"\0";
 		break;
+	case FFSAVE_TGAPNG:
+		if (filename.empty())
+		{
+			wcsncpy( mFilesW,L"untitled.png", FILENAME_BUFFER_SIZE);	/*Flawfinder: ignore*/
+			//PNG by default
+		}
+		mOFN.lpstrDefExt = L"png";
+		mOFN.lpstrFilter =
+			L"PNG Images (*.png)\0*.png\0" \
+			L"Targa Images (*.tga)\0*.tga\0" \
+			L"\0";
+		break;
+		
 	case FFSAVE_JPEG:
 		if (filename.empty())
 		{
@@ -640,13 +653,16 @@ bool	LLFilePicker::doNavSaveDialog(ESaveFilter filter, const std::string& filena
 			creator = "TVOD";
 			extension = "wav";
 			break;
-		
 		case FFSAVE_TGA:
 			type = "TPIC";
 			creator = "prvw";
 			extension = "tga";
 			break;
-		
+		case FFSAVE_TGAPNG:
+			type = "PNG";
+			creator = "prvw";
+			extension = "png";
+			break;
 		case FFSAVE_BMP:
 			type = "BMPf";
 			creator = "prvw";
@@ -921,6 +937,22 @@ void LLFilePicker::chooser_responder(GtkWidget *widget, gint response, gpointer
 		g_slist_free (file_list);
 	}
 
+	// let's save the extension of the last added file(considering current filter)
+	GtkFileFilter *gfilter = gtk_file_chooser_get_filter(GTK_FILE_CHOOSER(widget));
+	if(gfilter)
+	{
+		std::string filter = gtk_file_filter_get_name(gfilter);
+
+		if(filter == LLTrans::getString("png_image_files"))
+		{
+			picker->mCurrentExtension = ".png";
+		}
+		else if(filter == LLTrans::getString("targa_image_files"))
+		{
+			picker->mCurrentExtension = ".tga";
+		}
+	}
+
 	// set the default path for this usage context.
 	const char* cur_folder = gtk_file_chooser_get_current_folder(GTK_FILE_CHOOSER(widget));
 	if (cur_folder != NULL)
@@ -1092,6 +1124,24 @@ static std::string add_dictionary_filter_to_gtkchooser(GtkWindow *picker)
 							LLTrans::getString("dictionary_files") + " (*.dic; *.xcu)");
 }
 
+static std::string add_save_texture_filter_to_gtkchooser(GtkWindow *picker)
+{
+	GtkFileFilter *gfilter_tga = gtk_file_filter_new();
+	GtkFileFilter *gfilter_png = gtk_file_filter_new();
+
+	gtk_file_filter_add_pattern(gfilter_tga, "*.tga");
+	gtk_file_filter_add_mime_type(gfilter_png, "image/png");
+	std::string caption = LLTrans::getString("save_texture_image_files") + " (*.tga; *.png)";
+	gtk_file_filter_set_name(gfilter_tga, LLTrans::getString("targa_image_files").c_str());
+	gtk_file_filter_set_name(gfilter_png, LLTrans::getString("png_image_files").c_str());
+
+	gtk_file_chooser_add_filter(GTK_FILE_CHOOSER(picker),
+					gfilter_png);
+	gtk_file_chooser_add_filter(GTK_FILE_CHOOSER(picker),
+					gfilter_tga);
+	return caption;
+}
+
 BOOL LLFilePicker::getSaveFile( ESaveFilter filter, const std::string& filename )
 {
 	BOOL rtn = FALSE;
@@ -1129,6 +1179,15 @@ BOOL LLFilePicker::getSaveFile( ESaveFilter filter, const std::string& filename
 				(picker, "image/bmp", LLTrans::getString("bitmap_image_files") + " (*.bmp)");
 			suggest_ext = ".bmp";
 			break;
+		case FFSAVE_PNG:
+			caption += add_simple_mime_filter_to_gtkchooser
+				(picker, "image/png", LLTrans::getString("png_image_files") + " (*.png)");
+			suggest_ext = ".png";
+			break;
+		case FFSAVE_TGAPNG:
+			caption += add_save_texture_filter_to_gtkchooser(picker);
+			suggest_ext = ".png";
+			break;
 		case FFSAVE_AVI:
 			caption += add_simple_mime_filter_to_gtkchooser
 				(picker, "video/x-msvideo",
@@ -1181,9 +1240,17 @@ BOOL LLFilePicker::getSaveFile( ESaveFilter filter, const std::string& filename
 		}
 
 		gtk_widget_show_all(GTK_WIDGET(picker));
+
 		gtk_main();
 
 		rtn = (getFileCount() == 1);
+
+		if(rtn && filter == FFSAVE_TGAPNG)
+		{
+			std::string selected_file = mFiles.back();
+			mFiles.pop_back();
+			mFiles.push_back(selected_file + mCurrentExtension);
+		}
 	}
 
 	gViewerWindow->getWindow()->afterDialog();
diff --git a/indra/newview/llfilepicker.h b/indra/newview/llfilepicker.h
index 0d279f73f3065d696877ebeec092e34318271022..f0f82c51db0a218acef6ae0d1d41dbd0b5c99476 100755
--- a/indra/newview/llfilepicker.h
+++ b/indra/newview/llfilepicker.h
@@ -107,6 +107,7 @@ class LLFilePicker
 		FFSAVE_PNG = 13,
 		FFSAVE_JPEG = 14,
 		FFSAVE_SCRIPT = 15,
+		FFSAVE_TGAPNG = 16
 	};
 
 	// open the dialog. This is a modal operation
@@ -175,6 +176,8 @@ class LLFilePicker
 	// we remember the last path that was accessed for a particular usage
 	std::map <std::string, std::string> mContextToPathMap;
 	std::string mCurContextName;
+	// we also remember the extension of the last added file.
+	std::string mCurrentExtension;
 #endif
 
 	std::vector<std::string> mFiles;
diff --git a/indra/newview/llfloaterconversationpreview.cpp b/indra/newview/llfloaterconversationpreview.cpp
index 4a85160f95df2c4c37cbc8dabe8c72d3563dc37a..a303c2c6b3bb4ce74a945e63d53a3d9adf78f018 100755
--- a/indra/newview/llfloaterconversationpreview.cpp
+++ b/indra/newview/llfloaterconversationpreview.cpp
@@ -44,7 +44,8 @@ LLFloaterConversationPreview::LLFloaterConversationPreview(const LLSD& session_i
 	mPageSize(gSavedSettings.getS32("ConversationHistoryPageSize")),
 	mAccountName(session_id[LL_FCP_ACCOUNT_NAME]),
 	mCompleteName(session_id[LL_FCP_COMPLETE_NAME]),
-	mMutex(NULL)
+	mMutex(NULL),
+	mShowHistory(false)
 {
 }
 
@@ -91,7 +92,6 @@ BOOL LLFloaterConversationPreview::postBuild()
 	mPageSpinner->setMinValue(1);
 	mPageSpinner->set(1);
 	mPageSpinner->setEnabled(false);
-	mChatHistoryLoaded = false;
 	LLLogChat::startChatHistoryThread(file, load_params);
 	return LLFloater::postBuild();
 }
@@ -111,33 +111,29 @@ void LLFloaterConversationPreview::setPages(std::list<LLSD>& messages,const std:
 
 		std::string total_page_num = llformat("/ %d", mCurrentPage+1);
 		getChild<LLTextBox>("page_num_label")->setValue(total_page_num);
-		mChatHistoryLoaded = true;
+		mShowHistory = true;
 	}
 }
 
 void LLFloaterConversationPreview::draw()
 {
-	if(mChatHistoryLoaded)
+	if(mShowHistory)
 	{
 		showHistory();
-		mChatHistoryLoaded = false;
+		mShowHistory = false;
 	}
 	LLFloater::draw();
 }
 
 void LLFloaterConversationPreview::onOpen(const LLSD& key)
 {
-	if(mChatHistoryLoaded)
-	{
-		showHistory();
-	}
+	mShowHistory = true;
 }
 
 void LLFloaterConversationPreview::showHistory()
 {
-	// additional protection to avoid changes of mMessages in setPages()
+	// additional protection to avoid changes of mMessages in setPages
 	LLMutexLock lock(&mMutex);
-
 	if (!mMessages.size() || mCurrentPage * mPageSize >= mMessages.size())
 	{
 		return;
@@ -198,10 +194,11 @@ void LLFloaterConversationPreview::showHistory()
 void LLFloaterConversationPreview::onMoreHistoryBtnClick()
 {
 	mCurrentPage = (int)(mPageSpinner->getValueF32());
-	if (--mCurrentPage < 0)
+	if (!mCurrentPage)
 	{
 		return;
 	}
 
-	showHistory();
+	mCurrentPage--;
+	mShowHistory = true;
 }
diff --git a/indra/newview/llfloaterconversationpreview.h b/indra/newview/llfloaterconversationpreview.h
index f8796127baafaca6f2e5db8c655722a1f2f1369a..b0488f4ff127d51bdd58417b3cf0629bdc01e318 100755
--- a/indra/newview/llfloaterconversationpreview.h
+++ b/indra/newview/llfloaterconversationpreview.h
@@ -62,7 +62,7 @@ class LLFloaterConversationPreview : public LLFloater
 	std::string		mAccountName;
 	std::string		mCompleteName;
 	std::string     mChatHistoryFileName;
-	bool			mChatHistoryLoaded;
+	bool			mShowHistory;
 };
 
 #endif /* LLFLOATERCONVERSATIONPREVIEW_H_ */
diff --git a/indra/newview/llfloatergroupinvite.cpp b/indra/newview/llfloatergroupinvite.cpp
index 49da4e64b3c512b054961f6c61d4d3d2d14f0de0..d0f32897697386a4fb9eac6a77cbf13523b32144 100755
--- a/indra/newview/llfloatergroupinvite.cpp
+++ b/indra/newview/llfloatergroupinvite.cpp
@@ -30,6 +30,8 @@
 #include "llpanelgroupinvite.h"
 #include "lltrans.h"
 #include "lldraghandle.h"
+#include "llagent.h"
+#include "llgroupmgr.h"
 
 class LLFloaterGroupInvite::impl
 {
@@ -123,6 +125,12 @@ void LLFloaterGroupInvite::showForGroup(const LLUUID& group_id, uuid_vec_t *agen
 	LLFloaterGroupInvite *fgi = get_if_there(impl::sInstances,
 											 group_id,
 											 (LLFloaterGroupInvite*)NULL);
+
+	// refresh group information
+	gAgent.sendAgentDataUpdateRequest();
+	LLGroupMgr::getInstance()->clearGroupData(group_id);
+
+
 	if (!fgi)
 	{
 		fgi = new LLFloaterGroupInvite(group_id);
diff --git a/indra/newview/llfloaterimcontainer.cpp b/indra/newview/llfloaterimcontainer.cpp
index 90b4490e1dcac0fb893fb6405e7cedecaf98d3d7..b5aa309066afd22107d1926fde325c84eee63d13 100755
--- a/indra/newview/llfloaterimcontainer.cpp
+++ b/indra/newview/llfloaterimcontainer.cpp
@@ -101,6 +101,7 @@ LLFloaterIMContainer::~LLFloaterIMContainer()
 
 	gSavedPerAccountSettings.setBOOL("ConversationsListPaneCollapsed", mConversationsPane->isCollapsed());
 	gSavedPerAccountSettings.setBOOL("ConversationsMessagePaneCollapsed", mMessagesPane->isCollapsed());
+	gSavedPerAccountSettings.setBOOL("ConversationsParticipantListCollapsed", !isParticipantListExpanded());
 
 	if (!LLSingleton<LLIMMgr>::destroyed())
 	{
@@ -250,6 +251,11 @@ BOOL LLFloaterIMContainer::postBuild()
 	// Init the sort order now that the root had been created
 	setSortOrder(LLConversationSort(gSavedSettings.getU32("ConversationSortOrder")));
 	
+	//We should expand nearby chat participants list for the new user
+	if(gAgent.isFirstLogin() || !gSavedPerAccountSettings.getBOOL("ConversationsParticipantListCollapsed"))
+	{
+		expandConversation();
+	}
 	// Keep the xml set title around for when we have to overwrite it
 	mGeneralTitle = getTitle();
 	
@@ -715,6 +721,16 @@ void LLFloaterIMContainer::updateResizeLimits()
 	assignResizeLimits();
 }
 
+bool LLFloaterIMContainer::isMessagesPaneCollapsed()
+{
+	return mMessagesPane->isCollapsed();
+}
+
+bool LLFloaterIMContainer::isConversationsPaneCollapsed()
+{
+	return mConversationsPane->isCollapsed();
+}
+
 void LLFloaterIMContainer::collapseMessagesPane(bool collapse)
 {
 	if (mMessagesPane->isCollapsed() == collapse)
@@ -784,8 +800,8 @@ void LLFloaterIMContainer::collapseConversationsPane(bool collapse, bool save_is
 		mConversationsPane->setTargetDim(gSavedPerAccountSettings.getS32("ConversationsListPaneWidth"));
 	}
 
-	S32 delta_width =
-			gSavedPerAccountSettings.getS32("ConversationsListPaneWidth") - mConversationsPane->getMinDim();
+	S32 delta_width = gSavedPerAccountSettings.getS32("ConversationsListPaneWidth") 
+		- mConversationsPane->getMinDim() - mConversationsStack->getPanelSpacing() + 1;
 
 	reshapeFloaterAndSetResizeLimits(collapse, delta_width);
 
@@ -2086,6 +2102,19 @@ void LLFloaterIMContainer::expandConversation()
 		}
 	}
 }
+bool LLFloaterIMContainer::isParticipantListExpanded()
+{
+	bool is_expanded = false;
+	if(!mConversationsPane->isCollapsed())
+	{
+		LLConversationViewSession* widget = dynamic_cast<LLConversationViewSession*>(get_ptr_in_map(mConversationsWidgets,getSelectedSession()));
+		if (widget)
+		{
+			is_expanded = widget->isOpen();
+		}
+	}
+	return is_expanded;
+}
 
 // By default, if torn off session is currently frontmost, LLFloater::isFrontmost() will return FALSE, which can lead to some bugs
 // So LLFloater::isFrontmost() is overriden here to check both selected session and the IM floater itself
@@ -2102,7 +2131,7 @@ BOOL LLFloaterIMContainer::isFrontmost()
 
 // For conversations, closeFloater() (linked to Ctrl-W) does not actually close the floater but the active conversation.
 // This is intentional so it doesn't confuse the user. onClickCloseBtn() closes the whole floater.
-void LLFloaterIMContainer::onClickCloseBtn()
+void LLFloaterIMContainer::onClickCloseBtn(bool app_quitting/* = false*/)
 {
 	// Always unminimize before trying to close.
 	// Most of the time the user will never see this state.
@@ -2111,7 +2140,7 @@ void LLFloaterIMContainer::onClickCloseBtn()
 		LLMultiFloater::setMinimized(FALSE);
 	}
 
-	LLFloater::closeFloater();
+	LLFloater::closeFloater(app_quitting);
 }
 
 void LLFloaterIMContainer::closeHostedFloater()
@@ -2158,7 +2187,7 @@ void LLFloaterIMContainer::closeFloater(bool app_quitting/* = false*/)
 	if(app_quitting)
 	{
 		closeAllConversations();
-		onClickCloseBtn();
+		onClickCloseBtn(app_quitting);
 	}
 	else
 	{
diff --git a/indra/newview/llfloaterimcontainer.h b/indra/newview/llfloaterimcontainer.h
index 36da457cacfb5f34ee4f549eb652ef81ff575a9a..f6d973b9b3be5f7646d3be62b25106d62bc39549 100755
--- a/indra/newview/llfloaterimcontainer.h
+++ b/indra/newview/llfloaterimcontainer.h
@@ -90,6 +90,8 @@ class LLFloaterIMContainer
 	static void onCurrentChannelChanged(const LLUUID& session_id);
 
 	void collapseMessagesPane(bool collapse);
+	bool isMessagesPaneCollapsed();
+	bool isConversationsPaneCollapsed();
 	
 	// Callbacks
 	static void idle(void* user_data);
@@ -134,7 +136,7 @@ class LLFloaterIMContainer
 	void onStubCollapseButtonClicked();
 	void processParticipantsStyleUpdate();
 	void onSpeakButtonClicked();
-	/*virtual*/ void onClickCloseBtn();
+	/*virtual*/ void onClickCloseBtn(bool app_quitting = false);
 	/*virtual*/ void closeHostedFloater();
 
 	void collapseConversationsPane(bool collapse, bool save_is_allowed=true);
@@ -172,6 +174,7 @@ class LLFloaterIMContainer
 	void toggleAllowTextChat(const LLUUID& participant_uuid);
 	void toggleMute(const LLUUID& participant_id, U32 flags);
 	void openNearbyChat();
+	bool isParticipantListExpanded();
 
 	LLButton* mExpandCollapseBtn;
 	LLButton* mStubCollapseBtn;
diff --git a/indra/newview/llfloaterimnearbychat.cpp b/indra/newview/llfloaterimnearbychat.cpp
index 3d77ea4f0bb3ab7fc1861214f39b125173e0ae68..323e84751f6f7b819ba0410562d17d7735fccd65 100755
--- a/indra/newview/llfloaterimnearbychat.cpp
+++ b/indra/newview/llfloaterimnearbychat.cpp
@@ -308,7 +308,8 @@ void LLFloaterIMNearbyChat::onClose(bool app_quitting)
 }
 
 // virtual
-void LLFloaterIMNearbyChat::onClickCloseBtn()
+void LLFloaterIMNearbyChat::onClickCloseBtn(bool)
+
 {
 	if (!isTornOff())
 	{
@@ -493,11 +494,11 @@ void LLFloaterIMNearbyChat::onChatBoxKeystroke()
 			if (!rest_of_match.empty())
 			{
 				mInputEditor->setText(utf8_trigger + rest_of_match); // keep original capitalization for user-entered part
-
 				// Select to end of line, starting from the character
 				// after the last one the user typed.
-				mInputEditor->selectNext(rest_of_match, false);
+				mInputEditor->selectByCursorPosition(utf8_out_str.size()-rest_of_match.size(),utf8_out_str.size());
 			}
+
 		}
 		else if (matchChatTypeTrigger(utf8_trigger, &utf8_out_str))
 		{
diff --git a/indra/newview/llfloaterimnearbychat.h b/indra/newview/llfloaterimnearbychat.h
index 05b48cccb03657a2b3e7f646f04cdc9225eec7c9..f0daacd6a9e7212e572f147f40d3082e7d84a94a 100755
--- a/indra/newview/llfloaterimnearbychat.h
+++ b/indra/newview/llfloaterimnearbychat.h
@@ -95,7 +95,7 @@ class LLFloaterIMNearbyChat
 	void onChatFontChange(LLFontGL* fontp);
 
 	/*virtual*/ void onTearOffClicked();
-	/*virtual*/ void onClickCloseBtn();
+	/*virtual*/ void onClickCloseBtn(bool app_qutting = false);
 
 	static LLWString stripChannelNumber(const LLWString &mesg, S32* channel);
 	EChatType processChatTypeTriggers(EChatType type, std::string &str);
diff --git a/indra/newview/llfloaterimsession.cpp b/indra/newview/llfloaterimsession.cpp
index 5cb9df5625895f96c22dcfb1c9e58aa1195af85c..14e1a486d3232e1edc6689c2bc66452ada907d57 100755
--- a/indra/newview/llfloaterimsession.cpp
+++ b/indra/newview/llfloaterimsession.cpp
@@ -112,7 +112,7 @@ void LLFloaterIMSession::onTearOffClicked()
 }
 
 // virtual
-void LLFloaterIMSession::onClickCloseBtn()
+void LLFloaterIMSession::onClickCloseBtn(bool)
 {
 	LLIMModel::LLIMSession* session = LLIMModel::instance().findIMSession(mSessionID);
 
diff --git a/indra/newview/llfloaterimsession.h b/indra/newview/llfloaterimsession.h
index a0e0171b344baa322714bc3766e6851f499e7197..d6718843ca0109240572533c158000f33a5ab4d6 100755
--- a/indra/newview/llfloaterimsession.h
+++ b/indra/newview/llfloaterimsession.h
@@ -141,7 +141,7 @@ class LLFloaterIMSession
 	/*virtual*/ void refresh();
 
     /*virtual*/ void onTearOffClicked();
-	/*virtual*/ void onClickCloseBtn();
+	/*virtual*/ void onClickCloseBtn(bool app_qutting);
 
 	// Update the window title and input field help text
 	/*virtual*/ void updateSessionName(const std::string& name);
diff --git a/indra/newview/llfloaterland.cpp b/indra/newview/llfloaterland.cpp
index 8f20d4e0823ad7854f00294d9aeac3b77c70cb23..6c8e81e56324ae8cf404f29dce10eb815dc82681 100755
--- a/indra/newview/llfloaterland.cpp
+++ b/indra/newview/llfloaterland.cpp
@@ -2374,7 +2374,7 @@ void LLPanelLandAccess::refresh()
 	{
 		BOOL use_access_list = parcel->getParcelFlag(PF_USE_ACCESS_LIST);
 		BOOL use_group = parcel->getParcelFlag(PF_USE_ACCESS_GROUP);
-		BOOL public_access = !use_access_list && !use_group;
+		BOOL public_access = !use_access_list;
 		
 		getChild<LLUICtrl>("public_access")->setValue(public_access );
 		getChild<LLUICtrl>("GroupCheck")->setValue(use_group );
@@ -2541,6 +2541,10 @@ void LLPanelLandAccess::refresh_ui()
 	getChildView("HoursSpin")->setEnabled(FALSE);
 	getChildView("AccessList")->setEnabled(FALSE);
 	getChildView("BannedList")->setEnabled(FALSE);
+	getChildView("add_allowed")->setEnabled(FALSE);
+	getChildView("remove_allowed")->setEnabled(FALSE);
+	getChildView("add_banned")->setEnabled(FALSE);
+	getChildView("remove_banned")->setEnabled(FALSE);
 	
 	LLParcel *parcel = mParcel->getParcel();
 	if (parcel)
@@ -2579,7 +2583,6 @@ void LLPanelLandAccess::refresh_ui()
 			{
 				getChildView("Only Allow")->setToolTip(std::string());
 			}
-			getChildView("GroupCheck")->setEnabled(FALSE);
 			getChildView("PassCheck")->setEnabled(FALSE);
 			getChildView("pass_combo")->setEnabled(FALSE);
 			getChildView("AccessList")->setEnabled(FALSE);
@@ -2589,11 +2592,7 @@ void LLPanelLandAccess::refresh_ui()
 			getChildView("limit_payment")->setEnabled(FALSE);
 			getChildView("limit_age_verified")->setEnabled(FALSE);
 
-			std::string group_name;
-			if (gCacheName->getGroupName(parcel->getGroupID(), group_name))
-			{			
-				getChildView("GroupCheck")->setEnabled(can_manage_allowed);
-			}
+
 			BOOL group_access = getChild<LLUICtrl>("GroupCheck")->getValue().asBoolean();
 			BOOL sell_passes = getChild<LLUICtrl>("PassCheck")->getValue().asBoolean();
 			getChildView("PassCheck")->setEnabled(can_manage_allowed);
@@ -2604,6 +2603,11 @@ void LLPanelLandAccess::refresh_ui()
 				getChildView("HoursSpin")->setEnabled(can_manage_allowed);
 			}
 		}
+		std::string group_name;
+		if (gCacheName->getGroupName(parcel->getGroupID(), group_name))
+		{
+			getChildView("GroupCheck")->setEnabled(can_manage_allowed);
+		}
 		getChildView("AccessList")->setEnabled(can_manage_allowed);
 		S32 allowed_list_count = parcel->mAccessList.size();
 		getChildView("add_allowed")->setEnabled(can_manage_allowed && allowed_list_count < PARCEL_MAX_ACCESS_LIST);
@@ -2650,17 +2654,6 @@ void LLPanelLandAccess::onCommitPublicAccess(LLUICtrl *ctrl, void *userdata)
 		return;
 	}
 
-	// If we disabled public access, enable group access by default (if applicable)
-	BOOL public_access = self->getChild<LLUICtrl>("public_access")->getValue().asBoolean();
-	if (public_access == FALSE)
-	{
-		std::string group_name;
-		if (gCacheName->getGroupName(parcel->getGroupID(), group_name))
-		{
-			self->getChild<LLUICtrl>("GroupCheck")->setValue(public_access ? FALSE : TRUE);
-		}
-	}
-	
 	onCommitAny(ctrl, userdata);
 }
 
@@ -2694,7 +2687,6 @@ void LLPanelLandAccess::onCommitAny(LLUICtrl *ctrl, void *userdata)
 	if (public_access)
 	{
 		use_access_list = FALSE;
-		use_access_group = FALSE;
 		limit_payment = self->getChild<LLUICtrl>("limit_payment")->getValue().asBoolean();
 		limit_age_verified = self->getChild<LLUICtrl>("limit_age_verified")->getValue().asBoolean();
 	}
diff --git a/indra/newview/llfloatersidepanelcontainer.cpp b/indra/newview/llfloatersidepanelcontainer.cpp
index 5f9556a870d66810af487f69807501b362bf54c9..c5248719e933a010ce77a14d0f5be57f6fded6c0 100755
--- a/indra/newview/llfloatersidepanelcontainer.cpp
+++ b/indra/newview/llfloatersidepanelcontainer.cpp
@@ -57,7 +57,7 @@ void LLFloaterSidePanelContainer::onOpen(const LLSD& key)
 	getChild<LLPanel>(sMainPanelName)->onOpen(key);
 }
 
-void LLFloaterSidePanelContainer::onClickCloseBtn()
+void LLFloaterSidePanelContainer::onClickCloseBtn(bool)
 {
 	LLPanelOutfitEdit* panel_outfit_edit =
 		dynamic_cast<LLPanelOutfitEdit*>(LLFloaterSidePanelContainer::getPanel("appearance", "panel_outfit_edit"));
diff --git a/indra/newview/llfloatersidepanelcontainer.h b/indra/newview/llfloatersidepanelcontainer.h
index 491723471fb1109211764fe9b6757234071b9cf4..65ec8f604e65b4446f74783655dba90f5b0c6cc2 100755
--- a/indra/newview/llfloatersidepanelcontainer.h
+++ b/indra/newview/llfloatersidepanelcontainer.h
@@ -51,7 +51,7 @@ class LLFloaterSidePanelContainer : public LLFloater
 
 	/*virtual*/ void onOpen(const LLSD& key);
 
-	/*virtual*/ void onClickCloseBtn();
+	/*virtual*/ void onClickCloseBtn(bool app_quitting = false);
 
 	LLPanel* openChildPanel(const std::string& panel_name, const LLSD& params);
 
diff --git a/indra/newview/llfloaterwebcontent.cpp b/indra/newview/llfloaterwebcontent.cpp
index 4eb5236c6a96dc6f2d65524f302b8e681ab94ff8..4151eec3e312eb713055a888740049c4990c8773 100755
--- a/indra/newview/llfloaterwebcontent.cpp
+++ b/indra/newview/llfloaterwebcontent.cpp
@@ -377,6 +377,8 @@ void LLFloaterWebContent::handleMediaEvent(LLPluginClassMedia* self, EMediaEvent
 		// we populate the status bar with URLs as they change so clear it now we're done
 		const std::string end_str = "";
 		mStatusBarText->setText( end_str );
+			mAddressCombo->setLeftTextPadding(22);
+			mAddressCombo->setLeftTextPadding(2);
 	}
 	else if(event == MEDIA_EVENT_CLOSE_REQUEST)
 	{
diff --git a/indra/newview/llmutelist.cpp b/indra/newview/llmutelist.cpp
index 54522bb7f66c32401e25d61a73b4c6ff0a1556f7..0720d443f8f812735798f5073a41645693745288 100755
--- a/indra/newview/llmutelist.cpp
+++ b/indra/newview/llmutelist.cpp
@@ -251,6 +251,7 @@ BOOL LLMuteList::add(const LLMute& mute, U32 flags)
 			llinfos << "Muting by name " << mute.mName << llendl;
 			updateAdd(mute);
 			notifyObservers();
+			notifyObserversDetailed(mute);
 			return TRUE;
 		}
 		else
@@ -299,6 +300,7 @@ BOOL LLMuteList::add(const LLMute& mute, U32 flags)
 				llinfos << "Muting " << localmute.mName << " id " << localmute.mID << " flags " << localmute.mFlags << llendl;
 				updateAdd(localmute);
 				notifyObservers();
+				notifyObserversDetailed(localmute);
 				if(!(localmute.mFlags & LLMute::flagParticles))
 				{
 					//Kill all particle systems owned by muted task
@@ -396,6 +398,7 @@ BOOL LLMuteList::remove(const LLMute& mute, U32 flags)
 		}
 		
 		// Must be after erase.
+		notifyObserversDetailed(localmute);
 		setLoaded();  // why is this here? -MG
 	}
 	else
@@ -409,6 +412,7 @@ BOOL LLMuteList::remove(const LLMute& mute, U32 flags)
 			updateRemove(mute);
 			mLegacyMutes.erase(legacy_it);
 			// Must be after erase.
+			notifyObserversDetailed(mute);
 			setLoaded(); // why is this here? -MG
 		}
 	}
@@ -762,3 +766,16 @@ void LLMuteList::notifyObservers()
 		it = mObservers.upper_bound(observer);
 	}
 }
+
+void LLMuteList::notifyObserversDetailed(const LLMute& mute)
+{
+	for (observer_set_t::iterator it = mObservers.begin();
+		it != mObservers.end();
+		)
+	{
+		LLMuteListObserver* observer = *it;
+		observer->onChangeDetailed(mute);
+		// In case onChange() deleted an entry.
+		it = mObservers.upper_bound(observer);
+	}
+}
diff --git a/indra/newview/llmutelist.h b/indra/newview/llmutelist.h
index 7a70370fe33519106950250dd2f98d197ac25bdd..3e998b4f0e2ad852bf37485fdbf122fc1f00786a 100755
--- a/indra/newview/llmutelist.h
+++ b/indra/newview/llmutelist.h
@@ -123,6 +123,7 @@ class LLMuteList : public LLSingleton<LLMuteList>
 
 	void setLoaded();
 	void notifyObservers();
+	void notifyObserversDetailed(const LLMute &mute);
 
 	void updateAdd(const LLMute& mute);
 	void updateRemove(const LLMute& mute);
@@ -173,6 +174,7 @@ class LLMuteListObserver
 public:
 	virtual ~LLMuteListObserver() { }
 	virtual void onChange() = 0;
+	virtual void onChangeDetailed(const LLMute& ) { }
 };
 
 
diff --git a/indra/newview/llpanelmaininventory.cpp b/indra/newview/llpanelmaininventory.cpp
index 53deded2f23cc8594e3ab57b4924bbb3ce47d152..1ff0bfd09136e117774138a508ba1dc52865de1d 100755
--- a/indra/newview/llpanelmaininventory.cpp
+++ b/indra/newview/llpanelmaininventory.cpp
@@ -542,6 +542,13 @@ void LLPanelMainInventory::changed(U32)
 	updateItemcountText();
 }
 
+void LLPanelMainInventory::setFocusFilterEditor()
+{
+	if(mFilterEditor)
+	{
+		mFilterEditor->setFocus(true);
+	}
+}
 
 // virtual
 void LLPanelMainInventory::draw()
diff --git a/indra/newview/llpanelmaininventory.h b/indra/newview/llpanelmaininventory.h
index 394b004e209ffafb95382edc148d1b2459da5775..fc8cc67c338dab0d47bf2b6c14f3670340f816d1 100755
--- a/indra/newview/llpanelmaininventory.h
+++ b/indra/newview/llpanelmaininventory.h
@@ -82,6 +82,9 @@ class LLPanelMainInventory : public LLPanel, LLInventoryObserver
 	void setSelectCallback(const LLFolderView::signal_t::slot_type& cb);
 
 	void onFilterEdit(const std::string& search_string );
+
+	void setFocusFilterEditor();
+
 protected:
 	//
 	// Misc functions
diff --git a/indra/newview/llpersistentnotificationstorage.cpp b/indra/newview/llpersistentnotificationstorage.cpp
index 076c3e0235b9b22bb7c25eefcbccd1f321b47813..4f7d071d663ae3a7ae6e0bea118bf674d86044d4 100755
--- a/indra/newview/llpersistentnotificationstorage.cpp
+++ b/indra/newview/llpersistentnotificationstorage.cpp
@@ -77,6 +77,14 @@ void LLPersistentNotificationStorage::saveNotifications()
 		}
 
 		data.append(notification->asLLSD(true));
+		if (data.size() >= gSavedSettings.getS32("MaxPersistentNotifications"))
+		{
+			llwarns << "Too many persistent notifications."
+					<< " Saved " << gSavedSettings.getS32("MaxPersistentNotifications") << " of " << history_channel->size()
+					<< " persistent notifications." << llendl;
+			break;
+		}
+
 	}
 
 	writeNotifications(output);
@@ -97,7 +105,6 @@ void LLPersistentNotificationStorage::loadNotifications()
 	}
 
 	mLoaded = true;
-
 	LLSD input;
 	if (!readNotifications(input) ||input.isUndefined())
 	{
@@ -115,9 +122,9 @@ void LLPersistentNotificationStorage::loadNotifications()
 		findChannelByID(LLUUID(gSavedSettings.getString("NotificationChannelUUID"))));
 
 	LLNotifications& instance = LLNotifications::instance();
-
-	for (LLSD::array_const_iterator notification_it = data.beginArray();
-		notification_it != data.endArray();
+	S32 processed_notifications = 0;
+	for (LLSD::reverse_array_iterator notification_it = data.rbeginArray();
+		notification_it != data.rendArray();
 		++notification_it)
 	{
 		LLSD notification_params = *notification_it;
@@ -136,8 +143,16 @@ void LLPersistentNotificationStorage::loadNotifications()
 			// hide saved toasts so they don't confuse the user
 			notification_channel->hideToast(notification->getID());
 		}
+		++processed_notifications;
+		if (processed_notifications >= gSavedSettings.getS32("MaxPersistentNotifications"))
+		{
+			llwarns << "Too many persistent notifications."
+					<< " Processed " << gSavedSettings.getS32("MaxPersistentNotifications") << " of " << data.size() << " persistent notifications." << llendl;
+		    break;
 	}
-
+	}
+	LLNotifications::instance().getChannel("Persistent")->
+			connectChanged(boost::bind(&LLPersistentNotificationStorage::onPersistentChannelChanged, this, _1));
 	LL_INFOS("LLPersistentNotificationStorage") << "finished loading notifications" << LL_ENDL;
 }
 
diff --git a/indra/newview/llpreviewtexture.cpp b/indra/newview/llpreviewtexture.cpp
index 91a98792eb56b3dd0e529db8c3dce9e9d1e4d916..1ed48a978fffa2693494b8e55221b0d4c8340e9f 100755
--- a/indra/newview/llpreviewtexture.cpp
+++ b/indra/newview/llpreviewtexture.cpp
@@ -36,6 +36,7 @@
 #include "llfilepicker.h"
 #include "llfloaterreg.h"
 #include "llimagetga.h"
+#include "llimagepng.h"
 #include "llinventory.h"
 #include "llnotificationsutil.h"
 #include "llresmgr.h"
@@ -261,7 +262,7 @@ void LLPreviewTexture::saveAs()
 
 	LLFilePicker& file_picker = LLFilePicker::instance();
 	const LLInventoryItem* item = getItem() ;
-	if( !file_picker.getSaveFile( LLFilePicker::FFSAVE_TGA, item ? LLDir::getScrubbedFileName(item->getName()) : LLStringUtil::null) )
+	if( !file_picker.getSaveFile( LLFilePicker::FFSAVE_TGAPNG, item ? LLDir::getScrubbedFileName(item->getName()) : LLStringUtil::null) )
 	{
 		// User canceled or we failed to acquire save file.
 		return;
@@ -358,14 +359,27 @@ void LLPreviewTexture::onFileLoadedForSave(BOOL success,
 
 	if( self && final && success )
 	{
-		LLPointer<LLImageTGA> image_tga = new LLImageTGA;
-		if( !image_tga->encode( src ) )
+		const U32 ext_length = 3;
+		std::string extension = self->mSaveFileName.substr( self->mSaveFileName.length() - ext_length);
+
+		// We only support saving in PNG or TGA format
+		LLPointer<LLImageFormatted> image;
+		if(extension == "png")
+		{
+			image = new LLImagePNG;
+		}
+		else if(extension == "tga")
+		{
+			image = new LLImageTGA;
+		}
+
+		if( image && !image->encode( src, 0 ) )
 		{
 			LLSD args;
 			args["FILE"] = self->mSaveFileName;
 			LLNotificationsUtil::add("CannotEncodeFile", args);
 		}
-		else if( !image_tga->save( self->mSaveFileName ) )
+		else if( image && !image->save( self->mSaveFileName ) )
 		{
 			LLSD args;
 			args["FILE"] = self->mSaveFileName;
diff --git a/indra/newview/llsceneview.cpp b/indra/newview/llsceneview.cpp
index 09e799e4f741b11f4968aaa58579cb626906162c..cbd8bee9d5733e7706b5273a890cdf2a747663d2 100755
--- a/indra/newview/llsceneview.cpp
+++ b/indra/newview/llsceneview.cpp
@@ -51,7 +51,7 @@ LLSceneView::LLSceneView(const LLRect& rect)
 	setCanClose(true);
 }
 
-void LLSceneView::onClickCloseBtn()
+void LLSceneView::onClickCloseBtn(bool)
 {
 	setVisible(false);
 }
diff --git a/indra/newview/llsceneview.h b/indra/newview/llsceneview.h
index 2a3a14bbee45571dd6dee59bc3ab2633dfa7a380..1fceecb9e1a9efe975ff3574588c5f8805bfb6c9 100755
--- a/indra/newview/llsceneview.h
+++ b/indra/newview/llsceneview.h
@@ -38,7 +38,7 @@ class LLSceneView : public LLFloater
 	virtual void draw();
 	
 protected:
-	virtual void onClickCloseBtn();
+	virtual void onClickCloseBtn(bool app_qutting = false);
 
 
 };
diff --git a/indra/newview/llsidepanelinventory.cpp b/indra/newview/llsidepanelinventory.cpp
index 8915bb2fef789c78f5c9c4a88dd178d987381f17..cbf43dbb937c522f51eaf32ee6712262b8188bea 100755
--- a/indra/newview/llsidepanelinventory.cpp
+++ b/indra/newview/llsidepanelinventory.cpp
@@ -397,7 +397,7 @@ void LLSidepanelInventory::onToggleInboxBtn()
 void LLSidepanelInventory::onOpen(const LLSD& key)
 {
 	LLFirstUse::newInventory(false);
-
+	mPanelMainInventory->setFocusFilterEditor();
 #if AUTO_EXPAND_INBOX
 	// Expand the inbox if we have fresh items
 	LLPanelMarketplaceInbox * inbox = findChild<LLPanelMarketplaceInbox>(MARKETPLACE_INBOX_PANEL);
diff --git a/indra/newview/llsidepaneltaskinfo.cpp b/indra/newview/llsidepaneltaskinfo.cpp
index ad7c939728fe36b668a7f4d8283c13223a0289f4..9be6d0c5f1a8242920dba7885f1731eebf5e8eaa 100755
--- a/indra/newview/llsidepaneltaskinfo.cpp
+++ b/indra/newview/llsidepaneltaskinfo.cpp
@@ -1170,6 +1170,10 @@ void LLSidepanelTaskInfo::doClickAction(U8 click_action)
 			// Warn, but do it anyway.
 			LLNotificationsUtil::add("ClickActionNotPayable");
 		}
+		else
+		{
+			handle_give_money_dialog();
+		}
 	}
 	LLSelectMgr::getInstance()->selectionSetClickAction(click_action);
 }
diff --git a/indra/newview/llspatialpartition.cpp b/indra/newview/llspatialpartition.cpp
index 00eb0c1ab11d6bb9c88e40725a9611b9e577e8a6..2c83f6d0b707f1f0ecd5f9e455cfb89d1adc54cd 100755
--- a/indra/newview/llspatialpartition.cpp
+++ b/indra/newview/llspatialpartition.cpp
@@ -1568,7 +1568,7 @@ void LLSpatialGroup::checkOcclusion()
 			{
 				glGetQueryObjectuivARB(mOcclusionQuery[LLViewerCamera::sCurCameraID], GL_QUERY_RESULT_AVAILABLE_ARB, &available);
 
-				static LLCachedControl<bool> wait_for_query(gSavedSettings, "RenderSynchronousOcclusion");
+				static LLCachedControl<bool> wait_for_query(gSavedSettings, "RenderSynchronousOcclusion", true);
 
 				if (wait_for_query && mOcclusionIssued[LLViewerCamera::sCurCameraID] < gFrameCount)
 				{ //query was issued last frame, wait until it's available
diff --git a/indra/newview/lltexturefetch.cpp b/indra/newview/lltexturefetch.cpp
index 6173e76a35163ce13213ca3e4757f94fc12adc21..def26b3885e5c54aa3465abc49de061cb57c7893 100644
--- a/indra/newview/lltexturefetch.cpp
+++ b/indra/newview/lltexturefetch.cpp
@@ -1270,7 +1270,7 @@ bool LLTextureFetchWorker::doWork(S32 param)
 
 	if (mState == LOAD_FROM_NETWORK)
 	{
-		static LLCachedControl<bool> use_http(gSavedSettings,"ImagePipelineUseHTTP");
+		static LLCachedControl<bool> use_http(gSavedSettings,"ImagePipelineUseHTTP", true);
 
 // 		if (mHost != LLHost::invalid) get_url = false;
 		if ( use_http && mCanUseHTTP && mUrl.empty())//get http url.
@@ -1697,7 +1697,7 @@ bool LLTextureFetchWorker::doWork(S32 param)
 	
 	if (mState == DECODE_IMAGE)
 	{
-		static LLCachedControl<bool> textures_decode_disabled(gSavedSettings,"TextureDecodeDisabled");
+		static LLCachedControl<bool> textures_decode_disabled(gSavedSettings,"TextureDecodeDisabled", false);
 
 		setPriority(LLWorkerThread::PRIORITY_LOW | mWorkPriority); // Set priority first since Responder may change it
 		if (textures_decode_disabled)
@@ -1873,9 +1873,9 @@ bool LLTextureFetchWorker::doWork(S32 param)
 // virtual
 void LLTextureFetchWorker::onCompleted(LLCore::HttpHandle handle, LLCore::HttpResponse * response)
 {
-	static LLCachedControl<bool> log_to_viewer_log(gSavedSettings, "LogTextureDownloadsToViewerLog");
-	static LLCachedControl<bool> log_to_sim(gSavedSettings, "LogTextureDownloadsToSimulator");
-	static LLCachedControl<bool> log_texture_traffic(gSavedSettings, "LogTextureNetworkTraffic") ;
+	static LLCachedControl<bool> log_to_viewer_log(gSavedSettings, "LogTextureDownloadsToViewerLog", false);
+	static LLCachedControl<bool> log_to_sim(gSavedSettings, "LogTextureDownloadsToSimulator", false);
+	static LLCachedControl<bool> log_texture_traffic(gSavedSettings, "LogTextureNetworkTraffic", false) ;
 
 	LLMutexLock lock(&mWorkMutex);										// +Mw
 
@@ -2876,7 +2876,7 @@ void LLTextureFetch::commonUpdate()
 //virtual
 S32 LLTextureFetch::update(F32 max_time_ms)
 {
-	static LLCachedControl<F32> band_width(gSavedSettings,"ThrottleBandwidthKBPS");
+	static LLCachedControl<F32> band_width(gSavedSettings,"ThrottleBandwidthKBPS", 500.0);
 
 	{
 		mNetworkQueueMutex.lock();										// +Mfnq
@@ -3099,8 +3099,8 @@ void LLTextureFetch::sendRequestListToSimulators()
 // 				llinfos << "IMAGE REQUEST: " << req->mID << " Discard: " << req->mDesiredDiscard
 // 						<< " Packet: " << packet << " Priority: " << req->mImagePriority << llendl;
 
-				static LLCachedControl<bool> log_to_viewer_log(gSavedSettings,"LogTextureDownloadsToViewerLog");
-				static LLCachedControl<bool> log_to_sim(gSavedSettings,"LogTextureDownloadsToSimulator");
+				static LLCachedControl<bool> log_to_viewer_log(gSavedSettings,"LogTextureDownloadsToViewerLog", false);
+				static LLCachedControl<bool> log_to_sim(gSavedSettings,"LogTextureDownloadsToSimulator", false);
 				if (log_to_viewer_log || log_to_sim)
 				{
 					mTextureInfo.setRequestStartTime(req->mID, LLTimer::getTotalTime());
@@ -3359,8 +3359,8 @@ bool LLTextureFetch::receiveImagePacket(const LLHost& host, const LLUUID& id, U1
 
 	if (packet_num >= (worker->mTotalPackets - 1))
 	{
-		static LLCachedControl<bool> log_to_viewer_log(gSavedSettings,"LogTextureDownloadsToViewerLog");
-		static LLCachedControl<bool> log_to_sim(gSavedSettings,"LogTextureDownloadsToSimulator");
+		static LLCachedControl<bool> log_to_viewer_log(gSavedSettings,"LogTextureDownloadsToViewerLog", false);
+		static LLCachedControl<bool> log_to_sim(gSavedSettings,"LogTextureDownloadsToSimulator", false);
 
 		if (log_to_viewer_log || log_to_sim)
 		{
diff --git a/indra/newview/lltoast.cpp b/indra/newview/lltoast.cpp
index d876c9a3f4b8614ae7fb8575a79abf57ceedc2c3..448fae48de4ef8548e09803d139d0038167c31d7 100755
--- a/indra/newview/lltoast.cpp
+++ b/indra/newview/lltoast.cpp
@@ -555,7 +555,7 @@ BOOL LLToast::handleMouseDown(S32 x, S32 y, MASK mask)
 		mHideBtnPressed = mHideBtn->getRect().pointInRect(x, y);
 	}
 
-	return LLFloater::handleMouseDown(x, y, mask);
+	return LLModalDialog::handleMouseDown(x, y, mask);
 }
 
 //--------------------------------------------------------------------------
diff --git a/indra/newview/lltoastalertpanel.cpp b/indra/newview/lltoastalertpanel.cpp
index 3f75f8da5e0212e88c034b37f367c87947e5b452..6083210080f9496f03c9db5efd037d30e2658bde 100755
--- a/indra/newview/lltoastalertpanel.cpp
+++ b/indra/newview/lltoastalertpanel.cpp
@@ -492,7 +492,7 @@ void LLToastAlertPanel::draw()
 	}
 
 	static LLUIColor shadow_color = LLUIColorTable::instance().getColor("ColorDropShadow");
-	static LLUICachedControl<S32> shadow_lines ("DropShadowFloater");
+	static LLUICachedControl<S32> shadow_lines ("DropShadowFloater", 5);
 
 	gl_drop_shadow( 0, LLToastPanel::getRect().getHeight(), LLToastPanel::getRect().getWidth(), 0,
 		shadow_color, shadow_lines);
diff --git a/indra/newview/lltoastnotifypanel.cpp b/indra/newview/lltoastnotifypanel.cpp
index 94d07b37effa3f2b57945876d910b789813b77a1..3a41bf28b4710fca52a56459b9cb9059f22db4e5 100755
--- a/indra/newview/lltoastnotifypanel.cpp
+++ b/indra/newview/lltoastnotifypanel.cpp
@@ -407,6 +407,28 @@ void LLToastNotifyPanel::init( LLRect rect, bool show_images )
 	}
 }
 
+bool LLToastNotifyPanel::isControlPanelEnabled() const
+{
+	bool cp_enabled = mControlPanel->getEnabled();
+	bool some_buttons_enabled = false;
+	if (cp_enabled)
+	{
+		LLView::child_list_const_iter_t child_it = mControlPanel->beginChild();
+		LLView::child_list_const_iter_t child_it_end = mControlPanel->endChild();
+		for(; child_it != child_it_end; ++child_it)
+		{
+			LLButton * buttonp = dynamic_cast<LLButton *>(*child_it);
+			if (buttonp && buttonp->getEnabled())
+			{
+				some_buttons_enabled = true;
+				break;
+			}
+		}
+	}
+
+	return cp_enabled && some_buttons_enabled;
+}
+
 //////////////////////////////////////////////////////////////////////////
 
 LLIMToastNotifyPanel::LLIMToastNotifyPanel(LLNotificationPtr& pNotification, const LLUUID& session_id, const LLRect& rect /* = LLRect::null */,
diff --git a/indra/newview/lltoastnotifypanel.h b/indra/newview/lltoastnotifypanel.h
index d02171b512c3bc91cfad83a7ad25436fa51d979a..fe7f1cf8f3a91e2708c4cead95019f584bbd04f9 100755
--- a/indra/newview/lltoastnotifypanel.h
+++ b/indra/newview/lltoastnotifypanel.h
@@ -69,6 +69,8 @@ class LLToastNotifyPanel: public LLToastPanel, public LLInstanceTracker<LLToastN
 
 	virtual void updateNotification() {}
 
+	bool isControlPanelEnabled() const;
+
 protected:
 	LLButton* createButton(const LLSD& form_element, BOOL is_option);
 
diff --git a/indra/newview/lltoastpanel.cpp b/indra/newview/lltoastpanel.cpp
index a30f8419806e89e1840f3d3fe4ccd858f3cf1c1d..e1b764a9438c541f142126bf9c2dd04fde1b0cab 100755
--- a/indra/newview/lltoastpanel.cpp
+++ b/indra/newview/lltoastpanel.cpp
@@ -52,6 +52,12 @@ std::string LLToastPanel::getTitle()
 	return mNotification->getMessage();
 }
 
+//virtual
+const std::string& LLToastPanel::getNotificationName()
+{
+	return mNotification->getName();
+}
+
 //virtual
 const LLUUID& LLToastPanel::getID()
 {
diff --git a/indra/newview/lltoastpanel.h b/indra/newview/lltoastpanel.h
index e4ab95007e521c104a1ca47f0839000112613a32..51630381f2118ff899b298484a1cc80d21df40d4 100755
--- a/indra/newview/lltoastpanel.h
+++ b/indra/newview/lltoastpanel.h
@@ -45,6 +45,7 @@ class LLToastPanel : public LLPanel {
 	virtual ~LLToastPanel() = 0;
 
 	virtual std::string getTitle();
+	virtual const std::string& getNotificationName();
 	virtual const LLUUID& getID();
 
 	static const S32 MIN_PANEL_HEIGHT;
diff --git a/indra/newview/lltooldraganddrop.cpp b/indra/newview/lltooldraganddrop.cpp
index ef7d0cd81bb13dfd514bc3a526d83c0a38156a45..1a137f7129d5326ad66b5262b7f6b4bd7f20da14 100755
--- a/indra/newview/lltooldraganddrop.cpp
+++ b/indra/newview/lltooldraganddrop.cpp
@@ -355,7 +355,7 @@ void LLToolDragAndDrop::setDragStart(S32 x, S32 y)
 
 BOOL LLToolDragAndDrop::isOverThreshold(S32 x,S32 y)
 {
-	static LLCachedControl<S32> drag_and_drop_threshold(gSavedSettings,"DragAndDropDistanceThreshold");
+	static LLCachedControl<S32> drag_and_drop_threshold(gSavedSettings,"DragAndDropDistanceThreshold", 3);
 	
 	S32 mouse_delta_x = x - mDragStartX;
 	S32 mouse_delta_y = y - mDragStartY;
diff --git a/indra/newview/llviewerjoystick.cpp b/indra/newview/llviewerjoystick.cpp
index f6e840adcd803988264a97bd9c9c8f2b29b1ef81..aeeb591d55f31d33bcb863133970567defed02b2 100755
--- a/indra/newview/llviewerjoystick.cpp
+++ b/indra/newview/llviewerjoystick.cpp
@@ -919,7 +919,7 @@ void LLViewerJoystick::moveFlycam(bool reset)
 		{
 			if (i == X_I || i == Y_I || i == Z_I)
 			{
-				static LLCachedControl<F32> build_mode_scale(gSavedSettings,"FlycamBuildModeScale");
+				static LLCachedControl<F32> build_mode_scale(gSavedSettings,"FlycamBuildModeScale", 1.0);
 				cur_delta[i] *= build_mode_scale;
 			}
 		}
diff --git a/indra/newview/llviewermedia.cpp b/indra/newview/llviewermedia.cpp
index 1a19589a265edcdc9698cc790c56890e4b718354..3a3b00a6048816433a11daa2c99867d379017e02 100755
--- a/indra/newview/llviewermedia.cpp
+++ b/indra/newview/llviewermedia.cpp
@@ -3776,18 +3776,18 @@ bool LLViewerMediaImpl::shouldShowBasedOnClass() const
 	// If it is attached to an avatar and the pref is off, we shouldn't show it
 	if (attached_to_another_avatar)
 	{
-		static LLCachedControl<bool> show_media_on_others(gSavedSettings, LLViewerMedia::SHOW_MEDIA_ON_OTHERS_SETTING);
+		static LLCachedControl<bool> show_media_on_others(gSavedSettings, LLViewerMedia::SHOW_MEDIA_ON_OTHERS_SETTING, false);
 		return show_media_on_others;
 	}
 	if (inside_parcel)
 	{
-		static LLCachedControl<bool> show_media_within_parcel(gSavedSettings, LLViewerMedia::SHOW_MEDIA_WITHIN_PARCEL_SETTING);
+		static LLCachedControl<bool> show_media_within_parcel(gSavedSettings, LLViewerMedia::SHOW_MEDIA_WITHIN_PARCEL_SETTING, true);
 
 		return show_media_within_parcel;
 	}
 	else 
 	{
-		static LLCachedControl<bool> show_media_outside_parcel(gSavedSettings, LLViewerMedia::SHOW_MEDIA_OUTSIDE_PARCEL_SETTING);
+		static LLCachedControl<bool> show_media_outside_parcel(gSavedSettings, LLViewerMedia::SHOW_MEDIA_OUTSIDE_PARCEL_SETTING, true);
 
 		return show_media_outside_parcel;
 	}
diff --git a/indra/newview/llviewermessage.cpp b/indra/newview/llviewermessage.cpp
index ab9ea5618e87230640d52639022b1ef55c8c154f..3574d37adfe1b89c6e61443f8d7a8016c98721ec 100755
--- a/indra/newview/llviewermessage.cpp
+++ b/indra/newview/llviewermessage.cpp
@@ -45,6 +45,7 @@
 #include "llsd.h"
 #include "llsdserialize.h"
 #include "llteleportflags.h"
+#include "lltoastnotifypanel.h"
 #include "lltransactionflags.h"
 #include "llvfile.h"
 #include "llvfs.h"
@@ -3228,7 +3229,20 @@ void process_improved_im(LLMessageSystem *msg, void **user_data)
 			payload["online"] = (offline == IM_ONLINE);
 			payload["sender"] = msg->getSender().getIPandPort();
 
-			if (is_muted)
+			bool add_notification = true;
+			for (LLToastNotifyPanel::instance_iter ti(LLToastNotifyPanel::beginInstances())
+				, tend(LLToastNotifyPanel::endInstances()); ti != tend; ++ti)
+			{
+				LLToastNotifyPanel& panel = *ti;
+				const std::string& notification_name = panel.getNotificationName();
+				if (notification_name == "OfferFriendship" && panel.isControlPanelEnabled())
+				{
+					add_notification = false;
+					break;
+				}
+			}
+
+			if (is_muted && add_notification)
 			{
 				LLNotifications::instance().forceResponse(LLNotification::Params("OfferFriendship").payload(payload), 1);
 			}
@@ -3239,6 +3253,9 @@ void process_improved_im(LLMessageSystem *msg, void **user_data)
 					send_do_not_disturb_message(msg, from_id);
 				}
 				args["NAME_SLURL"] = LLSLURL("agent", from_id, "about").getSLURLString();
+
+				if (add_notification)
+				{
 				if(message.empty())
 				{
 					//support for frienship offers from clients before July 2008
@@ -3254,6 +3271,7 @@ void process_improved_im(LLMessageSystem *msg, void **user_data)
 				}
 			}
 		}
+		}
 		break;
 
 	case IM_FRIENDSHIP_ACCEPTED:
@@ -3816,19 +3834,6 @@ class LLFetchInWelcomeArea : public LLInventoryFetchDescendentsObserver
 				LLInventoryModel::EXCLUDE_TRASH,
 				is_card);
 		}
-		LLSD args;
-		if ( land_items.count() > 0 )
-		{	// Show notification that they can now teleport to landmarks.  Use a random landmark from the inventory
-			S32 random_land = ll_rand( land_items.count() - 1 );
-			args["NAME"] = land_items[random_land]->getName();
-			LLNotificationsUtil::add("TeleportToLandmark",args);
-		}
-		if ( card_items.count() > 0 )
-		{	// Show notification that they can now contact people.  Use a random calling card from the inventory
-			S32 random_card = ll_rand( card_items.count() - 1 );
-			args["NAME"] = card_items[random_card]->getName();
-			LLNotificationsUtil::add("TeleportToPerson",args);
-		}
 
 		gInventory.removeObserver(this);
 		delete this;
@@ -4105,18 +4110,6 @@ void process_agent_movement_complete(LLMessageSystem* msg, void**)
 
 		if (isAgentAvatarValid())
 		{
-			// Chat the "back" SLURL. (DEV-4907)
-
-			LLSLURL slurl;
-			gAgent.getTeleportSourceSLURL(slurl);
-			LLSD substitution = LLSD().with("[T_SLURL]", slurl.getSLURLString());
-			std::string completed_from = LLAgent::sTeleportProgressMessages["completed_from"];
-			LLStringUtil::format(completed_from, substitution);
-
-			LLSD args;
-			args["MESSAGE"] = completed_from;
-			LLNotificationsUtil::add("SystemMessageTip", args);
-
 			// Set the new position
 			gAgentAvatarp->setPositionAgent(agent_pos);
 			gAgentAvatarp->clearChat();
diff --git a/indra/newview/llviewerobject.cpp b/indra/newview/llviewerobject.cpp
index 7151a0d6ed1f76fed2c335d87c07cf6d3e4ef068..1544e66431a9df31e911d66bd40fa820195db038 100755
--- a/indra/newview/llviewerobject.cpp
+++ b/indra/newview/llviewerobject.cpp
@@ -5879,6 +5879,13 @@ void LLViewerObject::resetChildrenPosition(const LLVector3& offset, BOOL simplif
 	return ;
 }
 
+// virtual 
+BOOL	LLViewerObject::isTempAttachment() const
+{
+	return (mID.notNull() && (mID == mAttachmentItemID));
+}
+
+
 const LLUUID &LLViewerObject::getAttachmentItemID() const
 {
 	return mAttachmentItemID;
diff --git a/indra/newview/llviewerobject.h b/indra/newview/llviewerobject.h
index b035473c747e138df6d866a6126a626303c41809..80bdd628a13715beef292aaa62f0c2d2a3f656a4 100755
--- a/indra/newview/llviewerobject.h
+++ b/indra/newview/llviewerobject.h
@@ -171,6 +171,8 @@ class LLViewerObject : public LLPrimitive, public LLRefCount, public LLGLUpdate
 	virtual BOOL	isAttachment() const { return FALSE; }
 	virtual LLVOAvatar* getAvatar() const;  //get the avatar this object is attached to, or NULL if object is not an attachment
 	virtual BOOL	isHUDAttachment() const { return FALSE; }
+	virtual BOOL	isTempAttachment() const;
+
 	virtual void 	updateRadius() {};
 	virtual F32 	getVObjRadius() const; // default implemenation is mDrawable->getRadius()
 	
diff --git a/indra/newview/llviewerregion.cpp b/indra/newview/llviewerregion.cpp
index 02402fa876a249de1aff35338b26792aa449f14a..f56a2dd04f0dcdc1bbd6200f274364a61d31517c 100755
--- a/indra/newview/llviewerregion.cpp
+++ b/indra/newview/llviewerregion.cpp
@@ -232,6 +232,7 @@ class BaseCapabilitiesComplete : public LLHTTPClient::Responder
 		if( mID != regionp->getHttpResponderID() ) // region is no longer referring to this responder
 		{
 			LL_WARNS2("AppInit", "Capabilities") << "Received results for a stale http responder!" << LL_ENDL;
+			regionp->failedSeedCapability();
 			return ;
 		}
 
@@ -301,14 +302,9 @@ class BaseCapabilitiesCompleteTracker :  public LLHTTPClient::Responder
 		
 		if ( regionp->getRegionImpl()->mCapabilities.size() != regionp->getRegionImpl()->mSecondCapabilitiesTracker.size() )
 		{
-			llinfos << "BaseCapabilitiesCompleteTracker " << "sim " << regionp->getName()
-				<< " sent duplicate seed caps that differs in size - most likely content. " 
-				<< (S32) regionp->getRegionImpl()->mCapabilities.size() << " vs " << regionp->getRegionImpl()->mSecondCapabilitiesTracker.size()
-				<< llendl;
-
+			llinfos<<"BaseCapabilitiesCompleteTracker "<<"Sim sent duplicate seed caps that differs in size - most likely content."<<llendl;			
 			//todo#add cap debug versus original check?
-			/*
-			CapabilityMap::const_iterator iter = regionp->getRegionImpl()->mCapabilities.begin();
+			/*CapabilityMap::const_iterator iter = regionp->getRegionImpl()->mCapabilities.begin();
 			while (iter!=regionp->getRegionImpl()->mCapabilities.end() )
 			{
 				llinfos << "BaseCapabilitiesCompleteTracker Original " << iter->first << " " << iter->second<<llendl;
@@ -399,9 +395,6 @@ LLViewerRegion::LLViewerRegion(const U64 &handle,
 	mImpl->mObjectPartition.push_back(new LLBridgePartition());	//PARTITION_BRIDGE
 	mImpl->mObjectPartition.push_back(new LLHUDParticlePartition());//PARTITION_HUD_PARTICLE
 	mImpl->mObjectPartition.push_back(NULL);						//PARTITION_NONE
-
-	mRenderInfoRequestTimer.resetWithExpiry(0.f);		// Set timer to be expired
-	setCapabilitiesReceivedCallback(boost::bind(&LLAvatarRenderInfoAccountant::expireRenderInfoReportTimer, _1));
 }
 
 
@@ -1586,7 +1579,6 @@ void LLViewerRegionImpl::buildCapabilityNames(LLSD& capabilityNames)
 	capabilityNames.append("AgentState");
 	capabilityNames.append("AttachmentResources");
 	capabilityNames.append("AvatarPickerSearch");
-	capabilityNames.append("AvatarRenderInfo");
 	capabilityNames.append("CharacterProperties");
 	capabilityNames.append("ChatSessionRequest");
 	capabilityNames.append("CopyInventoryFromNotecard");
diff --git a/indra/newview/llviewershadermgr.cpp b/indra/newview/llviewershadermgr.cpp
index 50f0a5f1af7e4673585f250b7b16bbab88530943..553f6a2d5993ad2b10986137ca7d7efebdf8bc8a 100755
--- a/indra/newview/llviewershadermgr.cpp
+++ b/indra/newview/llviewershadermgr.cpp
@@ -461,7 +461,7 @@ void LLViewerShaderMgr::setShaders()
 		S32 deferred_class = 0;
 		S32 transform_class = gGLManager.mHasTransformFeedback ? 1 : 0;
 
-		static LLCachedControl<bool> use_transform_feedback(gSavedSettings, "RenderUseTransformFeedback");
+		static LLCachedControl<bool> use_transform_feedback(gSavedSettings, "RenderUseTransformFeedback", false);
 		if (!use_transform_feedback)
 		{
 			transform_class = 0;
diff --git a/indra/newview/llviewertexture.cpp b/indra/newview/llviewertexture.cpp
index 84f66c359fbda3ebcdb3eb8cc54331f97731718e..693eca8a061ba89c39022dfd346a126565e817f8 100755
--- a/indra/newview/llviewertexture.cpp
+++ b/indra/newview/llviewertexture.cpp
@@ -1422,7 +1422,7 @@ void LLViewerFetchedTexture::processTextureStats()
 	{
 		updateVirtualSize() ;
 		
-		static LLCachedControl<bool> textures_fullres(gSavedSettings,"TextureLoadFullRes");
+		static LLCachedControl<bool> textures_fullres(gSavedSettings,"TextureLoadFullRes", false);
 		
 		if (textures_fullres)
 		{
@@ -1747,9 +1747,9 @@ bool LLViewerFetchedTexture::setDebugFetching(S32 debug_level)
 
 bool LLViewerFetchedTexture::updateFetch()
 {
-	static LLCachedControl<bool> textures_decode_disabled(gSavedSettings,"TextureDecodeDisabled");
-	static LLCachedControl<F32>  sCameraMotionThreshold(gSavedSettings,"TextureCameraMotionThreshold");
-	static LLCachedControl<S32>  sCameraMotionBoost(gSavedSettings,"TextureCameraMotionBoost");
+	static LLCachedControl<bool> textures_decode_disabled(gSavedSettings,"TextureDecodeDisabled", false);
+	static LLCachedControl<F32>  sCameraMotionThreshold(gSavedSettings,"TextureCameraMotionThreshold", 0.2);
+	static LLCachedControl<S32>  sCameraMotionBoost(gSavedSettings,"TextureCameraMotionBoost", 3);
 	if(textures_decode_disabled)
 	{
 		return false ;
@@ -2828,7 +2828,7 @@ void LLViewerLODTexture::processTextureStats()
 {
 	updateVirtualSize() ;
 	
-	static LLCachedControl<bool> textures_fullres(gSavedSettings,"TextureLoadFullRes");
+	static LLCachedControl<bool> textures_fullres(gSavedSettings,"TextureLoadFullRes", false);
 	
 	if (textures_fullres)
 	{
diff --git a/indra/newview/llviewertexturelist.cpp b/indra/newview/llviewertexturelist.cpp
index 2efe4665fa393fc0bea784a5fa525cf82e5f9fac..783d1f220226e005091ffcbb96fb694f57214775 100755
--- a/indra/newview/llviewertexturelist.cpp
+++ b/indra/newview/llviewertexturelist.cpp
@@ -500,7 +500,7 @@ LLViewerFetchedTexture* LLViewerTextureList::createImage(const LLUUID &image_id,
 												   LLGLenum primary_format,
 												   LLHost request_from_host)
 {
-	static LLCachedControl<bool> fast_cache_fetching_enabled(gSavedSettings, "FastCacheFetchEnabled");
+	static LLCachedControl<bool> fast_cache_fetching_enabled(gSavedSettings, "FastCacheFetchEnabled", true);
 
 	LLPointer<LLViewerFetchedTexture> imagep ;
 	switch(texture_type)
@@ -1373,7 +1373,7 @@ void LLViewerTextureList::updateMaxResidentTexMem(S32 mem)
 // static
 void LLViewerTextureList::receiveImageHeader(LLMessageSystem *msg, void **user_data)
 {
-	static LLCachedControl<bool> log_texture_traffic(gSavedSettings,"LogTextureNetworkTraffic") ;
+	static LLCachedControl<bool> log_texture_traffic(gSavedSettings,"LogTextureNetworkTraffic", false) ;
 
 	LLFastTimer t(FTM_PROCESS_IMAGES);
 	
@@ -1445,7 +1445,7 @@ void LLViewerTextureList::receiveImageHeader(LLMessageSystem *msg, void **user_d
 // static
 void LLViewerTextureList::receiveImagePacket(LLMessageSystem *msg, void **user_data)
 {
-	static LLCachedControl<bool> log_texture_traffic(gSavedSettings,"LogTextureNetworkTraffic") ;
+	static LLCachedControl<bool> log_texture_traffic(gSavedSettings,"LogTextureNetworkTraffic", false) ;
 
 	LLFastTimer t(FTM_PROCESS_IMAGES);
 	
diff --git a/indra/newview/llviewerwindow.cpp b/indra/newview/llviewerwindow.cpp
index ff7642a773a4cc7a670fc78e21be57b10017a9ee..cb7536edceb09a8383d11c929dae28695bf63a12 100755
--- a/indra/newview/llviewerwindow.cpp
+++ b/indra/newview/llviewerwindow.cpp
@@ -315,7 +315,7 @@ class LLDebugText
 
 	void update()
 	{
-		static LLCachedControl<bool> log_texture_traffic(gSavedSettings,"LogTextureNetworkTraffic") ;
+		static LLCachedControl<bool> log_texture_traffic(gSavedSettings,"LogTextureNetworkTraffic", false) ;
 
 		std::string wind_vel_text;
 		std::string wind_vector_text;
diff --git a/indra/newview/llvoavatar.cpp b/indra/newview/llvoavatar.cpp
index fe035a0a7f9374644164491d180e624d4546230b..c3c1edb0a3cd884266fa6037daca372b0854fa17 100755
--- a/indra/newview/llvoavatar.cpp
+++ b/indra/newview/llvoavatar.cpp
@@ -707,7 +707,7 @@ LLVOAvatar::LLVOAvatar(const LLUUID& id,
 	mVisualComplexityStale(TRUE),
 	mLoadedCallbacksPaused(FALSE),
 	mHasPelvisOffset( FALSE ),
-	mRenderUnloadedAvatar(LLCachedControl<bool>(gSavedSettings, "RenderUnloadedAvatar")),
+	mRenderUnloadedAvatar(LLCachedControl<bool>(gSavedSettings, "RenderUnloadedAvatar", false)),
 	mLastRezzedStatus(-1),
 	mIsEditingAppearance(FALSE),
 	mUseLocalAppearance(FALSE),
@@ -2707,8 +2707,8 @@ void LLVOAvatar::idleUpdateNameTagText(BOOL new_name)
 				LLFontGL::getFontSansSerifSmall());
 		}
 
-		static LLUICachedControl<bool> show_display_names("NameTagShowDisplayNames");
-		static LLUICachedControl<bool> show_usernames("NameTagShowUsernames");
+		static LLUICachedControl<bool> show_display_names("NameTagShowDisplayNames", true);
+		static LLUICachedControl<bool> show_usernames("NameTagShowUsernames", true);
 
 		if (LLAvatarName::useDisplayNames())
 		{
@@ -2934,7 +2934,7 @@ void LLVOAvatar::idleUpdateNameTagAlpha(BOOL new_name, F32 alpha)
 
 LLColor4 LLVOAvatar::getNameTagColor(bool is_friend)
 {
-	static LLUICachedControl<bool> show_friends("NameTagShowFriends");
+	static LLUICachedControl<bool> show_friends("NameTagShowFriends", false);
 	const char* color_name;
 	if (show_friends && is_friend)
 	{
@@ -2989,7 +2989,7 @@ bool LLVOAvatar::isVisuallyMuted()
 
 	if (!isSelf())
 	{
-		static LLCachedControl<U32> render_auto_mute_functions(gSavedSettings, "RenderAutoMuteFunctions");
+		static LLCachedControl<U32> render_auto_mute_functions(gSavedSettings, "RenderAutoMuteFunctions", 0);
 		if (render_auto_mute_functions)		// Hacky debug switch for developing feature
 		{
 			// Priority order (highest priority first)
@@ -3001,9 +3001,9 @@ bool LLVOAvatar::isVisuallyMuted()
 			//       - AND aren't over the thresholds
 			// * otherwise visually mute all other avatars
 
-			static LLCachedControl<U32> max_attachment_bytes(gSavedSettings, "RenderAutoMuteByteLimit");
-			static LLCachedControl<F32> max_attachment_area(gSavedSettings, "RenderAutoMuteSurfaceAreaLimit");
-			static LLCachedControl<U32> max_render_cost(gSavedSettings, "RenderAutoMuteRenderWeightLimit");
+			static LLCachedControl<U32> max_attachment_bytes(gSavedSettings, "RenderAutoMuteByteLimit", 0);
+			static LLCachedControl<F32> max_attachment_area(gSavedSettings, "RenderAutoMuteSurfaceAreaLimit", 0.0);
+			static LLCachedControl<U32> max_render_cost(gSavedSettings, "RenderAutoMuteRenderWeightLimit", 0);
 
 			if (mVisuallyMuteSetting == ALWAYS_VISUAL_MUTE)
 			{	// Always want to see this AV as an impostor
@@ -3390,8 +3390,8 @@ BOOL LLVOAvatar::updateCharacter(LLAgent &agent)
 
 			LLVector3 pelvisDir( mRoot->getWorldMatrix().getFwdRow4().mV );
 
-			static LLCachedControl<F32> s_pelvis_rot_threshold_slow(gSavedSettings, "AvatarRotateThresholdSlow");
-			static LLCachedControl<F32> s_pelvis_rot_threshold_fast(gSavedSettings, "AvatarRotateThresholdFast");
+			static LLCachedControl<F32> s_pelvis_rot_threshold_slow(gSavedSettings, "AvatarRotateThresholdSlow", 60.0);
+			static LLCachedControl<F32> s_pelvis_rot_threshold_fast(gSavedSettings, "AvatarRotateThresholdFast", 2.0);
 
 			F32 pelvis_rot_threshold = clamp_rescale(speed, 0.1f, 1.0f, s_pelvis_rot_threshold_slow, s_pelvis_rot_threshold_fast);
 						
@@ -5521,7 +5521,15 @@ void LLVOAvatar::addChild(LLViewerObject *childp)
 	LLViewerObject::addChild(childp);
 	if (childp->mDrawable)
 	{
-		attachObject(childp);
+		if (!attachObject(childp))
+		{
+			llwarns << "addChild() failed for " 
+					<< childp->getID()
+					<< " item " << childp->getAttachmentItemID()
+					<< llendl;
+			// MAINT-3312 backout
+			// mPendingAttachment.push_back(childp);
+		}
 	}
 	else
 	{
@@ -5554,8 +5562,27 @@ LLViewerJointAttachment* LLVOAvatar::getTargetAttachmentPoint(LLViewerObject* vi
 
 	if (!attachment)
 	{
-		llwarns << "Object attachment point invalid: " << attachmentID << llendl;
+		llwarns << "Object attachment point invalid: " << attachmentID 
+			<< " trying to use 1 (chest)"
+			<< llendl;
+
 		attachment = get_if_there(mAttachmentPoints, 1, (LLViewerJointAttachment*)NULL); // Arbitrary using 1 (chest)
+		if (attachment)
+		{
+			llwarns << "Object attachment point invalid: " << attachmentID 
+				<< " on object " << viewer_object->getID()
+				<< " attachment item " << viewer_object->getAttachmentItemID()
+				<< " falling back to 1 (chest)"
+				<< llendl;
+		}
+		else
+		{
+			llwarns << "Object attachment point invalid: " << attachmentID 
+				<< " on object " << viewer_object->getID()
+				<< " attachment item " << viewer_object->getAttachmentItemID()
+				<< "Unable to use fallback attachment point 1 (chest)"
+				<< llendl;
+		}
 	}
 
 	return attachment;
@@ -5626,13 +5653,22 @@ void LLVOAvatar::lazyAttach()
 	
 	for (U32 i = 0; i < mPendingAttachment.size(); i++)
 	{
-		if (mPendingAttachment[i]->mDrawable)
+		LLPointer<LLViewerObject> cur_attachment = mPendingAttachment[i];
+		if (cur_attachment->mDrawable)
 		{
-			attachObject(mPendingAttachment[i]);
+			if (!attachObject(cur_attachment))
+			{	// Drop it
+				llwarns << "attachObject() failed for " 
+					<< cur_attachment->getID()
+					<< " item " << cur_attachment->getAttachmentItemID()
+					<< llendl;
+				// MAINT-3312 backout
+				//still_pending.push_back(cur_attachment);
+			}
 		}
 		else
 		{
-			still_pending.push_back(mPendingAttachment[i]);
+			still_pending.push_back(cur_attachment);
 		}
 	}
 
@@ -5939,6 +5975,28 @@ BOOL LLVOAvatar::isWearingWearableType(LLWearableType::EType type) const
 
 
 
+LLViewerObject *	LLVOAvatar::findAttachmentByID( const LLUUID & target_id ) const
+{
+	for(attachment_map_t::const_iterator attachment_points_iter = mAttachmentPoints.begin();
+		attachment_points_iter != gAgentAvatarp->mAttachmentPoints.end();
+		++attachment_points_iter)
+	{
+		LLViewerJointAttachment* attachment = attachment_points_iter->second;
+		for (LLViewerJointAttachment::attachedobjs_vec_t::iterator attachment_iter = attachment->mAttachedObjects.begin();
+			 attachment_iter != attachment->mAttachedObjects.end();
+			 ++attachment_iter)
+		{
+			LLViewerObject *attached_object = (*attachment_iter);
+			if (attached_object &&
+				attached_object->getID() == target_id)
+			{
+				return attached_object;
+			}
+		}
+	}
+
+	return NULL;
+}
 
 
 // virtual
@@ -7877,7 +7935,7 @@ void LLVOAvatar::getImpostorValues(LLVector4a* extents, LLVector3& angle, F32& d
 
 void LLVOAvatar::idleUpdateRenderCost()
 {
-	static LLCachedControl<U32> max_render_cost(gSavedSettings, "RenderAutoMuteRenderWeightLimit");
+	static LLCachedControl<U32> max_render_cost(gSavedSettings, "RenderAutoMuteRenderWeightLimit", 0);
 	static const U32 ARC_LIMIT = 20000;
 
 	if (gPipeline.hasRenderDebugMask(LLPipeline::RENDER_DEBUG_ATTACHMENT_BYTES))
diff --git a/indra/newview/llvoavatar.h b/indra/newview/llvoavatar.h
index 931e65b3ea1ca37e66c374ec655b322715dfcf9b..9d45a74ecc931de48e27a79af429cad8ab624670 100755
--- a/indra/newview/llvoavatar.h
+++ b/indra/newview/llvoavatar.h
@@ -731,6 +731,8 @@ class LLVOAvatar :
 	void				cleanupAttachedMesh( LLViewerObject* pVO );
 	static LLVOAvatar*  findAvatarFromAttachment(LLViewerObject* obj);
 	/*virtual*/ BOOL	isWearingWearableType(LLWearableType::EType type ) const;
+	LLViewerObject *	findAttachmentByID( const LLUUID & target_id ) const;
+
 protected:
 	LLViewerJointAttachment* getTargetAttachmentPoint(LLViewerObject* viewer_object);
 	void 				lazyAttach();
diff --git a/indra/newview/llvoiceclient.cpp b/indra/newview/llvoiceclient.cpp
index af55c8f741ad800fba5c576def69a47daca9b7e7..815965fb0a7d495152b48350d1a0e9ead77f8bf7 100755
--- a/indra/newview/llvoiceclient.cpp
+++ b/indra/newview/llvoiceclient.cpp
@@ -113,8 +113,8 @@ LLVoiceClient::LLVoiceClient()
 	:
 	mVoiceModule(NULL),
 	m_servicePump(NULL),
-	mVoiceEffectEnabled(LLCachedControl<bool>(gSavedSettings, "VoiceMorphingEnabled")),
-	mVoiceEffectDefault(LLCachedControl<std::string>(gSavedPerAccountSettings, "VoiceEffectDefault")),
+	mVoiceEffectEnabled(LLCachedControl<bool>(gSavedSettings, "VoiceMorphingEnabled", true)),
+	mVoiceEffectDefault(LLCachedControl<std::string>(gSavedPerAccountSettings, "VoiceEffectDefault", "00000000-0000-0000-0000-000000000000")),
 	mPTTDirty(true),
 	mPTT(true),
 	mUsePTT(true),
diff --git a/indra/newview/llvoicevivox.cpp b/indra/newview/llvoicevivox.cpp
index ff73aa5354569809fb46ae6731692e762a0307c2..9497041482b6253823d11c69ba867aa437e9dd4a 100755
--- a/indra/newview/llvoicevivox.cpp
+++ b/indra/newview/llvoicevivox.cpp
@@ -786,7 +786,6 @@ void LLVivoxVoiceClient::stateMachine()
 						{
 							loglevel = "0";	// turn logging off completely
 						}
-						loglevel = "0";	// turn logging off completely
 						params.args.add("-ll");
 						params.args.add(loglevel);
 						params.cwd = gDirUtilp->getAppRODataDir();
diff --git a/indra/newview/llvovolume.cpp b/indra/newview/llvovolume.cpp
index d9efd23b436c72b702a5a995337de768adfc2f70..c233221e5f33c639147287184b57e93666fe9840 100755
--- a/indra/newview/llvovolume.cpp
+++ b/indra/newview/llvovolume.cpp
@@ -343,6 +343,7 @@ U32 LLVOVolume::processUpdateMessage(LLMessageSystem *mesgsys,
 					}
 				}
 				mTexAnimMode = 0;
+				
 				mTextureAnimp->unpackTAMessage(mesgsys, block_num);
 			}
 			else
@@ -693,7 +694,7 @@ void LLVOVolume::updateTextureVirtualSize(bool forced)
 		}
 	}
 
-	static LLCachedControl<bool> dont_load_textures(gSavedSettings,"TextureDisable");
+	static LLCachedControl<bool> dont_load_textures(gSavedSettings,"TextureDisable", false);
 		
 	if (dont_load_textures || LLAppViewer::getTextureFetch()->mDebugPause) // || !mDrawable->isVisible())
 	{
@@ -1036,8 +1037,7 @@ BOOL LLVOVolume::setVolume(const LLVolumeParams &params_in, const S32 detail, bo
 			}
 		}
 
-
-		static LLCachedControl<bool> use_transform_feedback(gSavedSettings, "RenderUseTransformFeedback");
+		static LLCachedControl<bool> use_transform_feedback(gSavedSettings, "RenderUseTransformFeedback", false);
 
 		bool cache_in_vram = use_transform_feedback && gTransformPositionProgram.mProgramObject &&
 			(!mVolumeImpl || !mVolumeImpl->isVolumeUnique());
@@ -4460,6 +4460,8 @@ void LLVolumeGeometryManager::rebuildGeom(LLSpatialGroup* group)
 
 	bool emissive = false;
 
+	
+
 	{
 		LLFastTimer t(FTM_REBUILD_VOLUME_FACE_LIST);
 
@@ -5198,7 +5200,7 @@ void LLVolumeGeometryManager::genDrawInfo(LLSpatialGroup* group, U32 mask, LLFac
 
 	U32 buffer_usage = group->mBufferUsage;
 	
-	static LLCachedControl<bool> use_transform_feedback(gSavedSettings, "RenderUseTransformFeedback");
+	static LLCachedControl<bool> use_transform_feedback(gSavedSettings, "RenderUseTransformFeedback", false);
 
 	if (use_transform_feedback &&
 		gTransformPositionProgram.mProgramObject && //transform shaders are loaded
diff --git a/indra/newview/llworld.cpp b/indra/newview/llworld.cpp
index 7996f8a64005b31f6e1b3f58f93877639b46c7c5..103668d0510ce381d2daf42038b9d4698e9b56f7 100755
--- a/indra/newview/llworld.cpp
+++ b/indra/newview/llworld.cpp
@@ -140,6 +140,7 @@ LLViewerRegion* LLWorld::addRegion(const U64 &region_handle, const LLHost &host)
 {
 	llinfos << "Add region with handle: " << region_handle << " on host " << host << llendl;
 	LLViewerRegion *regionp = getRegionFromHandle(region_handle);
+	std::string seedUrl;
 	if (regionp)
 	{
 		llinfos << "Region exists, removing it " << llendl;
@@ -161,6 +162,9 @@ LLViewerRegion* LLWorld::addRegion(const U64 &region_handle, const LLHost &host)
 			llwarns << "LLWorld::addRegion exists, but isn't alive" << llendl;
 		}
 
+		// Save capabilities seed URL
+		seedUrl = regionp->getCapability("Seed");
+
 		// Kill the old host, and then we can continue on and add the new host.  We have to kill even if the host
 		// matches, because all the agent state for the new camera is completely different.
 		removeRegion(old_host);
@@ -188,6 +192,11 @@ LLViewerRegion* LLWorld::addRegion(const U64 &region_handle, const LLHost &host)
 		llerrs << "Unable to create new region!" << llendl;
 	}
 
+	if ( !seedUrl.empty() )
+	{
+		regionp->setCapability("Seed", seedUrl);
+	}
+
 	mRegionList.push_back(regionp);
 	mActiveRegionList.push_back(regionp);
 	mCulledRegionList.push_back(regionp);
diff --git a/indra/newview/skins/default/textures/textures.xml b/indra/newview/skins/default/textures/textures.xml
index 751558fc93f19fdc89276f59613d6cdcdd2799b9..47d105728d5fbe9a714e7b258c62792cb5a2a7dc 100755
--- a/indra/newview/skins/default/textures/textures.xml
+++ b/indra/newview/skins/default/textures/textures.xml
@@ -155,6 +155,8 @@ with the same filename but different name
   <texture name="Command_Twitter_Icon"      file_name="toolbar_icons/twitter.png"      preload="true" />
   <texture name="Command_View_Icon"         file_name="toolbar_icons/view.png"         preload="true" />
   <texture name="Command_Voice_Icon"        file_name="toolbar_icons/nearbyvoice.png"  preload="true" />
+  <texture name="Command_Highlighting_Icon" file_name="toolbar_icons/highlighting.png" preload="true" scale.left="4" scale.top="19" scale.right="28" scale.bottom="4" />
+  <texture name="Command_Highlighting_Selected_Icon" file_name="toolbar_icons/highlighting_selected.png" preload="true" scale.left="4" scale.top="19" scale.right="28" scale.bottom="4" />
   <texture name="Caret_Bottom_Icon"         file_name="toolbar_icons/caret_bottom.png" preload="true" scale.left="1" scale.top="23" scale.right="15" scale.bottom="1" />
   <texture name="Caret_Right_Icon"          file_name="toolbar_icons/caret_right.png"  preload="true" scale.left="5" scale.top="15" scale.right="28" scale.bottom="1" />
   <texture name="Caret_Left_Icon"           file_name="toolbar_icons/caret_left.png"   preload="true" scale.left="1" scale.top="15" scale.right="23" scale.bottom="1" />
@@ -165,6 +167,7 @@ with the same filename but different name
   <texture name="ComboButton_On" file_name="widgets/ComboButton_On.png" preload="true" scale.left="2" scale.top="19" scale.right="18" scale.bottom="2" />
   <texture name="ComboButton_Off" file_name="widgets/ComboButton_Off.png" preload="true" scale.left="2" scale.top="19" scale.right="18" scale.bottom="2" />
   <texture name="ComboButton_UpOff" file_name="widgets/ComboButton_UpOff.png" preload="true" scale.left="2" scale.top="19" scale.right="18" scale.bottom="2" />
+  <texture name="ComboButton_Hovered" file_name="widgets/ComboButton_Hover.png" preload="true" scale.left="2" scale.top="19" scale.right="18" scale.bottom="2" />
 
   <texture name="Container" file_name="containers/Container.png" preload="false" />
 
diff --git a/indra/newview/skins/default/textures/toolbar_icons/highlighting.png b/indra/newview/skins/default/textures/toolbar_icons/highlighting.png
new file mode 100644
index 0000000000000000000000000000000000000000..093bace257d61a308ef98d7c3062514e71c1c518
Binary files /dev/null and b/indra/newview/skins/default/textures/toolbar_icons/highlighting.png differ
diff --git a/indra/newview/skins/default/textures/toolbar_icons/highlighting_selected.png b/indra/newview/skins/default/textures/toolbar_icons/highlighting_selected.png
new file mode 100644
index 0000000000000000000000000000000000000000..aa1bb26a56bb19e4b4023fffb5bd9293ee634beb
Binary files /dev/null and b/indra/newview/skins/default/textures/toolbar_icons/highlighting_selected.png differ
diff --git a/indra/newview/skins/default/textures/widgets/ComboButton_Hover.png b/indra/newview/skins/default/textures/widgets/ComboButton_Hover.png
new file mode 100644
index 0000000000000000000000000000000000000000..d492b30b4059aebf49ecd8d4daacbf5fb2c07eff
Binary files /dev/null and b/indra/newview/skins/default/textures/widgets/ComboButton_Hover.png differ
diff --git a/indra/newview/skins/default/xui/da/floater_tools.xml b/indra/newview/skins/default/xui/da/floater_tools.xml
index 815bde456e36d499f0de9ea46a2dd2082afcba24..9be129bbf616c285a5bea52868c0c372309c9876 100755
--- a/indra/newview/skins/default/xui/da/floater_tools.xml
+++ b/indra/newview/skins/default/xui/da/floater_tools.xml
@@ -462,10 +462,6 @@
 				<combo_box.item label="Rør" name="suction"/>
 				<combo_box.item label="Væv" name="weave"/>
 			</combo_box>
-			<check_box initial_value="falsk" label="Flugt planare overflader" name="checkbox planar align" tool_tip="Flugt teksuter på alle valgte overflader med den sidst valgte overflade. Kræver at planar tekstur-mapning er valgt."/>
-			<text name="rpt">
-				Gentagelser / overflade
-			</text>
 			<spinner label="Vandret (U)" name="TexScaleU"/>
 			<check_box label="Vend" name="checkbox flip s"/>
 			<spinner label="Lodret (V)" name="TexScaleV"/>
diff --git a/indra/newview/skins/default/xui/da/panel_preferences_graphics1.xml b/indra/newview/skins/default/xui/da/panel_preferences_graphics1.xml
index 72200a07ad55fe5a18cf82b131151e6881cec827..e494b2b755ac2e427bf3a3bd4ba22097ebca44c1 100755
--- a/indra/newview/skins/default/xui/da/panel_preferences_graphics1.xml
+++ b/indra/newview/skins/default/xui/da/panel_preferences_graphics1.xml
@@ -26,14 +26,14 @@
 		<text name="ShadersText">
 			Overflader:
 		</text>
-		<check_box initial_value="sand" label="Gennemsigtig vand" name="TransparentWater"/>
+		<check_box initial_value="true" label="Gennemsigtig vand" name="TransparentWater"/>
 		<check_box initial_value="true" label="Glatte flader og skin" name="BumpShiny"/>
-		<check_box initial_value="sand" label="Lokale lys" name="LocalLights"/>
+		<check_box initial_value="true" label="Lokale lys" name="LocalLights"/>
 		<check_box initial_value="true" label="Basale flader" name="BasicShaders" tool_tip="Ved at slå dette valg fra, kan det forhindres at visse grafikkort drivere crasher."/>
 		<check_box initial_value="true" label="Atmosfæriske flader" name="WindLightUseAtmosShaders"/>
-		<check_box initial_value="sand" label="Lys og skygger" name="UseLightShaders"/>
-		<check_box initial_value="sand" label="&quot;Ambient Occlusion&quot;" name="UseSSAO"/>
-		<check_box initial_value="sand" label="Skarphedsdybde" name="UseDoF"/>
+		<check_box initial_value="true" label="Lys og skygger" name="UseLightShaders"/>
+		<check_box initial_value="true" label="&quot;Ambient Occlusion&quot;" name="UseSSAO"/>
+		<check_box initial_value="true" label="Skarphedsdybde" name="UseDoF"/>
 		<text name="shadows_label">
 			Skygger:
 		</text>
diff --git a/indra/newview/skins/default/xui/da/panel_preferences_setup.xml b/indra/newview/skins/default/xui/da/panel_preferences_setup.xml
index 479e98817ee76b747ad7859e80838a88b3d8bc2b..7be9a9d5552447211a41772e8de519c9ff7c94d9 100755
--- a/indra/newview/skins/default/xui/da/panel_preferences_setup.xml
+++ b/indra/newview/skins/default/xui/da/panel_preferences_setup.xml
@@ -26,14 +26,13 @@
 		Web:
 	</text>
 	<radio_group name="use_external_browser">
-		<radio_item label="Benyt min browser(IE, Firefox, Safari)" name="external" tool_tip="Brug systemets standard web browser til hjælp, web links, m.v. Ikke anbefalet hvis du kører i fuld-skærm." value="1"/>
+		<radio_item label="Benyt min browser(IE, Firefox, Safari)" name="external" tool_tip="Brug systemets standard web browser til hjælp, web links, m.v. Ikke anbefalet hvis du kører i fuld-skærm." value="true"/>
 		<radio_item label="Benyt den indbyggede browser" name="internal" tool_tip="Brug den indbyggede web browser til hjælp, web links m.v. Denne browser åbner et nyt vindue i [APP_NAME]." value=""/>
 	</radio_group>
 	<check_box initial_value="true" label="Aktivér plugins" name="browser_plugins_enabled"/>
 	<check_box initial_value="true" label="Acceptér cookies" name="cookies_enabled"/>
 	<check_box initial_value="true" label="Aktivér Javascript" name="browser_javascript_enabled"/>
-	<check_box initial_value="fra" label="Tilad media browser pop-ups" name="media_popup_enabled"/>
-	<check_box initial_value="false" label="Aktivér web proxy" name="web_proxy_enabled"/>
+	<check_box initial_value="false" label="Tilad media browser pop-ups" name="media_popup_enabled"/>	
 	<text name="Proxy location">
 		Proxy placering:
 	</text>
diff --git a/indra/newview/skins/default/xui/de/floater_tools.xml b/indra/newview/skins/default/xui/de/floater_tools.xml
index 5f5c34a5cf6d955c82103a33ed62615247524cad..6634a4bd90ca512bbbb6e18db719c5ffdf330a74 100755
--- a/indra/newview/skins/default/xui/de/floater_tools.xml
+++ b/indra/newview/skins/default/xui/de/floater_tools.xml
@@ -466,16 +466,11 @@
 				<combo_box.item label="Saugen" name="suction"/>
 				<combo_box.item label="gewoben" name="weave"/>
 			</combo_box>
-			<check_box initial_value="falsch" label="Flache Oberflächen ausrichten" name="checkbox planar align" tool_tip="Texturen auf allen ausgewählten Oberflächen an der zuletzt ausgewählten Oberfläche ausrichten. Planar Texture Mapping erforderlich."/>
-			<text name="rpt">
-				Wiederholungen / Oberfläche
-			</text>
 			<spinner label="Horizontal (U)" name="TexScaleU"/>
 			<check_box label="Umkehren" name="checkbox flip s"/>
 			<spinner label="Vertikal (V)" name="TexScaleV"/>
 			<check_box label="Umkehren" name="checkbox flip t"/>
 			<spinner label="RotationËš" name="TexRot"/>
-			<spinner label="Wiederholungen / Meter" name="rptctrl"/>
 			<button label="Ãœbernehmen" label_selected="Ãœbernehmen" name="button apply"/>
 			<text name="tex offset">
 				Texture-Versatz
diff --git a/indra/newview/skins/default/xui/en/floater_im_container.xml b/indra/newview/skins/default/xui/en/floater_im_container.xml
index 1215efb7f96478c879bf0c70d9bfaa693d01abe9..28c89868bdd6526bfe04eb892fcda5b05ef6b630 100755
--- a/indra/newview/skins/default/xui/en/floater_im_container.xml
+++ b/indra/newview/skins/default/xui/en/floater_im_container.xml
@@ -41,8 +41,8 @@
          auto_resize="false"
          user_resize="true"        
          name="conversations_layout_panel"
-         min_dim="38"
-         expanded_min_dim="136">
+         min_dim="43"
+         expanded_min_dim="140">
             <layout_stack
              animate="false" 
              follows="left|top|right"
@@ -100,7 +100,7 @@
                 <layout_panel
                  auto_resize="false"
                  name="conversations_pane_buttons_collapsed"
-                 width="31">
+                 width="35">
                     <button
                      follows="right|top"
                      height="25"
@@ -110,10 +110,10 @@
                      image_unselected="Toolbar_Middle_Off"
                      layout="topleft"
                      top="1"
-                     left="0"
+                     left="4"
                      name="expand_collapse_btn"
                      tool_tip="Collapse/Expand this list"
-                     width="31" />
+                     width="35" />
                 </layout_panel>
             </layout_stack>
             <panel
diff --git a/indra/newview/skins/default/xui/en/menu_avatar_icon.xml b/indra/newview/skins/default/xui/en/menu_avatar_icon.xml
index 50910dff32437eba7156eaf03f2ca7aac9cfc720..77b9095f7cdf9996cc9e2506f662b2533f0b3912 100755
--- a/indra/newview/skins/default/xui/en/menu_avatar_icon.xml
+++ b/indra/newview/skins/default/xui/en/menu_avatar_icon.xml
@@ -17,7 +17,7 @@
          parameter="profile" />
     </menu_item_call>
     <menu_item_call
-     label="Send IM..."
+     label="IM"
      layout="topleft"
      name="Send IM">
         <menu_item_call.on_click
@@ -25,7 +25,26 @@
          parameter="im" />
     </menu_item_call>
     <menu_item_call
-     label="Add Friend..."
+     label="Offer teleport"
+     layout="topleft"
+     name="Offer Teleport">
+        <on_click function="AvatarIcon.Action" parameter="teleport"/>
+    </menu_item_call>
+    <menu_item_call
+     label="Voice call"
+     layout="topleft"
+     name="Voice Call">
+        <on_click function="AvatarIcon.Action" parameter="voice_call"/>
+    </menu_item_call>
+    <menu_item_call
+     label="Chat history..."
+     layout="topleft"
+     name="Chat History">
+        <on_click function="AvatarIcon.Action" parameter="chat_history"/>   
+    </menu_item_call>
+    <menu_item_separator layout="topleft" name="separator_chat_history"/>
+    <menu_item_call
+     label="Add friend"
      layout="topleft"
      name="Add Friend">
         <menu_item_call.on_click
@@ -33,11 +52,56 @@
          parameter="add" />
     </menu_item_call>
     <menu_item_call
-     label="Remove Friend..."
+     label="Remove friend"
      layout="topleft"
      name="Remove Friend">
         <menu_item_call.on_click
          function="AvatarIcon.Action"
          parameter="remove" />
     </menu_item_call>
+    <menu_item_call
+     label="Invite to group..."
+     layout="topleft"
+     name="Invite Group">
+      <on_click function="AvatarIcon.Action" parameter="invite_to_group" />   
+    </menu_item_call>
+    <menu_item_separator layout="topleft" name="separator_invite_to_group"/>
+    <menu_item_call
+     label="Zoom In"
+     layout="topleft"
+     name="Zoom In">
+      <on_click function="AvatarIcon.Action" parameter="zoom_in" />
+    </menu_item_call>
+    <menu_item_call
+     label="Map"
+     layout="topleft"
+     name="Map">
+       <on_click function="AvatarIcon.Action" parameter="map" />
+    </menu_item_call>
+    <menu_item_call
+     label="Share"
+     layout="topleft"
+     name="Share">
+       <on_click function="AvatarIcon.Action" parameter="share" />
+    </menu_item_call>
+    <menu_item_call
+     label="Pay"
+     layout="topleft"
+     name="Pay">
+       <on_click function="AvatarIcon.Action" parameter="pay" />
+    </menu_item_call>
+    <menu_item_check
+     label="Block Voice"
+     layout="topleft"
+     name="Block Unblock">
+       <on_click function="AvatarIcon.Action" parameter="block_unblock" />
+       <on_check function="AvatarIcon.Check" parameter="is_blocked" />
+    </menu_item_check>
+    <menu_item_check
+     label="Block Text"
+     layout="topleft"
+     name="Mute Text">
+       <on_click function="AvatarIcon.Action" parameter="mute_unmute" />
+       <on_check function="AvatarIcon.Check" parameter="is_muted" />   
+  </menu_item_check>
 </menu>
diff --git a/indra/newview/skins/default/xui/en/menu_viewer.xml b/indra/newview/skins/default/xui/en/menu_viewer.xml
index 905988e09d9523f15bd9e5b03e2b7a34f8fd529b..74bfd2cf01b935084ddac88ff70d315434f45575 100755
--- a/indra/newview/skins/default/xui/en/menu_viewer.xml
+++ b/indra/newview/skins/default/xui/en/menu_viewer.xml
@@ -1319,18 +1319,18 @@
      tear_off="true">
         <menu_item_call
          label="How to..."
-         name="How To">
+         name="How To"
+         shortcut="F1">
             <menu_item_call.on_click
              function="Help.ToggleHowTo"
              parameter="" />
         </menu_item_call>
         <menu_item_call
-         label="[SECOND_LIFE] Help"
-         name="Second Life Help"
-         shortcut="F1">
+           label="Quickstart"
+           name="Quickstart">
             <menu_item_call.on_click
-             function="ShowHelp"
-             parameter="f1_help" />
+            function="Advanced.ShowURL"
+            parameter="http://community.secondlife.com/t5/English-Knowledge-Base/Second-Life-Quickstart/ta-p/1087919"/>
         </menu_item_call>
 <!--        <menu_item_call
          label="Tutorial"
@@ -1340,20 +1340,12 @@
              parameter="hud" />
         </menu_item_call>-->
 		<menu_item_separator/>
-		
-		<menu_item_call
-             label="User’s guide"
-             name="User’s guide">
-             <menu_item_call.on_click
-                 function="Advanced.ShowURL"
-                 parameter="http://community.secondlife.com/t5/English-Knowledge-Base/Second-Life-User-s-Guide/ta-p/1244857"/>
-        </menu_item_call>
         <menu_item_call
              label="Knowledge Base"
              name="Knowledge Base">
              <menu_item_call.on_click
                  function="Advanced.ShowURL"
-                 parameter="http://community.secondlife.com/t5/tkb/communitypage"/>
+            parameter="http://community.secondlife.com/t5/English-Knowledge-Base/Second-Life-User-s-Guide/ta-p/1244857"/>
         </menu_item_call>
         <menu_item_call
              label="Wiki"
diff --git a/indra/newview/skins/default/xui/en/notifications.xml b/indra/newview/skins/default/xui/en/notifications.xml
index a3c0682aea8c47286d4347f514920ea3ab2a382b..f6db3aa953224e0880261a6e474bce344e9e306e 100755
--- a/indra/newview/skins/default/xui/en/notifications.xml
+++ b/indra/newview/skins/default/xui/en/notifications.xml
@@ -3481,7 +3481,7 @@ or you can install it now.
    name="DownloadBackgroundTip"
    type="notify">
 We have downloaded an update to your [APP_NAME] installation.
-Version [VERSION] [[RELEASE_NOTES_FULL_URL] Information about this update]
+Version [VERSION] [[INFO_URL] Information about this update]
     <tag>confirm</tag>
     <usetemplate
      name="okcancelbuttons"
@@ -3494,7 +3494,7 @@ Version [VERSION] [[RELEASE_NOTES_FULL_URL] Information about this update]
  name="DownloadBackgroundDialog"
  type="alertmodal">
 We have downloaded an update to your [APP_NAME] installation.
-Version [VERSION] [[RELEASE_NOTES_FULL_URL] Information about this update]
+    Version [VERSION] [[INFO_URL] Information about this update]
     <tag>confirm</tag>
     <usetemplate
      name="okcancelbuttons"
@@ -6351,12 +6351,21 @@ You can only claim public land in the Region you&apos;re in.
   <notification
    icon="notify.tga"
    name="RegionTPAccessBlocked"
-   persist="true"
+   persist="false"
    type="notify">
    <tag>fail</tag>
     The region you're trying to visit contains content exceeding your current preferences.  You can change your preferences using Me &gt; Preferences &gt; General.
   </notification>
 
+  <notification
+	icon="notify.tga"
+   name="RegionAboutToShutdown"
+   persist="false"
+   type="notify">
+    <tag>fail</tag>
+    The region you're trying to enter is about to shut down.
+  </notification>
+  
   <notification
 	icon="notify.tga"
 	name="URBannedFromRegion"
@@ -6901,7 +6910,7 @@ This will add a bookmark in your inventory so you can quickly IM this Resident.
    priority="high"
    sound="UISndAlert"
    type="notify">
-This region will restart in [MINUTES] minutes.
+The region "[NAME]" will restart in [MINUTES] minutes.
 If you stay in this region you will be logged out.
   </notification>
 
@@ -6911,7 +6920,7 @@ If you stay in this region you will be logged out.
    priority="high"
    sound="UISndAlert"
    type="notify">
-This region will restart in [SECONDS] seconds.
+The region "[NAME]" will restart in [SECONDS] seconds.
 If you stay in this region you will be logged out.
   </notification>
 
@@ -8794,11 +8803,11 @@ You are no longer allowed here and have [EJECT_TIME] seconds to leave.
 
   <notification
    icon="alertmodal.tga"
-   name="NoEnterServerFull"
+   name="NoEnterRegionMaybeFull"
    type="notify">
    <tag>fail</tag>
-You can't enter this region because 
-the server is full.
+You can't enter region "[NAME]".
+It may be full or restarting soon.
   </notification>
 
   <notification
@@ -9562,6 +9571,14 @@ Cannot attach object because you do not have permission to move it.
 Not enough script resources available to attach object!
   </notification>
 
+  <notification
+   icon="alertmodal.tga"
+   name="CantAttachObjectBeingRemoved"
+   type="notify">
+    <tag>fail</tag>
+    Cannot attach object because it is already being removed.
+  </notification>
+
   <notification
    icon="alertmodal.tga"
    name="CantDropItemTrialUser"
diff --git a/indra/newview/skins/default/xui/en/panel_conversation_list_item.xml b/indra/newview/skins/default/xui/en/panel_conversation_list_item.xml
index a054e71e34710eaa61d99e731fcf50397606a715..4372cf69bf208029e88c52361ea6e21d6c48cce5 100755
--- a/indra/newview/skins/default/xui/en/panel_conversation_list_item.xml
+++ b/indra/newview/skins/default/xui/en/panel_conversation_list_item.xml
@@ -11,7 +11,7 @@
      height="20"
      default_icon_name="Generic_Person"
      layout="topleft"
-     left="5"
+     left="9"
      top="2"
      visible="false"
      width="20" />
@@ -20,7 +20,7 @@
      height="20"
      default_icon_name="Generic_Group"
      layout="topleft"
-     left="5"
+     left="9"
      top="2"
      visible="false"
      width="20" />
@@ -29,9 +29,9 @@
      height="20"
      image_name="Nearby_chat_icon"
      layout="topleft"
-     left="5"
+     left="10"
      name="nearby_chat_icon"
-     top="2"
+     top="3"
      visible="false"
      width="20"/>
     <layout_stack
diff --git a/indra/newview/skins/default/xui/en/panel_navigation_bar.xml b/indra/newview/skins/default/xui/en/panel_navigation_bar.xml
index 3edeb9aa3670b7e782b7afac5715e28633fbeb5c..c7edba21f85aa56e2ea2e084102ed0a56b7d3ef9 100755
--- a/indra/newview/skins/default/xui/en/panel_navigation_bar.xml
+++ b/indra/newview/skins/default/xui/en/panel_navigation_bar.xml
@@ -87,6 +87,7 @@
 	         direction="down"
 	         height="23"
 	         image_overlay="Arrow_Left_Off"
+	         image_hover_unselected="PushButton_Over"
 	         image_bottom_pad="1"
 	         layout="topleft"
 	         left="10"
@@ -99,6 +100,7 @@
 	         direction="down"
 	         height="23"
 	         image_overlay="Arrow_Right_Off"
+	         image_hover_unselected="PushButton_Over"
 	         image_bottom_pad="1"
 	         layout="topleft"
 	         left_pad="0"
@@ -111,6 +113,7 @@
 	         height="23"
 	         image_bottom_pad="1"
 	         image_overlay="Home_Off"
+	         image_hover_unselected="PushButton_Over"
 	         layout="topleft"
 	         left_pad="7"
 	         name="home_btn"
diff --git a/indra/newview/skins/default/xui/en/panel_people.xml b/indra/newview/skins/default/xui/en/panel_people.xml
index dc0e4a594752055fd9512085094a22c13acaf36c..3caf2b3d7efab2f286bc8d49b343816c7f19f92c 100755
--- a/indra/newview/skins/default/xui/en/panel_people.xml
+++ b/indra/newview/skins/default/xui/en/panel_people.xml
@@ -66,7 +66,8 @@ Looking for people to hang out with? Try the [secondlife:///app/worldmap World M
      tab_position="top"
      top="0"
      halign="center"
-     right="-5">
+     right="-5"
+     use_highlighting_on_hover="true">
 
 <!-- ================================= NEARBY tab =========================== -->
 
@@ -500,7 +501,7 @@ Looking for people to hang out with? Try the [secondlife:///app/worldmap World M
             <text
                 type="string"
                 length="1"
-                follows="all"
+                follows="left|top|right"
                 height="14"
                 layout="topleft"
                 right="-10"
diff --git a/indra/newview/skins/default/xui/en/strings.xml b/indra/newview/skins/default/xui/en/strings.xml
index 3806e1287c5467fe1b9a92efc74c3a86cd7d9634..d226a72d7b23551f88ffc3a7a40a067c206ec2c3 100755
--- a/indra/newview/skins/default/xui/en/strings.xml
+++ b/indra/newview/skins/default/xui/en/strings.xml
@@ -468,6 +468,8 @@ Please try logging in again in a minute.</string>
 	<string name="load_file_verb">Load</string>
 	<string name="targa_image_files">Targa Images</string>
 	<string name="bitmap_image_files">Bitmap Images</string>
+	<string name="png_image_files">PNG Images</string>
+	<string name="save_texture_image_files">Targa or PNG Images</string>
 	<string name="avi_movie_file">AVI Movie File</string>
 	<string name="xaf_animation_file">XAF Anim File</string>
 	<string name="xml_file">XML File</string>
diff --git a/indra/newview/skins/default/xui/en/widgets/location_input.xml b/indra/newview/skins/default/xui/en/widgets/location_input.xml
index 61ec046649d85ddced12ac0f6810beb9a2af34a4..4ea1aa6efbef011e50aa451780be76313855d0fb 100755
--- a/indra/newview/skins/default/xui/en/widgets/location_input.xml
+++ b/indra/newview/skins/default/xui/en/widgets/location_input.xml
@@ -150,6 +150,7 @@
   <combo_button
 		name="Location History"
                 label=""
+                image_hover_unselected="ComboButton_Hovered"
                 pad_right="0"/>
   <combo_list
 	      bg_writeable_color="MenuDefaultBgColor"
diff --git a/indra/newview/skins/default/xui/en/widgets/tab_container.xml b/indra/newview/skins/default/xui/en/widgets/tab_container.xml
index 0586119681a5cf16953c5bd056eec0a9e2b8298f..9559be214a56117ef6e2efe10afe12c3e45e6d32 100755
--- a/indra/newview/skins/default/xui/en/widgets/tab_container.xml
+++ b/indra/newview/skins/default/xui/en/widgets/tab_container.xml
@@ -24,17 +24,26 @@ label_pad_left - padding to the left of tab button labels
                tab_bottom_image_unselected="Toolbar_Left_Off"
                tab_bottom_image_selected="Toolbar_Left_Selected"
                tab_left_image_unselected="SegmentedBtn_Left_Disabled"
-               tab_left_image_selected="SegmentedBtn_Left_Selected_Over"/>
+               tab_left_image_selected="SegmentedBtn_Left_Selected_Over"
+               tab_top_image_hovered="TabTop_Left_Selected"
+               tab_button_image_hovered="Toolbar_Left_Selected"
+               tab_left_image_hovered="SegmentedBtn_Left_Selected_Over"/>
   <middle_tab tab_top_image_unselected="TabTop_Middle_Off"
                tab_top_image_selected="TabTop_Middle_Selected"
                tab_bottom_image_unselected="Toolbar_Middle_Off"
                tab_bottom_image_selected="Toolbar_Middle_Selected"
                tab_left_image_unselected="SegmentedBtn_Left_Disabled"
-               tab_left_image_selected="SegmentedBtn_Left_Selected_Over"/>
+               tab_left_image_selected="SegmentedBtn_Left_Selected_Over"
+               tab_top_image_hovered="TabTop_Middle_Selected"
+               tab_button_image_hovered="Toolbar_Middle_Selected"
+               tab_left_image_hovered="SegmentedBtn_Left_Selected_Over"/>
   <last_tab tab_top_image_unselected="TabTop_Right_Off"
                tab_top_image_selected="TabTop_Right_Selected"
                tab_bottom_image_unselected="Toolbar_Right_Off"
                tab_bottom_image_selected="Toolbar_Right_Selected"
                tab_left_image_unselected="SegmentedBtn_Left_Disabled"
-               tab_left_image_selected="SegmentedBtn_Left_Selected_Over"/>
+               tab_left_image_selected="SegmentedBtn_Left_Selected_Over"
+               tab_top_image_hovered="TabTop_Right_Selected"
+               tab_button_image_hovered="Toolbar_Right_Selected"
+               tab_left_image_hovered="SegmentedBtn_Left_Selected_Over"/>
 </tab_container>
diff --git a/indra/newview/skins/default/xui/es/floater_hardware_settings.xml b/indra/newview/skins/default/xui/es/floater_hardware_settings.xml
index c351db5eaecebc72ec35c37f1dab14da7bc3b1bb..c2327c96c442f9d379de53a0cc6da013c8fb91e9 100755
--- a/indra/newview/skins/default/xui/es/floater_hardware_settings.xml
+++ b/indra/newview/skins/default/xui/es/floater_hardware_settings.xml
@@ -28,7 +28,7 @@
 	<text name="tc label">
 		Activar S3TC:
 	</text>
-	<check_box initial_value="verdadero" label="Activar la compresión de texturas (requiere reiniciar)" name="texture compression" tool_tip="Comprime las texturas de la memoria de vídeo, lo cual permite cargar texturas de una resolución más alta, pero con una cierta pérdida de calidad del color."/>
+	<check_box initial_value="true" label="Activar la compresión de texturas (requiere reiniciar)" name="texture compression" tool_tip="Comprime las texturas de la memoria de vídeo, lo cual permite cargar texturas de una resolución más alta, pero con una cierta pérdida de calidad del color."/>
 	<slider label="Memoria para texturas (MB):" name="GraphicsCardTextureMemory" tool_tip="Cantidad de memoria asignada a las texturas. Por defecto es la memoria de la tarjeta de vídeo. Reducir esta cantidad puede mejorar el rendimiento, pero también hacer que las texturas se vean borrosas."/>
 	<spinner label="Intensidad de la niebla:" name="fog"/>
 	<button label="OK" label_selected="OK" name="OK"/>
diff --git a/indra/newview/skins/default/xui/es/floater_tools.xml b/indra/newview/skins/default/xui/es/floater_tools.xml
index 15462c37266fe1cd17d50a6f054d82d1ab4a7a38..32baa5bb7dbb51e64c7ff326dfb406bcb203cf51 100755
--- a/indra/newview/skins/default/xui/es/floater_tools.xml
+++ b/indra/newview/skins/default/xui/es/floater_tools.xml
@@ -443,16 +443,11 @@
 				<combo_box.item label="succión" name="suction"/>
 				<combo_box.item label="tejido" name="weave"/>
 			</combo_box>
-			<check_box initial_value="falso" label="Alinear caras del plano" name="checkbox planar align" tool_tip="Alinear texturas en todas las caras seleccionadas con la última cara seleccionada. Requiere la representación de texturas en el plano."/>
-			<text name="rpt">
-				Repeticiones por cara
-			</text>
 			<spinner label="Horizontal (U)" name="TexScaleU"/>
 			<check_box label="Voltear" name="checkbox flip s"/>
 			<spinner label="Vertical (V)" name="TexScaleV"/>
 			<check_box label="Voltear" name="checkbox flip t"/>
 			<spinner label="Rotación" name="TexRot"/>
-			<spinner label="Repeticiones / Metro" name="rptctrl"/>
 			<button label="Aplicar" label_selected="Aplicar" name="button apply"/>
 			<text name="tex offset">
 				Desplazar
diff --git a/indra/newview/skins/default/xui/es/panel_preferences_graphics1.xml b/indra/newview/skins/default/xui/es/panel_preferences_graphics1.xml
index 9362f767086fbf096b4b8aefdb710b0a7ca29d34..a9eab74e2b5983df5c94430368dd16c6ae23029f 100755
--- a/indra/newview/skins/default/xui/es/panel_preferences_graphics1.xml
+++ b/indra/newview/skins/default/xui/es/panel_preferences_graphics1.xml
@@ -25,14 +25,14 @@
 		<text name="ShadersText">
 			Shaders:
 		</text>
-		<check_box initial_value="verdadero" label="Agua transparente" name="TransparentWater"/>
+		<check_box initial_value="true" label="Agua transparente" name="TransparentWater"/>
 		<check_box initial_value="true" label="Efecto de relieve y brillo" name="BumpShiny"/>
-		<check_box initial_value="verdadero" label="Luces locales" name="LocalLights"/>
+		<check_box initial_value="true" label="Luces locales" name="LocalLights"/>
 		<check_box initial_value="true" label="Shaders básicos" name="BasicShaders" tool_tip="Desactivando esta opción puede prevenir fallos en algunos controladores de la tarjeta gráfica."/>
 		<check_box initial_value="true" label="Shaders de la atmósfera" name="WindLightUseAtmosShaders"/>
-		<check_box initial_value="verdadero" label="Modelo de iluminación avanzado" name="UseLightShaders"/>
-		<check_box initial_value="verdadero" label="Oclusión del ambiente" name="UseSSAO"/>
-		<check_box initial_value="verdadero" label="Profundidad del campo" name="UseDoF"/>
+		<check_box initial_value="true" label="Modelo de iluminación avanzado" name="UseLightShaders"/>
+		<check_box initial_value="true" label="Oclusión del ambiente" name="UseSSAO"/>
+		<check_box initial_value="true" label="Profundidad del campo" name="UseDoF"/>
 		<text name="shadows_label">
 			Sombras:
 		</text>
diff --git a/indra/newview/skins/default/xui/es/panel_preferences_setup.xml b/indra/newview/skins/default/xui/es/panel_preferences_setup.xml
index f7eaa03d632cc3cd2b0460ac18849d1bebd9cf9e..508bfbcd3262ac6375e1132d3fa297c1287577f7 100755
--- a/indra/newview/skins/default/xui/es/panel_preferences_setup.xml
+++ b/indra/newview/skins/default/xui/es/panel_preferences_setup.xml
@@ -21,7 +21,7 @@
 	<check_box initial_value="true" label="Activar plugins" name="browser_plugins_enabled"/>
 	<check_box initial_value="true" label="Aceptar las &apos;cookies&apos;" name="cookies_enabled"/>
 	<check_box initial_value="true" label="Activar Javascript" name="browser_javascript_enabled"/>
-	<check_box initial_value="falso" label="Permitir las ventanas emergentes en el navegador" name="media_popup_enabled"/>
+	<check_box initial_value="false" label="Permitir las ventanas emergentes en el navegador" name="media_popup_enabled"/>
 	<text name="Software updates:">
 		Actualizaciones de software:
 	</text>
diff --git a/indra/newview/skins/default/xui/es/panel_preferences_sound.xml b/indra/newview/skins/default/xui/es/panel_preferences_sound.xml
index 5cb1654c70302d8e70c45ff2ddbfdeb41c9cbaa9..dcd698471520f3058181562cb0a8da84f0d20c42 100755
--- a/indra/newview/skins/default/xui/es/panel_preferences_sound.xml
+++ b/indra/newview/skins/default/xui/es/panel_preferences_sound.xml
@@ -19,7 +19,7 @@
 	<check_box label="Activado" name="enable_voice_check"/>
 	<check_box label="Permitir la ejecución automática de los media" name="media_auto_play_btn" tool_tip="Marcar esto para permitir la ejecución automática de los media" value="true"/>
 	<check_box label="Ejecutar para otros avatares los media anexados" name="media_show_on_others_btn" tool_tip="Al desmarcar esto se esconderán los media anexados a otros avatares cercanos" value="true"/>
-	<check_box label="Reproducir sonidos de los gestos" name="gesture_audio_play_btn" tool_tip="Selecciona esta opción para escuchar los sonidos de los gestos" value="verdadero"/>
+	<check_box label="Reproducir sonidos de los gestos" name="gesture_audio_play_btn" tool_tip="Selecciona esta opción para escuchar los sonidos de los gestos" value="true"/>
 	<text name="voice_chat_settings">
 		Configuración del chat de voz
 	</text>
diff --git a/indra/newview/skins/default/xui/es/panel_tools_texture.xml b/indra/newview/skins/default/xui/es/panel_tools_texture.xml
index 7199905a1c72fbd0a8fff89a5d51345760568199..b820880e60a43f5f37bb263f73ae0769357a9332 100644
--- a/indra/newview/skins/default/xui/es/panel_tools_texture.xml
+++ b/indra/newview/skins/default/xui/es/panel_tools_texture.xml
@@ -112,5 +112,5 @@
 	<spinner label="Grados de rotación" name="shinyRot"/>
 	<spinner label="Desplazamiento horizontal" name="shinyOffsetU"/>
 	<spinner label="Desplazamiento vertical" name="shinyOffsetV"/>
-	<check_box initial_value="falso" label="Alinear caras del plano" name="checkbox planar align" tool_tip="Alinear texturas en todas las caras seleccionadas con la última cara seleccionada. Requiere la representación de texturas en el plano."/>
+	<check_box initial_value="false" label="Alinear caras del plano" name="checkbox planar align" tool_tip="Alinear texturas en todas las caras seleccionadas con la última cara seleccionada. Requiere la representación de texturas en el plano."/>
 </panel>
diff --git a/indra/newview/skins/default/xui/fr/floater_hardware_settings.xml b/indra/newview/skins/default/xui/fr/floater_hardware_settings.xml
index 098f8fc7131522940ce660937ff5c56df87c2c55..bb146556ba0f1ae1cc8ae159722fb441b9f3d54e 100755
--- a/indra/newview/skins/default/xui/fr/floater_hardware_settings.xml
+++ b/indra/newview/skins/default/xui/fr/floater_hardware_settings.xml
@@ -28,7 +28,7 @@
 	<text name="tc label">
 		Activer S3TC :
 	</text>
-	<check_box initial_value="vraie" label="Activer la compression des textures (redémarrage requis)" name="texture compression" tool_tip="Comprime les textures en mémoire vidéo afin de permettre de charger des textures de résolution plus élevée au prix d&apos;une certaine qualité de couleur."/>
+	<check_box initial_value="true" label="Activer la compression des textures (redémarrage requis)" name="texture compression" tool_tip="Comprime les textures en mémoire vidéo afin de permettre de charger des textures de résolution plus élevée au prix d&apos;une certaine qualité de couleur."/>
 	<slider label="Mémoire textures (Mo) :" name="GraphicsCardTextureMemory" tool_tip="Quantité de mémoire à affecter aux textures. Utilise la mémoire de la carte vidéo par défaut. Si vous réduisez ce paramètre, cela peut améliorer les performances, mais les textures risquent d&apos;être floues."/>
 	<spinner label="Indice du brouillard :" name="fog"/>
 	<button label="OK" label_selected="OK" name="OK"/>
diff --git a/indra/newview/skins/default/xui/fr/floater_tools.xml b/indra/newview/skins/default/xui/fr/floater_tools.xml
index bcc3423862aac23afa7778e750445298bab83146..421e14d51baf8ba1c1a8b54e75c0d9d023f5a14e 100755
--- a/indra/newview/skins/default/xui/fr/floater_tools.xml
+++ b/indra/newview/skins/default/xui/fr/floater_tools.xml
@@ -463,16 +463,11 @@
 				<combo_box.item label="Ventouses" name="suction"/>
 				<combo_box.item label="Tissage" name="weave"/>
 			</combo_box>
-			<check_box initial_value="false" label="Aligner les faces Plan" name="checkbox planar align" tool_tip="Aligner les textures sur toutes les faces sélectionnées avec la dernière face sélectionnée. Application de la texture Plan requise."/>
-			<text name="rpt">
-				Répétitions / Face
-			</text>
 			<spinner label="Horizontal (U)" name="TexScaleU"/>
 			<check_box label="Inverser" name="checkbox flip s"/>
 			<spinner label="Vertical (V)" name="TexScaleV"/>
 			<check_box label="Inverser" name="checkbox flip t"/>
 			<spinner label="RotationËš" name="TexRot"/>
-			<spinner label="Répétitions / Mètre" name="rptctrl"/>
 			<button label="Appliquer" label_selected="Appliquer" name="button apply"/>
 			<text name="tex offset">
 				Décalage de la texture
diff --git a/indra/newview/skins/default/xui/it/floater_tools.xml b/indra/newview/skins/default/xui/it/floater_tools.xml
index dd59035dd4f59a288227a374bfccd93efeb34322..468f284ccb00bc7d124e7434c8bbf7c715d8e454 100755
--- a/indra/newview/skins/default/xui/it/floater_tools.xml
+++ b/indra/newview/skins/default/xui/it/floater_tools.xml
@@ -470,16 +470,11 @@
 				<combo_box.item label="Cerchi rialzati" name="suction"/>
 				<combo_box.item label="Trama" name="weave"/>
 			</combo_box>
-			<check_box initial_value="falso" label="Allinea facce planari" name="checkbox planar align" tool_tip="Allinea le texture su tutte le facce selezionate con l’ultima faccia selezionata. È richiesta la mappatura planare delle texture."/>
-			<text name="rpt">
-				Ripetizioni / Faccia
-			</text>
 			<spinner label="Orizzontale (U)" name="TexScaleU"/>
 			<check_box label="Inverti" name="checkbox flip s"/>
 			<spinner label="Verticale (V)" name="TexScaleV"/>
 			<check_box label="Inverti" name="checkbox flip t"/>
 			<spinner label="RotazioneËš" name="TexRot"/>
-			<spinner label="Ripetizioni / Metro" name="rptctrl"/>
 			<button label="Applica" label_selected="Applica" name="button apply"/>
 			<text name="tex offset">
 				Bilanciamento della texture
diff --git a/indra/newview/skins/default/xui/it/panel_preferences_graphics1.xml b/indra/newview/skins/default/xui/it/panel_preferences_graphics1.xml
index e7483b1ba5c385e72d542383be4e6513cf58301f..2978c48db6a7fc4a054ffa06d65bb22808184355 100755
--- a/indra/newview/skins/default/xui/it/panel_preferences_graphics1.xml
+++ b/indra/newview/skins/default/xui/it/panel_preferences_graphics1.xml
@@ -25,7 +25,7 @@
 		<text name="ShadersText">
 			Effetti grafici:
 		</text>
-		<check_box initial_value="vero" label="Acqua trasparente" name="TransparentWater"/>
+		<check_box initial_value="true" label="Acqua trasparente" name="TransparentWater"/>
 		<check_box initial_value="true" label="Piccoli rilievi e scintillii" name="BumpShiny"/>
 		<check_box initial_value="true" label="Luci locali" name="LocalLights"/>
 		<check_box initial_value="true" label="Effetti grafici base" name="BasicShaders" tool_tip="Disabilitare questa opzione può evitare che qualche scheda grafica vada in crash."/>
diff --git a/indra/newview/skins/default/xui/it/panel_preferences_setup.xml b/indra/newview/skins/default/xui/it/panel_preferences_setup.xml
index 4c190197b43e542b6642813401171e453d9d839a..fcc9661d03aa838b9a8424b0b64fe53da3c9efd3 100755
--- a/indra/newview/skins/default/xui/it/panel_preferences_setup.xml
+++ b/indra/newview/skins/default/xui/it/panel_preferences_setup.xml
@@ -21,7 +21,7 @@
 	<check_box initial_value="true" label="Abilita plugin" name="browser_plugins_enabled"/>
 	<check_box initial_value="true" label="Accetta cookie" name="cookies_enabled"/>
 	<check_box initial_value="true" label="Abilita Javascript" name="browser_javascript_enabled"/>
-	<check_box initial_value="falso" label="Consenti pop-up nel browser media" name="media_popup_enabled"/>
+	<check_box initial_value="false" label="Consenti pop-up nel browser media" name="media_popup_enabled"/>
 	<text name="Software updates:">
 		Aggiornamenti software:
 	</text>
diff --git a/indra/newview/skins/default/xui/it/panel_tools_texture.xml b/indra/newview/skins/default/xui/it/panel_tools_texture.xml
index 4e515563aca3a929fd964861523df048a2ecd33e..36ad2980cb1afca36e22dfd1380ef351952221ec 100644
--- a/indra/newview/skins/default/xui/it/panel_tools_texture.xml
+++ b/indra/newview/skins/default/xui/it/panel_tools_texture.xml
@@ -112,5 +112,5 @@
 	<spinner label="Gradi di rotazione" name="shinyRot"/>
 	<spinner label="Spostamento orizzontale" name="shinyOffsetU"/>
 	<spinner label="Spostamento verticale" name="shinyOffsetV"/>
-	<check_box initial_value="falso" label="Allinea facce planari" name="checkbox planar align" tool_tip="Allinea le texture su tutte le facce selezionate con l’ultima faccia selezionata. È richiesta la mappatura planare delle texture."/>
+	<check_box initial_value="false" label="Allinea facce planari" name="checkbox planar align" tool_tip="Allinea le texture su tutte le facce selezionate con l’ultima faccia selezionata. È richiesta la mappatura planare delle texture."/>
 </panel>
diff --git a/indra/newview/skins/default/xui/ja/floater_tools.xml b/indra/newview/skins/default/xui/ja/floater_tools.xml
index 4bd6439ad25e35287f9f036e5129847a4bd6f2f8..5511433ae3773d5b30090936c19a723a7e1f093b 100755
--- a/indra/newview/skins/default/xui/ja/floater_tools.xml
+++ b/indra/newview/skins/default/xui/ja/floater_tools.xml
@@ -469,16 +469,11 @@
 				<combo_box.item label="吸い込み" name="suction"/>
 				<combo_box.item label="織目" name="weave"/>
 			</combo_box>
-			<check_box initial_value="false" label="平面を揃える" name="checkbox planar align" tool_tip="選択面全てのテクスチャを、最後に選択された面に揃えます。 平面テクスチャのマッピングが必要です。"/>
-			<text name="rpt">
-				反復 / 面
-			</text>
 			<spinner label="水平(U)" name="TexScaleU"/>
 			<check_box label="反転" name="checkbox flip s"/>
 			<spinner label="垂直(V)" name="TexScaleV"/>
 			<check_box label="反転" name="checkbox flip t"/>
 			<spinner label="回転˚" name="TexRot"/>
-			<spinner label="反復 / メーター" name="rptctrl"/>
 			<button label="適用" label_selected="適用" name="button apply"/>
 			<text name="tex offset">
 				テクスチャのズレ
diff --git a/indra/newview/skins/default/xui/pl/floater_tools.xml b/indra/newview/skins/default/xui/pl/floater_tools.xml
index 9e6fed838764667ce242b701813c3d0d59c2adb3..69d5c23f9c8dc82385cfc9b572485574b56680cb 100755
--- a/indra/newview/skins/default/xui/pl/floater_tools.xml
+++ b/indra/newview/skins/default/xui/pl/floater_tools.xml
@@ -442,16 +442,11 @@
 				<combo_box.item label="Suction" name="suction"/>
 				<combo_box.item label="Fali" name="weave"/>
 			</combo_box>
-			<check_box initial_value="nieprawda" label="Połącz powierzchnie planarne" name="checkbox planar align" tool_tip="Połącz tekstury na wszystkich wybranych powierzchniach z powierzchnią wybraną jako ostatnia. Wymaga planarnego mapowania tekstury."/>
-			<text name="rpt">
-				Powtórzenia / Powierzchnia
-			</text>
 			<spinner label="Poziomo (U)" name="TexScaleU"/>
 			<check_box label="Odwróć" name="checkbox flip s"/>
 			<spinner label="Pionowo (V)" name="TexScaleV"/>
 			<check_box label="Odwróć" name="checkbox flip t"/>
 			<spinner label="Powtórzenia˚" name="TexRot"/>
-			<spinner label="Powtórzenia / metr" name="rptctrl"/>
 			<button label="Zastosuj" label_selected="Zastosuj" name="button apply"/>
 			<text name="tex offset">
 				Wyrównanie tekstury
diff --git a/indra/newview/skins/default/xui/pl/panel_preferences_graphics1.xml b/indra/newview/skins/default/xui/pl/panel_preferences_graphics1.xml
index f2beef091a413646edb99fefe1b43d950a79af0c..4cd271a14125868d8418b2c4db77f39a3d0624ec 100755
--- a/indra/newview/skins/default/xui/pl/panel_preferences_graphics1.xml
+++ b/indra/newview/skins/default/xui/pl/panel_preferences_graphics1.xml
@@ -26,7 +26,7 @@
 		<text name="ShadersText">
 			Cieniowanie pixeli (shadery):
 		</text>
-		<check_box initial_value="prawda" label="Przeźroczystość wody" name="TransparentWater"/>
+		<check_box initial_value="true" label="Przeźroczystość wody" name="TransparentWater"/>
 		<check_box initial_value="true" label="Mapowanie wypukłości i połysk" name="BumpShiny"/>
 		<check_box initial_value="true" label="Podstawowe shadery" name="BasicShaders" tool_tip="Wyłączenie tej opcji może naprawić błędy niektórych sterowników graficznych."/>
 		<check_box initial_value="true" label="Shadery atmosfery" name="WindLightUseAtmosShaders"/>
diff --git a/indra/newview/skins/default/xui/pl/panel_preferences_setup.xml b/indra/newview/skins/default/xui/pl/panel_preferences_setup.xml
index fa0a5981a8711f62b775bf2f231710522d54790b..b663e182278bd38c7125f0bb72bd61726c37ab7d 100755
--- a/indra/newview/skins/default/xui/pl/panel_preferences_setup.xml
+++ b/indra/newview/skins/default/xui/pl/panel_preferences_setup.xml
@@ -26,14 +26,13 @@
 		Internet:
 	</text>
 	<radio_group name="use_external_browser">
-		<radio_item label="Użyj zewnętrznej przeglądarki (IE, Firefox, Safari)" name="external" tool_tip="Używaj zewnętrznej przeglądarki. Nie jest to rekomendowane w trybie pełnoekranowym." value="1"/>
+		<radio_item label="Użyj zewnętrznej przeglądarki (IE, Firefox, Safari)" name="external" tool_tip="Używaj zewnętrznej przeglądarki. Nie jest to rekomendowane w trybie pełnoekranowym." value="true"/>
 		<radio_item label="Używaj wbudowanej przeglądarki." name="internal" tool_tip="Używaj wbudowanej przeglądarki. Ta przeglądarka otworzy nowe okno w [APP_NAME]." value=""/>
 	</radio_group>
 	<check_box initial_value="true" label="Zezwalaj na wtyczki" name="browser_plugins_enabled"/>
 	<check_box initial_value="true" label="Akceptuj ciasteczka z Internetu" name="cookies_enabled"/>
 	<check_box initial_value="true" label="Zezwalaj na Javascript" name="browser_javascript_enabled"/>
-	<check_box initial_value="nieprawda" label="Zezwól na wyskakujące okienka przeglądarki mediów" name="media_popup_enabled"/>
-	<check_box initial_value="false" label="Używaj serwera proxy" name="web_proxy_enabled"/>
+	<check_box initial_value="false" label="Zezwól na wyskakujące okienka przeglądarki mediów" name="media_popup_enabled"/>
 	<text name="Proxy location">
 		Lokalizacja proxy:
 	</text>
diff --git a/indra/newview/skins/default/xui/pt/floater_tools.xml b/indra/newview/skins/default/xui/pt/floater_tools.xml
index 8c245c582e227d04b0346372fdaeb8d4a218f913..66c14cdecfeb02277dbf0f11d1fdccd8a17f406c 100755
--- a/indra/newview/skins/default/xui/pt/floater_tools.xml
+++ b/indra/newview/skins/default/xui/pt/floater_tools.xml
@@ -463,16 +463,11 @@
 				<combo_box.item label="Sulcos" name="suction"/>
 				<combo_box.item label="Weave" name="weave"/>
 			</combo_box>
-			<check_box initial_value="falso" label="Alinhar planares" name="checkbox planar align" tool_tip="Alinhar texturas dos planos selecionados com o plano selecionado por último. Requer mapeamento planar da textura."/>
-			<text name="rpt">
-				Repetições / Plano
-			</text>
 			<spinner label="Horizontal (U)" name="TexScaleU"/>
 			<check_box label="Inverter" name="checkbox flip s"/>
 			<spinner label="Vertical (V)" name="TexScaleV"/>
 			<check_box label="Inverter" name="checkbox flip t"/>
 			<spinner label="Rotação˚" name="TexRot"/>
-			<spinner label="Repetições/Metro" name="rptctrl"/>
 			<button label="Aplicar" label_selected="Aplicar" name="button apply"/>
 			<text name="tex offset">
 				Offset de textura
diff --git a/indra/newview/skins/default/xui/pt/panel_preferences_graphics1.xml b/indra/newview/skins/default/xui/pt/panel_preferences_graphics1.xml
index 37e8838bf431f075aa9a8da0bd697510213e0b0d..756e345cb8c437909537a9fdc677728132bd1199 100755
--- a/indra/newview/skins/default/xui/pt/panel_preferences_graphics1.xml
+++ b/indra/newview/skins/default/xui/pt/panel_preferences_graphics1.xml
@@ -26,14 +26,14 @@ rápido
 		<text name="ShadersText">
 			Sombreadores:
 		</text>
-		<check_box initial_value="verdadeiro" label="Água transparente" name="TransparentWater"/>
+		<check_box initial_value="true" label="Água transparente" name="TransparentWater"/>
 		<check_box initial_value="true" label="Bump de Mapeamento e Brilho" name="BumpShiny"/>
-		<check_box initial_value="verdadeiro" label="Luzes locais" name="LocalLights"/>
+		<check_box initial_value="true" label="Luzes locais" name="LocalLights"/>
 		<check_box initial_value="true" label="Sombreadores básicos" name="BasicShaders" tool_tip="Desabilitar esta opção poderá impedir que alguns drivers de placa de vídeo a travem."/>
 		<check_box initial_value="true" label="Sombreadores Atmosféricos" name="WindLightUseAtmosShaders"/>
-		<check_box initial_value="verdadeiro" label="Modelo avançado de luzes" name="UseLightShaders"/>
-		<check_box initial_value="verdadeiro" label="Oclusão ambiental" name="UseSSAO"/>
-		<check_box initial_value="verdadeiro" label="Profundidade" name="UseDoF"/>
+		<check_box initial_value="true" label="Modelo avançado de luzes" name="UseLightShaders"/>
+		<check_box initial_value="true" label="Oclusão ambiental" name="UseSSAO"/>
+		<check_box initial_value="true" label="Profundidade" name="UseDoF"/>
 		<text name="shadows_label">
 			Sombras:
 		</text>
diff --git a/indra/newview/skins/default/xui/pt/panel_preferences_setup.xml b/indra/newview/skins/default/xui/pt/panel_preferences_setup.xml
index 887d0cfe98c4782d5bdadbd93b3df4da8a2bbbe5..1279e74e21dcaa759241263fa32edb26263d2687 100755
--- a/indra/newview/skins/default/xui/pt/panel_preferences_setup.xml
+++ b/indra/newview/skins/default/xui/pt/panel_preferences_setup.xml
@@ -21,7 +21,7 @@
 	<check_box initial_value="true" label="Habilitar plugins" name="browser_plugins_enabled"/>
 	<check_box initial_value="true" label="Aceitar cookies" name="cookies_enabled"/>
 	<check_box initial_value="true" label="Habilitar Javascript" name="browser_javascript_enabled"/>
-	<check_box initial_value="falso" label="Ativar pop-ups no navegador de mídia" name="media_popup_enabled"/>
+	<check_box initial_value="false" label="Ativar pop-ups no navegador de mídia" name="media_popup_enabled"/>
 	<text name="Software updates:">
 		Atualizações de software:
 	</text>
diff --git a/indra/newview/skins/default/xui/pt/panel_preferences_sound.xml b/indra/newview/skins/default/xui/pt/panel_preferences_sound.xml
index d910a7b812e9a0e782cbad0c27f3d4a0c4de951d..fff5fd700579be2ac80588e0c9d910f9460a2342 100755
--- a/indra/newview/skins/default/xui/pt/panel_preferences_sound.xml
+++ b/indra/newview/skins/default/xui/pt/panel_preferences_sound.xml
@@ -19,7 +19,7 @@
 	<check_box label="Ativado" name="enable_voice_check"/>
 	<check_box label="Autorizar auto-play de mídias" name="media_auto_play_btn" tool_tip="Marque esta opção para auto-executar mídias, se elas quiserem" value="true"/>
 	<check_box label="Tocar mídia anexada em outros avatares" name="media_show_on_others_btn" tool_tip="Desmarque esta opção para ocultar mídias anexadas em avatares por perto" value="true"/>
-	<check_box label="Tocar áudio de gestos" name="gesture_audio_play_btn" tool_tip="Selecione para ouvir o áudio de gestos" value="verdadeiro"/>
+	<check_box label="Tocar áudio de gestos" name="gesture_audio_play_btn" tool_tip="Selecione para ouvir o áudio de gestos" value="true"/>
 	<text name="voice_chat_settings">
 		Configuração de bate-papo de voz
 	</text>
diff --git a/indra/newview/skins/default/xui/ru/floater_auction.xml b/indra/newview/skins/default/xui/ru/floater_auction.xml
index d84dc2e941247dfc4f0f934e24100e5e0b0dcfb4..105c75c919f96bafdadd5c1806c2e16338bc286d 100755
--- a/indra/newview/skins/default/xui/ru/floater_auction.xml
+++ b/indra/newview/skins/default/xui/ru/floater_auction.xml
@@ -3,7 +3,7 @@
 	<floater.string name="already for sale">
 		Нельзя выставить на аукцион участки, которые уже продаются.
 	</floater.string>
-	<check_box initial_value="истина" label="Включая желтую ограду вокруг выбранного участка" name="fence_check"/>
+	<check_box initial_value="true" label="Включая желтую ограду вокруг выбранного участка" name="fence_check"/>
 	<button label="Снимок" label_selected="Снимок" name="snapshot_btn"/>
 	<button label="Купить может каждый" label_selected="Купить может каждый" name="sell_to_anyone_btn"/>
 	<button label="Очистить настройки" label_selected="Очистить настройки" name="reset_parcel_btn"/>
diff --git a/indra/newview/skins/default/xui/ru/floater_bulk_perms.xml b/indra/newview/skins/default/xui/ru/floater_bulk_perms.xml
index 31fc1c5ed3585f20f29b13ab0c8bf91e3865bdf6..304bf97dc1b11721474616d37464016495f24005 100755
--- a/indra/newview/skins/default/xui/ru/floater_bulk_perms.xml
+++ b/indra/newview/skins/default/xui/ru/floater_bulk_perms.xml
@@ -39,7 +39,7 @@
 	</text>
 	<check_box label="Изменять" name="next_owner_modify"/>
 	<check_box label="Копировать" name="next_owner_copy"/>
-	<check_box initial_value="истина" label="Передать" name="next_owner_transfer" tool_tip="Следующий владелец может отдать или перепродать объект"/>
+	<check_box initial_value="true" label="Передать" name="next_owner_transfer" tool_tip="Следующий владелец может отдать или перепродать объект"/>
 	<button label="OK" name="ok"/>
 	<button label="Применить" name="apply"/>
 	<button label="Отмена" name="close"/>
diff --git a/indra/newview/skins/default/xui/ru/floater_hardware_settings.xml b/indra/newview/skins/default/xui/ru/floater_hardware_settings.xml
index 43f8c364734de444741691165fefb79923367707..d7da112a273e8faef0f2a26c507b05dddb3a85f3 100755
--- a/indra/newview/skins/default/xui/ru/floater_hardware_settings.xml
+++ b/indra/newview/skins/default/xui/ru/floater_hardware_settings.xml
@@ -24,7 +24,7 @@
 	<text name="Enable VBO:">
 		Включить VBO:
 	</text>
-	<check_box initial_value="истина" label="Включить объекты вершинных буферов OpenGL" name="vbo" tool_tip="Включение этого параметра на современном оборудовании даст увеличение производительности.  Однако на старом оборудовании это может привести к сбою приложения."/>
+	<check_box initial_value="true" label="Включить объекты вершинных буферов OpenGL" name="vbo" tool_tip="Включение этого параметра на современном оборудовании даст увеличение производительности.  Однако на старом оборудовании это может привести к сбою приложения."/>
 	<text name="tc label">
 		Включить S3TC:
 	</text>
diff --git a/indra/newview/skins/default/xui/ru/floater_live_lsleditor.xml b/indra/newview/skins/default/xui/ru/floater_live_lsleditor.xml
index d8047fc0453b37f902cfe5fb9aa362293392e22c..fb6e747592041be29fa1c2e2463fe652e0b5df2a 100755
--- a/indra/newview/skins/default/xui/ru/floater_live_lsleditor.xml
+++ b/indra/newview/skins/default/xui/ru/floater_live_lsleditor.xml
@@ -10,6 +10,6 @@
 		СКРИПТ: [NAME]
 	</floater.string>
 	<button label="Сброс" label_selected="Сброс" name="Reset"/>
-	<check_box initial_value="истина" label="Выполняется" name="running"/>
-	<check_box initial_value="истина" label="Моно" name="mono"/>
+	<check_box initial_value="true" label="Выполняется" name="running"/>
+	<check_box initial_value="true" label="Моно" name="mono"/>
 </floater>
diff --git a/indra/newview/skins/default/xui/ru/floater_perm_prefs.xml b/indra/newview/skins/default/xui/ru/floater_perm_prefs.xml
index a704b87bd1667b50aaa0374e463395c549982941..626f3c9321287f21460746ff0dafb7a1e9eecdeb 100755
--- a/indra/newview/skins/default/xui/ru/floater_perm_prefs.xml
+++ b/indra/newview/skins/default/xui/ru/floater_perm_prefs.xml
@@ -8,7 +8,7 @@
 		</text>
 		<check_box label="изменять" name="next_owner_modify"/>
 		<check_box label="копировать" name="next_owner_copy"/>
-		<check_box initial_value="истина" label="перепродавать/отдавать" name="next_owner_transfer"/>
+		<check_box initial_value="true" label="перепродавать/отдавать" name="next_owner_transfer"/>
 	</panel>
 	<button label="ОК" label_selected="ОК" name="ok"/>
 	<button label="Отмена" label_selected="Отмена" name="cancel"/>
diff --git a/indra/newview/skins/default/xui/ru/floater_preferences_proxy.xml b/indra/newview/skins/default/xui/ru/floater_preferences_proxy.xml
index 4eecfedf172becc2241775d8d9c49ff7837240ec..13cff2bcbe58d0978e9fb9e4de95954880aff22a 100755
--- a/indra/newview/skins/default/xui/ru/floater_preferences_proxy.xml
+++ b/indra/newview/skins/default/xui/ru/floater_preferences_proxy.xml
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="utf-8" standalone="yes"?>
 <floater name="Proxy Settings Floater" title="Настройки прокси-сервера">
-	<check_box initial_value="ложь" label="Использовать HTTP-прокси для веб-страниц" name="web_proxy_enabled"/>
+	<check_box initial_value="false" label="Использовать HTTP-прокси для веб-страниц" name="web_proxy_enabled"/>
 	<text name="http_proxy_label">
 		HTTP-прокси:
 	</text>
diff --git a/indra/newview/skins/default/xui/ru/floater_settings_debug.xml b/indra/newview/skins/default/xui/ru/floater_settings_debug.xml
index 7db014ef53d5e7120623ef43cdaed85e03d09f46..db78d11e90cf955186d862738d6293155e3f4bed 100755
--- a/indra/newview/skins/default/xui/ru/floater_settings_debug.xml
+++ b/indra/newview/skins/default/xui/ru/floater_settings_debug.xml
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="utf-8" standalone="yes"?>
 <floater name="settings_debug" title="НАСТРОЙКИ ОТЛАДКИ">
 	<radio_group name="boolean_combo">
-		<radio_item label="ИСТИНА" name="TRUE" value="истина"/>
+		<radio_item label="ИСТИНА" name="TRUE" value="true"/>
 		<radio_item label="ЛОЖЬ" name="FALSE" value=""/>
 	</radio_group>
 	<color_swatch label="Цвет" name="val_color_swatch"/>
diff --git a/indra/newview/skins/default/xui/ru/floater_texture_ctrl.xml b/indra/newview/skins/default/xui/ru/floater_texture_ctrl.xml
index a9a21e7d4a1b84f75ebadba17435ff201f74e4e2..c9e117362f9226b2b219a142a4fc1986310483b4 100755
--- a/indra/newview/skins/default/xui/ru/floater_texture_ctrl.xml
+++ b/indra/newview/skins/default/xui/ru/floater_texture_ctrl.xml
@@ -19,10 +19,10 @@
 	<button label="По умолчанию" label_selected="По умолчанию" name="Default"/>
 	<button label="Очистить" label_selected="Очистить" name="Blank"/>
 	<button label="Нет" label_selected="Нет" name="None"/>
-	<check_box initial_value="истина" label="Применить сейчас" name="apply_immediate_check"/>
+	<check_box initial_value="true" label="Применить сейчас" name="apply_immediate_check"/>
 	<text name="preview_disabled" value="Просмотр отключен"/>
 	<filter_editor label="Фильтровать текстуры" name="inventory search editor"/>
-	<check_box initial_value="ложь" label="Показывать папки" name="show_folders_check"/>
+	<check_box initial_value="false" label="Показывать папки" name="show_folders_check"/>
 	<button label="Добавить" label_selected="Добавить" name="l_add_btn"/>
 	<button label="Удалить" label_selected="Удалить" name="l_rem_btn"/>
 	<button label="Передать" label_selected="Передать" name="l_upl_btn"/>
diff --git a/indra/newview/skins/default/xui/ru/floater_tools.xml b/indra/newview/skins/default/xui/ru/floater_tools.xml
index c312f73428bd8ad628fe29eeb5c89a9f3c11721a..35921d147fd01863e756c02ef4cbe492420450d8 100755
--- a/indra/newview/skins/default/xui/ru/floater_tools.xml
+++ b/indra/newview/skins/default/xui/ru/floater_tools.xml
@@ -76,8 +76,8 @@
 	<text label="Растяжка обеих сторон" name="checkbox uniform label">
 		Растяжка обеих сторон
 	</text>
-	<check_box initial_value="истина" label="Растягивать текстуры" name="checkbox stretch textures"/>
-	<check_box initial_value="истина" label="Привязка" name="checkbox snap to grid"/>
+	<check_box initial_value="true" label="Растягивать текстуры" name="checkbox stretch textures"/>
+	<check_box initial_value="true" label="Привязка" name="checkbox snap to grid"/>
 	<combo_box name="combobox grid mode" tool_tip="Выберите тип линейки сетки для размещения объекта">
 		<combo_box.item label="Мировая" name="World"/>
 		<combo_box.item label="Локальная" name="Local"/>
@@ -101,7 +101,7 @@
 	<button name="ToolGrass" tool_tip="Трава"/>
 	<check_box label="Держать инструмент" name="checkbox sticky"/>
 	<check_box label="Копировать выдел." name="checkbox copy selection"/>
-	<check_box initial_value="истина" label="Центрир. копию" name="checkbox copy centers"/>
+	<check_box initial_value="true" label="Центрир. копию" name="checkbox copy centers"/>
 	<check_box label="Повернуть копию" name="checkbox copy rotates"/>
 	<radio_group name="land_radio_group">
 		<radio_item label="Выбрать землю" name="radio select land"/>
@@ -465,16 +465,11 @@
 				<combo_box.item label="присоска" name="suction"/>
 				<combo_box.item label="переплетение" name="weave"/>
 			</combo_box>
-			<check_box initial_value="ложь" label="Согласование" name="checkbox planar align" tool_tip="Согласование текстур на всех выбранных граних по последней выбранной грани. Должно быть выбрано наложение по плоскостям."/>
-			<text name="rpt">
-				Повторов на грань
-			</text>
 			<spinner label="По горизонтали (U)" name="TexScaleU"/>
 			<check_box label="Разворот" name="checkbox flip s"/>
 			<spinner label="По вертикали (V)" name="TexScaleV"/>
 			<check_box label="Разворот" name="checkbox flip t"/>
 			<spinner label="Вращение˚" name="TexRot"/>
-			<spinner label="Повторов на метр" name="rptctrl"/>
 			<button label="Применить" label_selected="Применить" name="button apply"/>
 			<text name="tex offset">
 				Сдвиг текстуры
diff --git a/indra/newview/skins/default/xui/ru/floater_world_map.xml b/indra/newview/skins/default/xui/ru/floater_world_map.xml
index ef8dfe22ae9352343c980d4bd0f2528bbacd960a..7d2acfd9a0dea61378f0370e9ce6c6adb07faccb 100755
--- a/indra/newview/skins/default/xui/ru/floater_world_map.xml
+++ b/indra/newview/skins/default/xui/ru/floater_world_map.xml
@@ -35,7 +35,7 @@
 		<text name="pg_label">
 			Общие
 		</text>
-		<check_box initial_value="истина" name="events_mature_chk"/>
+		<check_box initial_value="true" name="events_mature_chk"/>
 		<text name="events_mature_label">
 			Умеренные
 		</text>
diff --git a/indra/newview/skins/default/xui/ru/panel_group_general.xml b/indra/newview/skins/default/xui/ru/panel_group_general.xml
index 4d7e1c9fffcaa19867bc0c05efa5036f774aa530..ba38dbf89e743394365a4463487e8461e02e49b3 100755
--- a/indra/newview/skins/default/xui/ru/panel_group_general.xml
+++ b/indra/newview/skins/default/xui/ru/panel_group_general.xml
@@ -51,6 +51,6 @@
 			<combo_box.item label="Умеренный контент" name="mature"/>
 			<combo_box.item label="Общий контент" name="pg"/>
 		</combo_box>
-		<check_box initial_value="истина" label="Показать в поиске" name="show_in_group_list" tool_tip="Позволить людям видеть эту группу в результатах поиска"/>
+		<check_box initial_value="true" label="Показать в поиске" name="show_in_group_list" tool_tip="Позволить людям видеть эту группу в результатах поиска"/>
 	</panel>
 </panel>
diff --git a/indra/newview/skins/default/xui/ru/panel_media_settings_general.xml b/indra/newview/skins/default/xui/ru/panel_media_settings_general.xml
index 6dc435db20a3fc0aa27df32be7cbf623c177d203..d52397832cb3e7849100f00ef705d6d2f59cc45a 100755
--- a/indra/newview/skins/default/xui/ru/panel_media_settings_general.xml
+++ b/indra/newview/skins/default/xui/ru/panel_media_settings_general.xml
@@ -15,14 +15,14 @@
 	</text>
 	<text name="current_url" tool_tip="Текущая страница для этого медиа-источника" value=""/>
 	<button label="Сброс" name="current_url_reset_btn"/>
-	<check_box initial_value="ложь" label="Автоматическое зацикливание" name="auto_loop"/>
-	<check_box initial_value="ложь" label="Реакция на первый щелчок" name="first_click_interact"/>
-	<check_box initial_value="ложь" label="Автоувеличение" name="auto_zoom"/>
-	<check_box initial_value="ложь" label="Автоматическое проигрывание" name="auto_play"/>
+	<check_box initial_value="false" label="Автоматическое зацикливание" name="auto_loop"/>
+	<check_box initial_value="false" label="Реакция на первый щелчок" name="first_click_interact"/>
+	<check_box initial_value="false" label="Автоувеличение" name="auto_zoom"/>
+	<check_box initial_value="false" label="Автоматическое проигрывание" name="auto_play"/>
 	<text name="media_setting_note">
 		Примечание. Жители могут переопределять эту настройку.
 	</text>
-	<check_box initial_value="ложь" label="Автомасштабирование на объекте" name="auto_scale"/>
+	<check_box initial_value="false" label="Автомасштабирование на объекте" name="auto_scale"/>
 	<text name="size_label">
 		Размер:
 	</text>
diff --git a/indra/newview/skins/default/xui/ru/panel_media_settings_permissions.xml b/indra/newview/skins/default/xui/ru/panel_media_settings_permissions.xml
index 680cba9c140c0d53df03b381a7cbff3b523edf2c..cfb006f34676aefe0b1443862939073e9002b7dd 100755
--- a/indra/newview/skins/default/xui/ru/panel_media_settings_permissions.xml
+++ b/indra/newview/skins/default/xui/ru/panel_media_settings_permissions.xml
@@ -14,16 +14,16 @@
 	<text name="owner_label">
 		Владелец
 	</text>
-	<check_box initial_value="ложь" label="Разрешить навигацию и взаимодействие" name="perms_owner_interact"/>
-	<check_box initial_value="ложь" label="Панель управления видна" name="perms_owner_control"/>
+	<check_box initial_value="false" label="Разрешить навигацию и взаимодействие" name="perms_owner_interact"/>
+	<check_box initial_value="false" label="Панель управления видна" name="perms_owner_control"/>
 	<text name="group_label">
 		Группа:
 	</text>
-	<check_box initial_value="ложь" label="Разрешить навигацию и взаимодействие" name="perms_group_interact"/>
-	<check_box initial_value="ложь" label="Панель управления видна" name="perms_group_control"/>
+	<check_box initial_value="false" label="Разрешить навигацию и взаимодействие" name="perms_group_interact"/>
+	<check_box initial_value="false" label="Панель управления видна" name="perms_group_control"/>
 	<text name="anyone_label">
 		всем
 	</text>
-	<check_box initial_value="ложь" label="Разрешить навигацию и взаимодействие" name="perms_anyone_interact"/>
-	<check_box initial_value="ложь" label="Панель управления видна" name="perms_anyone_control"/>
+	<check_box initial_value="false" label="Разрешить навигацию и взаимодействие" name="perms_anyone_interact"/>
+	<check_box initial_value="false" label="Панель управления видна" name="perms_anyone_control"/>
 </panel>
diff --git a/indra/newview/skins/default/xui/ru/panel_media_settings_security.xml b/indra/newview/skins/default/xui/ru/panel_media_settings_security.xml
index 6b30dc799cb375b205f7e85cf3f58956cb0d5557..bae491472a9fb6a0a10254239072dfc34e806f99 100755
--- a/indra/newview/skins/default/xui/ru/panel_media_settings_security.xml
+++ b/indra/newview/skins/default/xui/ru/panel_media_settings_security.xml
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="utf-8" standalone="yes"?>
 <panel label="Безопасность" name="Media Settings Security">
-	<check_box initial_value="ложь" label="Разрешить доступ к ссылкам только по шаблону" name="whitelist_enable"/>
+	<check_box initial_value="false" label="Разрешить доступ к ссылкам только по шаблону" name="whitelist_enable"/>
 	<text name="home_url_fails_some_items_in_whitelist">
 		Пункты, не подходящие для домашней страницы, отмечены знаком:
 	</text>
diff --git a/indra/newview/skins/default/xui/ru/panel_preferences_general.xml b/indra/newview/skins/default/xui/ru/panel_preferences_general.xml
index c7a850f78a11cd0901e819aaeea411817f7cd757..62617caed389552702363bd8110dac9144236fe6 100755
--- a/indra/newview/skins/default/xui/ru/panel_preferences_general.xml
+++ b/indra/newview/skins/default/xui/ru/panel_preferences_general.xml
@@ -36,7 +36,7 @@
 		<combo_box.item label="Мое последнее место" name="MyLastLocation"/>
 		<combo_box.item label="Мой дом" name="MyHome"/>
 	</combo_box>
-	<check_box initial_value="истина" label="Показывать на экране входа" name="show_location_checkbox"/>
+	<check_box initial_value="true" label="Показывать на экране входа" name="show_location_checkbox"/>
 	<text name="name_tags_textbox">
 		Теги имен:
 	</text>
diff --git a/indra/newview/skins/default/xui/ru/panel_preferences_graphics1.xml b/indra/newview/skins/default/xui/ru/panel_preferences_graphics1.xml
index 029e72e1379f78db8a8c9cb395af0a15ba28e1b7..c93955fcdce648ec9f775d7771832c9f8a2e82e6 100755
--- a/indra/newview/skins/default/xui/ru/panel_preferences_graphics1.xml
+++ b/indra/newview/skins/default/xui/ru/panel_preferences_graphics1.xml
@@ -25,14 +25,14 @@
 		<text name="ShadersText">
 			Шейдеры:
 		</text>
-		<check_box initial_value="истина" label="Прозрачность воды" name="TransparentWater"/>
-		<check_box initial_value="истина" label="Рельефность и сияние" name="BumpShiny"/>
-		<check_box initial_value="истина" label="Локальный свет" name="LocalLights"/>
-		<check_box initial_value="истина" label="Базовые шейдеры" name="BasicShaders" tool_tip="Отключение этого параметра может предотвратить зависание некоторых видеокарт"/>
-		<check_box initial_value="истина" label="Атмосферные шейдеры" name="WindLightUseAtmosShaders"/>
-		<check_box initial_value="истина" label="Расширенная модель освещения" name="UseLightShaders"/>
-		<check_box initial_value="истина" label="Объемный свет" name="UseSSAO"/>
-		<check_box initial_value="истина" label="Глубина поля" name="UseDoF"/>
+		<check_box initial_value="true" label="Прозрачность воды" name="TransparentWater"/>
+		<check_box initial_value="true" label="Рельефность и сияние" name="BumpShiny"/>
+		<check_box initial_value="true" label="Локальный свет" name="LocalLights"/>
+		<check_box initial_value="true" label="Базовые шейдеры" name="BasicShaders" tool_tip="Отключение этого параметра может предотвратить зависание некоторых видеокарт"/>
+		<check_box initial_value="true" label="Атмосферные шейдеры" name="WindLightUseAtmosShaders"/>
+		<check_box initial_value="true" label="Расширенная модель освещения" name="UseLightShaders"/>
+		<check_box initial_value="true" label="Объемный свет" name="UseSSAO"/>
+		<check_box initial_value="true" label="Глубина поля" name="UseDoF"/>
 		<text name="shadows_label">
 			Тени:
 		</text>
@@ -95,9 +95,9 @@
 		<text name="AvatarRenderingText">
 			Отрисовка аватара:
 		</text>
-		<check_box initial_value="истина" label="Плоские аватары" name="AvatarImpostors"/>
-		<check_box initial_value="истина" label="Аппаратная отрисовка" name="AvatarVertexProgram"/>
-		<check_box initial_value="истина" label="Одежда аватара" name="AvatarCloth"/>
+		<check_box initial_value="true" label="Плоские аватары" name="AvatarImpostors"/>
+		<check_box initial_value="true" label="Аппаратная отрисовка" name="AvatarVertexProgram"/>
+		<check_box initial_value="true" label="Одежда аватара" name="AvatarCloth"/>
 		<text name="TerrainDetailText">
 			Ландшафт:
 		</text>
diff --git a/indra/newview/skins/default/xui/ru/panel_preferences_setup.xml b/indra/newview/skins/default/xui/ru/panel_preferences_setup.xml
index e9c0c7de10791f95459c0aef8fbf6545f4ff8101..1741397a8411403911c2cafaec35e3e89e271f6c 100755
--- a/indra/newview/skins/default/xui/ru/panel_preferences_setup.xml
+++ b/indra/newview/skins/default/xui/ru/panel_preferences_setup.xml
@@ -18,10 +18,10 @@
 		<radio_item label="Использовать мой браузер (IE, Firefox, Safari)" name="external" tool_tip="Будет использоваться браузер, заданный в системе по умолчанию. Не рекомендуется, если [APP_NAME] работает в полноэкранном режиме." value="true"/>
 		<radio_item label="Использовать встроенный браузер" name="internal" tool_tip="Для просмотра справки, ссылок на веб-страницы и т. д. будет использоваться встроенный браузер. Этот браузер открывается как новое окно в [APP_NAME]." value=""/>
 	</radio_group>
-	<check_box initial_value="истина" label="Разрешить плагины" name="browser_plugins_enabled"/>
-	<check_box initial_value="истина" label="Принимать файлы cookie" name="cookies_enabled"/>
-	<check_box initial_value="истина" label="Разрешить Javascript" name="browser_javascript_enabled"/>
-	<check_box initial_value="ложь" label="Разрешить всплывающие окна" name="media_popup_enabled"/>
+	<check_box initial_value="true" label="Разрешить плагины" name="browser_plugins_enabled"/>
+	<check_box initial_value="true" label="Принимать файлы cookie" name="cookies_enabled"/>
+	<check_box initial_value="true" label="Разрешить Javascript" name="browser_javascript_enabled"/>
+	<check_box initial_value="false" label="Разрешить всплывающие окна" name="media_popup_enabled"/>
 	<text name="Software updates:">
 		Обновления ПО:
 	</text>
diff --git a/indra/newview/skins/default/xui/ru/panel_preferences_sound.xml b/indra/newview/skins/default/xui/ru/panel_preferences_sound.xml
index bf673750d22b3ec811cfdf91a1e687d0ad865bc6..44f270527c538bbba3ac25431f6b4239ffdd3527 100755
--- a/indra/newview/skins/default/xui/ru/panel_preferences_sound.xml
+++ b/indra/newview/skins/default/xui/ru/panel_preferences_sound.xml
@@ -4,7 +4,7 @@
 		среднюю кнопку мыши
 	</panel.string>
 	<slider label="Общая громкость" name="System Volume"/>
-	<check_box initial_value="истина" name="mute_when_minimized"/>
+	<check_box initial_value="true" name="mute_when_minimized"/>
 	<text name="mute_chb_label">
 		Заглушать, когда свернуто
 	</text>
@@ -17,9 +17,9 @@
 	<check_box label="Включено" name="enable_media"/>
 	<slider label="Голосовой чат" name="Voice Volume"/>
 	<check_box label="Включено" name="enable_voice_check"/>
-	<check_box label="Разрешить автовоспроизведение медиа" name="media_auto_play_btn" tool_tip="Установка флажка позволит вам автоматически воспроизводить медиа" value="истина"/>
-	<check_box label="Воспроизводить медиа, присоединенные к другому аватару" name="media_show_on_others_btn" tool_tip="Снятие флажка скроет медиа, присоединенные к другому аватару" value="истина"/>
-	<check_box label="Сопровождать жесты звуками" name="gesture_audio_play_btn" tool_tip="Установите флажок, чтобы слышать звуки при жестах" value="истина"/>
+	<check_box label="Разрешить автовоспроизведение медиа" name="media_auto_play_btn" tool_tip="Установка флажка позволит вам автоматически воспроизводить медиа" value="true"/>
+	<check_box label="Воспроизводить медиа, присоединенные к другому аватару" name="media_show_on_others_btn" tool_tip="Снятие флажка скроет медиа, присоединенные к другому аватару" value="true"/>
+	<check_box label="Сопровождать жесты звуками" name="gesture_audio_play_btn" tool_tip="Установите флажок, чтобы слышать звуки при жестах" value="true"/>
 	<text name="voice_chat_settings">
 		Настройки голосового чата
 	</text>
diff --git a/indra/newview/skins/default/xui/ru/panel_tools_texture.xml b/indra/newview/skins/default/xui/ru/panel_tools_texture.xml
index 60717a3d1d5de44c1d4f1114f8ba11318065f87d..1abf7294871501fe3eaf95a51cdce12b11fe4c6b 100644
--- a/indra/newview/skins/default/xui/ru/panel_tools_texture.xml
+++ b/indra/newview/skins/default/xui/ru/panel_tools_texture.xml
@@ -112,5 +112,5 @@
 	<spinner label="Поворот, градусы" name="shinyRot"/>
 	<spinner label="Смещение по горизонтали" name="shinyOffsetU"/>
 	<spinner label="Смещение по вертикали" name="shinyOffsetV"/>
-	<check_box initial_value="ложь" label="Согласование" name="checkbox planar align" tool_tip="Согласование текстур на всех выбранных гранях по последней выбранной грани. Должно быть выбрано наложение по плоскостям."/>
+	<check_box initial_value="false" label="Согласование" name="checkbox planar align" tool_tip="Согласование текстур на всех выбранных гранях по последней выбранной грани. Должно быть выбрано наложение по плоскостям."/>
 </panel>
diff --git a/indra/newview/skins/default/xui/tr/floater_tools.xml b/indra/newview/skins/default/xui/tr/floater_tools.xml
index 4bf0372a8aaaa9488e4416a5be5cc6ed983a7f56..39a3569efafb38623df2ff8d7f0a9164f4442b47 100755
--- a/indra/newview/skins/default/xui/tr/floater_tools.xml
+++ b/indra/newview/skins/default/xui/tr/floater_tools.xml
@@ -465,16 +465,11 @@
 				<combo_box.item label="vakum" name="suction"/>
 				<combo_box.item label="örgü" name="weave"/>
 			</combo_box>
-			<check_box initial_value="false" label="Planar yüzleri hizala" name="checkbox planar align" tool_tip="Tüm seçili yüzeylerdeki dokuları son seçili yüzdekiyle hizalar. Planar doku eşleştirmesi gerektirir."/>
-			<text name="rpt">
-				Tekrarlar / Yüz
-			</text>
 			<spinner label="Yatay (U)" name="TexScaleU"/>
 			<check_box label="Çevir" name="checkbox flip s"/>
 			<spinner label="Dikey (V)" name="TexScaleV"/>
 			<check_box label="Çevir" name="checkbox flip t"/>
 			<spinner label="Döndürme*" name="TexRot"/>
-			<spinner label="Tekrarlar / Metre" name="rptctrl"/>
 			<button label="Uygula" label_selected="Uygula" name="button apply"/>
 			<text name="tex offset">
 				Doku Dengeleyicisi
diff --git a/indra/newview/skins/default/xui/zh/floater_tools.xml b/indra/newview/skins/default/xui/zh/floater_tools.xml
index 33c9ebeaf084a9809f1db64c0f5808c98e8a02d9..7e6c972f404db7c3626e4e53b7306784f714a4b0 100755
--- a/indra/newview/skins/default/xui/zh/floater_tools.xml
+++ b/indra/newview/skins/default/xui/zh/floater_tools.xml
@@ -465,16 +465,11 @@
 				<combo_box.item label="吸附" name="suction"/>
 				<combo_box.item label="編織" name="weave"/>
 			</combo_box>
-			<check_box initial_value="false" label="對齊平面" name="checkbox planar align" tool_tip="以最後所選擇的面為基準,對齊全部所選擇的面上的材質。 這必須使用平面材質映射方式。"/>
-			<text name="rpt">
-				重覆次數 / 面
-			</text>
 			<spinner label="水平(U)" name="TexScaleU"/>
 			<check_box label="翻轉" name="checkbox flip s"/>
 			<spinner label="垂直(V)" name="TexScaleV"/>
 			<check_box label="翻轉" name="checkbox flip t"/>
 			<spinner label="旋轉˚" name="TexRot"/>
-			<spinner label="重覆次數 / 公尺" name="rptctrl"/>
 			<button label="套用" label_selected="套用" name="button apply"/>
 			<text name="tex offset">
 				材質位移
diff --git a/indra/newview/skins/default/xui/zh/panel_preferences_setup.xml b/indra/newview/skins/default/xui/zh/panel_preferences_setup.xml
index 0fcc49b20346b95da360d0ac81140a4e1140063d..ab4d9a881dfc298696bedb2f8f0b929979f15cd5 100755
--- a/indra/newview/skins/default/xui/zh/panel_preferences_setup.xml
+++ b/indra/newview/skins/default/xui/zh/panel_preferences_setup.xml
@@ -15,7 +15,7 @@
 		網頁:
 	</text>
 	<radio_group name="use_external_browser">
-		<radio_item label="使用我的網頁瀏覽器(例如 IE, Firefox, Safari)" name="external" tool_tip="使用系統預設的瀏覽器瀏覽幫助,開啟網頁。全螢幕模式下不建議這麼做。" value="1"/>
+		<radio_item label="使用我的網頁瀏覽器(例如 IE, Firefox, Safari)" name="external" tool_tip="使用系統預設的瀏覽器瀏覽幫助,開啟網頁。全螢幕模式下不建議這麼做。" value="true"/>
 		<radio_item label="使用內建網頁瀏覽器" name="internal" tool_tip="使用內建的瀏覽器瀏覽幫助,開啟網頁。該瀏覽器將透過 [APP_NAME] 開啟新視窗。" value=""/>
 	</radio_group>
 	<check_box initial_value="true" label="啟用外掛" name="browser_plugins_enabled"/>
diff --git a/indra/newview/tests/gpus_results.txt b/indra/newview/tests/gpus_results.txt
index 68e2e688cb9f7aefb22967f097caf775bb6e94be..106593afd5f9752219f2ded6b504e056a9d8081e 100755
--- a/indra/newview/tests/gpus_results.txt
+++ b/indra/newview/tests/gpus_results.txt
@@ -1,1726 +1,3111 @@
-GPU String                                                                                               Supported?  Class  Recognizer
-------------------------------------------------------------------------------------------------------   ----------- -----  ------------------------------------
-ATI                                                                                                                         NO MATCH
-ATI 3D-Analyze                                                                                           unsupported    0   ATI 3D-Analyze
-ATI ASUS A9xxx                                                                                           supported      1   ATI ASUS A9xxx
-ATI ASUS AH24xx                                                                                          supported      1   ATI ASUS AH24xx
-ATI ASUS AH26xx                                                                                          supported      3   ATI ASUS AH26xx
-ATI ASUS AH34xx                                                                                          supported      1   ATI ASUS AH34xx
-ATI ASUS AH36xx                                                                                          supported      3   ATI ASUS AH36xx
-ATI ASUS AH46xx                                                                                          supported      3   ATI ASUS AH46xx
-ATI ASUS AX3xx                                                                                           supported      1   ATI ASUS AX3xx
-ATI ASUS AX5xx                                                                                           supported      1   ATI ASUS AX5xx
-ATI ASUS AX8xx                                                                                           supported      2   ATI ASUS AX8xx
-ATI ASUS EAH38xx                                                                                         supported      3   ATI ASUS EAH38xx
-ATI ASUS EAH43xx                                                                                         supported      1   ATI ASUS EAH43xx
-ATI ASUS EAH45xx                                                                                         supported      1   ATI ASUS EAH45xx
-ATI ASUS EAH48xx                                                                                         supported      3   ATI ASUS EAH48xx
-ATI ASUS EAH57xx                                                                                         supported      3   ATI ASUS EAH57xx
-ATI ASUS EAH58xx                                                                                         supported      3   ATI ASUS EAH58xx
-ATI ASUS X1xxx                                                                                           supported      3   ATI ASUS Radeon X1xxx
-ATI All-in-Wonder 9xxx                                                                                   supported      1   ATI All-in-Wonder 9xxx
-ATI All-in-Wonder HD                                                                                     supported      1   ATI All-in-Wonder HD
-ATI All-in-Wonder PCI-E                                                                                  supported      1   ATI All-in-Wonder PCI-E
-ATI All-in-Wonder X1800                                                                                  supported      3   ATI All-in-Wonder X1800
-ATI All-in-Wonder X1900                                                                                  supported      3   ATI All-in-Wonder X1900
-ATI All-in-Wonder X600                                                                                   supported      1   ATI All-in-Wonder X600
-ATI All-in-Wonder X800                                                                                   supported      2   ATI All-in-Wonder X800
-ATI Diamond X1xxx                                                                                        supported      1   ATI Radeon X1xxx
-ATI Display Adapter                                                                                      supported      0   ATI Display Adapter
-ATI FireGL                                                                                               supported      0   ATI FireGL
-ATI FireGL 5200                                                                                          supported      0   ATI FireGL
-ATI FireGL 5xxx                                                                                          supported      0   ATI FireGL
-ATI FireMV                                                                                               supported      0   ATI FireMV
-ATI Generic                                                                                              unsupported    0   ATI Generic
-ATI Hercules 9800                                                                                        supported      1   ATI Hercules 9800
-ATI IGP 340M                                                                                             unsupported    0   ATI IGP 340M
-ATI M52                                                                                                  supported      1   ATI M52
-ATI M54                                                                                                  supported      1   ATI M54
-ATI M56                                                                                                  supported      1   ATI M56
-ATI M71                                                                                                  supported      1   ATI M71
-ATI M72                                                                                                  supported      1   ATI M72
-ATI M76                                                                                                  supported      3   ATI M76
-ATI Mobility Radeon                                                                                      supported      0   ATI Radeon
-ATI Mobility Radeon 7xxx                                                                                 supported      0   ATI Mobility Radeon 7xxx
-ATI Mobility Radeon 9600                                                                                 supported      0   ATI Mobility Radeon 9600
-ATI Mobility Radeon 9700                                                                                 supported      1   ATI Mobility Radeon 9700
-ATI Mobility Radeon 9800                                                                                 supported      1   ATI Mobility Radeon 9800
-ATI Mobility Radeon HD 2300                                                                              supported      1   ATI Mobility Radeon HD 2300
-ATI Mobility Radeon HD 2400                                                                              supported      1   ATI Mobility Radeon HD 2400
-ATI Mobility Radeon HD 2600                                                                              supported      3   ATI Mobility Radeon HD 2600
-ATI Mobility Radeon HD 2700                                                                              supported      3   ATI Mobility Radeon HD 2700
-ATI Mobility Radeon HD 3400                                                                              supported      2   ATI Mobility Radeon HD 3400
-ATI Mobility Radeon HD 3600                                                                              supported      3   ATI Mobility Radeon HD 3600
-ATI Mobility Radeon HD 3800                                                                              supported      3   ATI Mobility Radeon HD 3800
-ATI Mobility Radeon HD 4200                                                                              supported      2   ATI Mobility Radeon HD 4200
-ATI Mobility Radeon HD 4300                                                                              supported      2   ATI Mobility Radeon HD 4300
-ATI Mobility Radeon HD 4500                                                                              supported      3   ATI Mobility Radeon HD 4500
-ATI Mobility Radeon HD 4600                                                                              supported      3   ATI Mobility Radeon HD 4600
-ATI Mobility Radeon HD 4800                                                                              supported      3   ATI Mobility Radeon HD 4800
-ATI Mobility Radeon HD 5400                                                                              supported      3   ATI Mobility Radeon HD 5400
-ATI Mobility Radeon HD 5600                                                                              supported      3   ATI Mobility Radeon HD 5600
-ATI Mobility Radeon X1xxx                                                                                supported      1   ATI Radeon X1xxx
-ATI Mobility Radeon X2xxx                                                                                supported      1   ATI Radeon X2xxx
-ATI Mobility Radeon X3xx                                                                                 supported      0   ATI Radeon X300
-ATI Mobility Radeon X6xx                                                                                 supported      1   ATI Radeon X600
-ATI Mobility Radeon X7xx                                                                                 supported      1   ATI Radeon X700
-ATI Mobility Radeon Xxxx                                                                                 supported      0   ATI Radeon
-ATI RV380                                                                                                supported      0   ATI RV380
-ATI RV530                                                                                                supported      1   ATI RV530
-ATI Radeon 2100                                                                                          supported      0   ATI Radeon 2100
-ATI Radeon 3000                                                                                          supported      0   ATI Radeon 3000
-ATI Radeon 3100                                                                                          supported      1   ATI Radeon 3100
-ATI Radeon 7000                                                                                          supported      0   ATI Radeon 7xxx
-ATI Radeon 7xxx                                                                                          supported      0   ATI Radeon 7xxx
-ATI Radeon 8xxx                                                                                          supported      0   ATI Radeon 8xxx
-ATI Radeon 9000                                                                                          supported      0   ATI Radeon 9000
-ATI Radeon 9100                                                                                          supported      0   ATI Radeon 9100
-ATI Radeon 9200                                                                                          supported      0   ATI Radeon 9200
-ATI Radeon 9500                                                                                          supported      0   ATI Radeon 9500
-ATI Radeon 9600                                                                                          supported      0   ATI Radeon 9600
-ATI Radeon 9700                                                                                          supported      1   ATI Radeon 9700
-ATI Radeon 9800                                                                                          supported      1   ATI Radeon 9800
-ATI Radeon HD 2300                                                                                       supported      0   ATI Radeon HD 2300
-ATI Radeon HD 2400                                                                                       supported      1   ATI Radeon HD 2400
-ATI Radeon HD 2600                                                                                       supported      2   ATI Radeon HD 2600
-ATI Radeon HD 2900                                                                                       supported      3   ATI Radeon HD 2900
-ATI Radeon HD 3000                                                                                       supported      0   ATI Radeon HD 3000
-ATI Radeon HD 3100                                                                                       supported      1   ATI Radeon HD 3100
-ATI Radeon HD 3200                                                                                       supported      1   ATI Radeon HD 3200
-ATI Radeon HD 3300                                                                                       supported      1   ATI Radeon HD 3300
-ATI Radeon HD 3400                                                                                       supported      1   ATI Radeon HD 3400
-ATI Radeon HD 3600                                                                                       supported      3   ATI Radeon HD 3600
-ATI Radeon HD 3800                                                                                       supported      3   ATI Radeon HD 3800
-ATI Radeon HD 4200                                                                                       supported      1   ATI Radeon HD 4200
-ATI Radeon HD 4300                                                                                       supported      1   ATI Radeon HD 4300
-ATI Radeon HD 4500                                                                                       supported      3   ATI Radeon HD 4500
-ATI Radeon HD 4600                                                                                       supported      3   ATI Radeon HD 4600
-ATI Radeon HD 4700                                                                                       supported      3   ATI Radeon HD 4700
-ATI Radeon HD 4800                                                                                       supported      3   ATI Radeon HD 4800
-ATI Radeon HD 5400                                                                                       supported      3   ATI Radeon HD 5400
-ATI Radeon HD 5500                                                                                       supported      3   ATI Radeon HD 5500
-ATI Radeon HD 5600                                                                                       supported      3   ATI Radeon HD 5600
-ATI Radeon HD 5700                                                                                       supported      3   ATI Radeon HD 5700
-ATI Radeon HD 5800                                                                                       supported      3   ATI Radeon HD 5800
-ATI Radeon HD 5900                                                                                       supported      3   ATI Radeon HD 5900
-ATI Radeon HD 6200                                                                                       supported      3   ATI Radeon HD 6200
-ATI Radeon HD 6300                                                                                       supported      3   ATI Radeon HD 6300
-ATI Radeon HD 6500                                                                                       supported      3   ATI Radeon HD 6500
-ATI Radeon HD 6800                                                                                       supported      3   ATI Radeon HD 6800
-ATI Radeon HD 6900                                                                                       supported      3   ATI Radeon HD 6900
-ATI Radeon OpenGL                                                                                        unsupported    0   ATI Radeon OpenGL
-ATI Radeon RV250                                                                                         supported      0   ATI Radeon RV250
-ATI Radeon RV600                                                                                         supported      1   ATI Radeon RV600
-ATI Radeon RX9550                                                                                        supported      1   ATI Radeon RX9550
-ATI Radeon VE                                                                                            unsupported    0   ATI Radeon VE
-ATI Radeon X1000                                                                                         supported      1   ATI Radeon X1xxx
-ATI Radeon X1200                                                                                         supported      1   ATI Radeon X1xxx
-ATI Radeon X1300                                                                                         supported      1   ATI Radeon X13xx
-ATI Radeon X13xx                                                                                         supported      1   ATI Radeon X13xx
-ATI Radeon X1400                                                                                         supported      1   ATI Radeon X1xxx
-ATI Radeon X1500                                                                                         supported      2   ATI Radeon X15xx
-ATI Radeon X1600                                                                                         supported      2   ATI Radeon X16xx
-ATI Radeon X16xx                                                                                         supported      2   ATI Radeon X16xx
-ATI Radeon X1700                                                                                         supported      2   ATI Radeon X17xx
-ATI Radeon X1800                                                                                         supported      3   ATI Radeon X18xx
-ATI Radeon X1900                                                                                         supported      3   ATI Radeon X19xx
-ATI Radeon X19xx                                                                                         supported      3   ATI Radeon X19xx
-ATI Radeon X1xxx                                                                                         supported      1   ATI Radeon X1xxx
-ATI Radeon X300                                                                                          supported      0   ATI Radeon X300
-ATI Radeon X500                                                                                          supported      0   ATI Radeon X500
-ATI Radeon X600                                                                                          supported      1   ATI Radeon X600
-ATI Radeon X700                                                                                          supported      1   ATI Radeon X700
-ATI Radeon X7xx                                                                                          supported      1   ATI Radeon X700
-ATI Radeon X800                                                                                          supported      2   ATI Radeon X800
-ATI Radeon Xpress                                                                                        supported      0   ATI Radeon Xpress
-ATI Rage 128                                                                                             supported      0   ATI Rage 128
-ATI Technologies Inc.                                                                                    supported      0   ATI Technologies
-ATI Technologies Inc.  x86                                                                               supported      0   ATI Technologies
-ATI Technologies Inc.  x86/SSE2                                                                          supported      0   ATI Technologies
-ATI Technologies Inc. (Vista) ATI Mobility Radeon HD 5730                                                supported      3   ATI Mobility Radeon HD 5700
-ATI Technologies Inc. 128MB ATI Radeon X1300 x86/SSE2                                                    supported      1   ATI Radeon X13xx
-ATI Technologies Inc. 256MB ATI Radeon X1300PRO x86/SSE2                                                 supported      1   ATI Radeon X13xx
-ATI Technologies Inc. AMD 760G                                                                           supported      1   ATI 760G/Radeon 3000
-ATI Technologies Inc. AMD 760G (Microsoft WDDM 1.1)                                                      supported      1   ATI 760G/Radeon 3000
-ATI Technologies Inc. AMD 780L                                                                           supported      1   ATI 780L/Radeon 3000
-ATI Technologies Inc. AMD FirePro 2270                                                                   supported      1   ATI FirePro 2000
-ATI Technologies Inc. AMD M860G with ATI Mobility Radeon 4100                                            supported      1   ATI Mobility Radeon 4100
-ATI Technologies Inc. AMD M880G with ATI Mobility Radeon HD 4200                                         supported      2   ATI Mobility Radeon HD 4200
-ATI Technologies Inc. AMD M880G with ATI Mobility Radeon HD 4250                                         supported      2   ATI Mobility Radeon HD 4200
-ATI Technologies Inc. AMD RADEON HD 6350                                                                 supported      3   ATI Radeon HD 6300
-ATI Technologies Inc. AMD RADEON HD 6450                                                                 supported      3   ATI Radeon HD 6400
-ATI Technologies Inc. AMD RADEON HD 6670                                                                 supported      3   ATI Radeon HD 6600
-ATI Technologies Inc. AMD Radeon 6600M and 6700M Series                                                  supported      0   ATI Technologies
-ATI Technologies Inc. AMD Radeon HD 6200 series Graphics                                                 supported      3   ATI Radeon HD 6200
-ATI Technologies Inc. AMD Radeon HD 6250 Graphics                                                        supported      3   ATI Radeon HD 6200
-ATI Technologies Inc. AMD Radeon HD 6290 Graphics                                                        supported      3   ATI Radeon HD 6200
-ATI Technologies Inc. AMD Radeon HD 6300 series Graphics                                                 supported      3   ATI Radeon HD 6300
-ATI Technologies Inc. AMD Radeon HD 6300M Series                                                         supported      3   ATI Radeon HD 6300
-ATI Technologies Inc. AMD Radeon HD 6310 Graphics                                                        supported      3   ATI Radeon HD 6300
-ATI Technologies Inc. AMD Radeon HD 6310M                                                                supported      3   ATI Radeon HD 6300
-ATI Technologies Inc. AMD Radeon HD 6330M                                                                supported      3   ATI Radeon HD 6300
-ATI Technologies Inc. AMD Radeon HD 6350                                                                 supported      3   ATI Radeon HD 6300
-ATI Technologies Inc. AMD Radeon HD 6370M                                                                supported      3   ATI Radeon HD 6300
-ATI Technologies Inc. AMD Radeon HD 6400M Series                                                         supported      3   ATI Radeon HD 64xx
-ATI Technologies Inc. AMD Radeon HD 6450                                                                 supported      3   ATI Radeon HD 6400
-ATI Technologies Inc. AMD Radeon HD 6470M                                                                supported      3   ATI Radeon HD 64xx
-ATI Technologies Inc. AMD Radeon HD 6490M                                                                supported      3   ATI Radeon HD 64xx
-ATI Technologies Inc. AMD Radeon HD 6500 Series                                                          supported      3   ATI Radeon HD 6500
-ATI Technologies Inc. AMD Radeon HD 6500M Series                                                         supported      3   ATI Radeon HD 65xx
-ATI Technologies Inc. AMD Radeon HD 6500M/5600/5700 Series                                               supported      3   ATI Radeon HD 65xx
-ATI Technologies Inc. AMD Radeon HD 6530M                                                                supported      3   ATI Radeon HD 65xx
-ATI Technologies Inc. AMD Radeon HD 6550M                                                                supported      3   ATI Radeon HD 65xx
-ATI Technologies Inc. AMD Radeon HD 6570                                                                 supported      3   ATI Radeon HD 6500
-ATI Technologies Inc. AMD Radeon HD 6570M                                                                supported      3   ATI Radeon HD 65xx
-ATI Technologies Inc. AMD Radeon HD 6570M/5700 Series                                                    supported      3   ATI Radeon HD 65xx
-ATI Technologies Inc. AMD Radeon HD 6600 Series                                                          supported      3   ATI Radeon HD 6600
-ATI Technologies Inc. AMD Radeon HD 6600M Series                                                         supported      3   ATI Radeon HD 66xx
-ATI Technologies Inc. AMD Radeon HD 6630M                                                                supported      3   ATI Radeon HD 66xx
-ATI Technologies Inc. AMD Radeon HD 6650M                                                                supported      3   ATI Radeon HD 66xx
-ATI Technologies Inc. AMD Radeon HD 6670                                                                 supported      3   ATI Radeon HD 6600
-ATI Technologies Inc. AMD Radeon HD 6700 Series                                                          supported      3   ATI Radeon HD 6700
-ATI Technologies Inc. AMD Radeon HD 6750                                                                 supported      3   ATI Radeon HD 6700
-ATI Technologies Inc. AMD Radeon HD 6750M                                                                supported      3   ATI Radeon HD 6700
-ATI Technologies Inc. AMD Radeon HD 6770                                                                 supported      3   ATI Radeon HD 6700
-ATI Technologies Inc. AMD Radeon HD 6770M                                                                supported      3   ATI Radeon HD 6700
-ATI Technologies Inc. AMD Radeon HD 6800 Series                                                          supported      3   ATI Radeon HD 6800
-ATI Technologies Inc. AMD Radeon HD 6800M Series                                                         supported      3   ATI Radeon HD 6800
-ATI Technologies Inc. AMD Radeon HD 6850                                                                 supported      3   ATI Radeon HD 6800
-ATI Technologies Inc. AMD Radeon HD 6850M                                                                supported      3   ATI Radeon HD 6800
-ATI Technologies Inc. AMD Radeon HD 6870                                                                 supported      3   ATI Radeon HD 6800
-ATI Technologies Inc. AMD Radeon HD 6870M                                                                supported      3   ATI Radeon HD 6800
-ATI Technologies Inc. AMD Radeon HD 6900 Series                                                          supported      3   ATI Radeon HD 6900
-ATI Technologies Inc. AMD Radeon HD 6900M Series                                                         supported      3   ATI Radeon HD 6900
-ATI Technologies Inc. AMD Radeon HD 6970M                                                                supported      3   ATI Radeon HD 6900
-ATI Technologies Inc. AMD Radeon HD 6990                                                                 supported      3   ATI Radeon HD 6900
-ATI Technologies Inc. AMD Radeon(TM) HD 6470M                                                            supported      3   ATI Radeon HD 64xx
-ATI Technologies Inc. AMD Radeon(TM) HD 6480G                                                            supported      3   ATI Radeon HD 64xx
-ATI Technologies Inc. AMD Radeon(TM) HD 6520G                                                            supported      3   ATI Radeon HD 65xx
-ATI Technologies Inc. AMD Radeon(TM) HD 6620G                                                            supported      3   ATI Radeon HD 66xx
-ATI Technologies Inc. AMD Radeon(TM) HD 6630M                                                            supported      3   ATI Radeon HD 66xx
-ATI Technologies Inc. ASUS 5870 Eyefinity 6                                                              supported      0   ATI Technologies
-ATI Technologies Inc. ASUS A9550 Series                                                                  supported      1   ATI ASUS A9xxx
-ATI Technologies Inc. ASUS AH2600 Series                                                                 supported      3   ATI ASUS AH26xx
-ATI Technologies Inc. ASUS AH3450 Series                                                                 supported      1   ATI ASUS AH34xx
-ATI Technologies Inc. ASUS AH3650 Series                                                                 supported      3   ATI ASUS AH36xx
-ATI Technologies Inc. ASUS AH4650 Series                                                                 supported      3   ATI ASUS AH46xx
-ATI Technologies Inc. ASUS ARES                                                                          supported      3   ATI ASUS ARES
-ATI Technologies Inc. ASUS EAH2900 Series                                                                supported      3   ATI ASUS EAH29xx
-ATI Technologies Inc. ASUS EAH3450 Series                                                                supported      1   ATI ASUS AH34xx
-ATI Technologies Inc. ASUS EAH3650 Series                                                                supported      3   ATI ASUS AH36xx
-ATI Technologies Inc. ASUS EAH4350 series                                                                supported      1   ATI ASUS EAH43xx
-ATI Technologies Inc. ASUS EAH4550 series                                                                supported      1   ATI ASUS EAH45xx
-ATI Technologies Inc. ASUS EAH4650 series                                                                supported      3   ATI ASUS AH46xx
-ATI Technologies Inc. ASUS EAH4670 series                                                                supported      3   ATI ASUS AH46xx
-ATI Technologies Inc. ASUS EAH4750 Series                                                                supported      0   ATI Technologies
-ATI Technologies Inc. ASUS EAH4770 Series                                                                supported      0   ATI Technologies
-ATI Technologies Inc. ASUS EAH4770 series                                                                supported      0   ATI Technologies
-ATI Technologies Inc. ASUS EAH4850 series                                                                supported      3   ATI ASUS EAH48xx
-ATI Technologies Inc. ASUS EAH5450 Series                                                                supported      0   ATI Technologies
-ATI Technologies Inc. ASUS EAH5550 Series                                                                supported      0   ATI Technologies
-ATI Technologies Inc. ASUS EAH5570 series                                                                supported      0   ATI Technologies
-ATI Technologies Inc. ASUS EAH5670 Series                                                                supported      0   ATI Technologies
-ATI Technologies Inc. ASUS EAH5750 Series                                                                supported      3   ATI ASUS EAH57xx
-ATI Technologies Inc. ASUS EAH5770 Series                                                                supported      3   ATI ASUS EAH57xx
-ATI Technologies Inc. ASUS EAH5830 Series                                                                supported      3   ATI ASUS EAH58xx
-ATI Technologies Inc. ASUS EAH5850 Series                                                                supported      3   ATI ASUS EAH58xx
-ATI Technologies Inc. ASUS EAH5870 Series                                                                supported      3   ATI ASUS EAH58xx
-ATI Technologies Inc. ASUS EAH5970 Series                                                                supported      0   ATI Technologies
-ATI Technologies Inc. ASUS EAH6450 Series                                                                supported      3   ATI ASUS EAH6xxx
-ATI Technologies Inc. ASUS EAH6570 Series                                                                supported      3   ATI ASUS EAH6xxx
-ATI Technologies Inc. ASUS EAH6670 Series                                                                supported      3   ATI ASUS EAH6xxx
-ATI Technologies Inc. ASUS EAH6850 Series                                                                supported      3   ATI ASUS EAH6xxx
-ATI Technologies Inc. ASUS EAH6870 Series                                                                supported      3   ATI ASUS EAH6xxx
-ATI Technologies Inc. ASUS EAH6950 Series                                                                supported      3   ATI ASUS EAH6xxx
-ATI Technologies Inc. ASUS EAH6970 Series                                                                supported      3   ATI ASUS EAH6xxx
-ATI Technologies Inc. ASUS EAHG4670 series                                                               supported      0   ATI Technologies
-ATI Technologies Inc. ASUS Extreme AX600 Series                                                          supported      0   ATI Technologies
-ATI Technologies Inc. ASUS Extreme AX600XT-TD                                                            supported      0   ATI Technologies
-ATI Technologies Inc. ASUS X1300 Series x86/SSE2                                                         supported      3   ATI ASUS Radeon X1xxx
-ATI Technologies Inc. ASUS X1550 Series                                                                  supported      3   ATI ASUS Radeon X1xxx
-ATI Technologies Inc. ASUS X1950 Series x86/SSE2                                                         supported      3   ATI ASUS Radeon X1xxx
-ATI Technologies Inc. ASUS X800 Series                                                                   supported      0   ATI Technologies
-ATI Technologies Inc. ASUS X850 Series                                                                   supported      0   ATI Technologies
-ATI Technologies Inc. ATI All-in-Wonder HD                                                               supported      1   ATI All-in-Wonder HD
-ATI Technologies Inc. ATI FirePro 2260                                                                   supported      1   ATI FirePro 2000
-ATI Technologies Inc. ATI FirePro 2450                                                                   supported      1   ATI FirePro 2000
-ATI Technologies Inc. ATI FirePro M5800                                                                  supported      3   ATI FirePro M5800
-ATI Technologies Inc. ATI FirePro M7740                                                                  supported      3   ATI FirePro M7740
-ATI Technologies Inc. ATI FirePro M7820                                                                  supported      3   ATI FirePro M7820
-ATI Technologies Inc. ATI FirePro V3700 (FireGL)                                                         supported      0   ATI FireGL
-ATI Technologies Inc. ATI FirePro V3800                                                                  supported      1   ATI FirePro 3000
-ATI Technologies Inc. ATI FirePro V4800                                                                  supported      2   ATI FirePro 4000
-ATI Technologies Inc. ATI FirePro V4800 (FireGL)                                                         supported      0   ATI FireGL
-ATI Technologies Inc. ATI FirePro V5800                                                                  supported      3   ATI FirePro 5000
-ATI Technologies Inc. ATI FirePro V7800                                                                  supported      3   ATI FirePro 7000
-ATI Technologies Inc. ATI MOBILITY RADEON 9600/9700 Series                                               supported      1   ATI Mobility Radeon 9700
-ATI Technologies Inc. ATI MOBILITY RADEON 9XXX x86/SSE2                                                  supported      0   ATI Technologies
-ATI Technologies Inc. ATI MOBILITY RADEON HD 2300                                                        supported      1   ATI Mobility Radeon HD 2300
-ATI Technologies Inc. ATI MOBILITY RADEON HD 3450                                                        supported      2   ATI Mobility Radeon HD 3400
-ATI Technologies Inc. ATI MOBILITY RADEON HD 3650                                                        supported      3   ATI Mobility Radeon HD 3600
-ATI Technologies Inc. ATI MOBILITY RADEON X1600                                                          supported      2   ATI Radeon X16xx
-ATI Technologies Inc. ATI MOBILITY RADEON X2300                                                          supported      1   ATI Radeon X2xxx
-ATI Technologies Inc. ATI MOBILITY RADEON X2300 HD x86/SSE2                                              supported      1   ATI Radeon X2xxx
-ATI Technologies Inc. ATI MOBILITY RADEON X2300 x86/MMX/3DNow!/SSE2                                      supported      1   ATI Radeon X2xxx
-ATI Technologies Inc. ATI MOBILITY RADEON X2300 x86/SSE2                                                 supported      1   ATI Radeon X2xxx
-ATI Technologies Inc. ATI MOBILITY RADEON X300                                                           supported      0   ATI Radeon X300
-ATI Technologies Inc. ATI MOBILITY RADEON X600                                                           supported      1   ATI Radeon X600
-ATI Technologies Inc. ATI MOBILITY RADEON X700                                                           supported      1   ATI Radeon X700
-ATI Technologies Inc. ATI MOBILITY RADEON XPRESS 200                                                     supported      0   ATI Radeon Xpress
-ATI Technologies Inc. ATI Mobility FireGL V5700                                                          supported      1   ATI FireGL 5xxx
-ATI Technologies Inc. ATI Mobility Radeon 4100                                                           supported      1   ATI Mobility Radeon 4100
-ATI Technologies Inc. ATI Mobility Radeon Graphics                                                       supported      0   ATI Technologies
-ATI Technologies Inc. ATI Mobility Radeon HD 2300                                                        supported      1   ATI Mobility Radeon HD 2300
-ATI Technologies Inc. ATI Mobility Radeon HD 2400                                                        supported      1   ATI Mobility Radeon HD 2400
-ATI Technologies Inc. ATI Mobility Radeon HD 2400 XT                                                     supported      1   ATI Mobility Radeon HD 2400
-ATI Technologies Inc. ATI Mobility Radeon HD 2600                                                        supported      3   ATI Mobility Radeon HD 2600
-ATI Technologies Inc. ATI Mobility Radeon HD 2600 XT                                                     supported      3   ATI Mobility Radeon HD 2600
-ATI Technologies Inc. ATI Mobility Radeon HD 2700                                                        supported      3   ATI Mobility Radeon HD 2700
-ATI Technologies Inc. ATI Mobility Radeon HD 3400 Series                                                 supported      2   ATI Mobility Radeon HD 3400
-ATI Technologies Inc. ATI Mobility Radeon HD 3410                                                        supported      2   ATI Mobility Radeon HD 3400
-ATI Technologies Inc. ATI Mobility Radeon HD 3430                                                        supported      2   ATI Mobility Radeon HD 3400
-ATI Technologies Inc. ATI Mobility Radeon HD 3450                                                        supported      2   ATI Mobility Radeon HD 3400
-ATI Technologies Inc. ATI Mobility Radeon HD 3470                                                        supported      2   ATI Mobility Radeon HD 3400
-ATI Technologies Inc. ATI Mobility Radeon HD 3470 Hybrid X2                                              supported      2   ATI Mobility Radeon HD 3400
-ATI Technologies Inc. ATI Mobility Radeon HD 3650                                                        supported      3   ATI Mobility Radeon HD 3600
-ATI Technologies Inc. ATI Mobility Radeon HD 3670                                                        supported      3   ATI Mobility Radeon HD 3600
-ATI Technologies Inc. ATI Mobility Radeon HD 4200                                                        supported      2   ATI Mobility Radeon HD 4200
-ATI Technologies Inc. ATI Mobility Radeon HD 4200 Series                                                 supported      2   ATI Mobility Radeon HD 4200
-ATI Technologies Inc. ATI Mobility Radeon HD 4225                                                        supported      2   ATI Mobility Radeon HD 4200
-ATI Technologies Inc. ATI Mobility Radeon HD 4225 Series                                                 supported      2   ATI Mobility Radeon HD 4200
-ATI Technologies Inc. ATI Mobility Radeon HD 4250                                                        supported      2   ATI Mobility Radeon HD 4200
-ATI Technologies Inc. ATI Mobility Radeon HD 4250 Graphics                                               supported      2   ATI Mobility Radeon HD 4200
-ATI Technologies Inc. ATI Mobility Radeon HD 4250 Series                                                 supported      2   ATI Mobility Radeon HD 4200
-ATI Technologies Inc. ATI Mobility Radeon HD 4270                                                        supported      2   ATI Mobility Radeon HD 4200
-ATI Technologies Inc. ATI Mobility Radeon HD 4300 Series                                                 supported      2   ATI Mobility Radeon HD 4300
-ATI Technologies Inc. ATI Mobility Radeon HD 4300/4500 Series                                            supported      2   ATI Mobility Radeon HD 4300
-ATI Technologies Inc. ATI Mobility Radeon HD 4330                                                        supported      2   ATI Mobility Radeon HD 4300
-ATI Technologies Inc. ATI Mobility Radeon HD 4330 Series                                                 supported      2   ATI Mobility Radeon HD 4300
-ATI Technologies Inc. ATI Mobility Radeon HD 4350                                                        supported      2   ATI Mobility Radeon HD 4300
-ATI Technologies Inc. ATI Mobility Radeon HD 4350 Series                                                 supported      2   ATI Mobility Radeon HD 4300
-ATI Technologies Inc. ATI Mobility Radeon HD 4500 Series                                                 supported      3   ATI Mobility Radeon HD 4500
-ATI Technologies Inc. ATI Mobility Radeon HD 4500/5100 Series                                            supported      3   ATI Mobility Radeon HD 4500
-ATI Technologies Inc. ATI Mobility Radeon HD 4530                                                        supported      3   ATI Mobility Radeon HD 4500
-ATI Technologies Inc. ATI Mobility Radeon HD 4530 Series                                                 supported      3   ATI Mobility Radeon HD 4500
-ATI Technologies Inc. ATI Mobility Radeon HD 4550                                                        supported      3   ATI Mobility Radeon HD 4500
-ATI Technologies Inc. ATI Mobility Radeon HD 4570                                                        supported      3   ATI Mobility Radeon HD 4500
-ATI Technologies Inc. ATI Mobility Radeon HD 4600 Series                                                 supported      3   ATI Mobility Radeon HD 4600
-ATI Technologies Inc. ATI Mobility Radeon HD 4650                                                        supported      3   ATI Mobility Radeon HD 4600
-ATI Technologies Inc. ATI Mobility Radeon HD 4650 Series                                                 supported      3   ATI Mobility Radeon HD 4600
-ATI Technologies Inc. ATI Mobility Radeon HD 4670                                                        supported      3   ATI Mobility Radeon HD 4600
-ATI Technologies Inc. ATI Mobility Radeon HD 4830 Series                                                 supported      3   ATI Mobility Radeon HD 4800
-ATI Technologies Inc. ATI Mobility Radeon HD 4850                                                        supported      3   ATI Mobility Radeon HD 4800
-ATI Technologies Inc. ATI Mobility Radeon HD 4870                                                        supported      3   ATI Mobility Radeon HD 4800
-ATI Technologies Inc. ATI Mobility Radeon HD 5000                                                        supported      0   ATI Technologies
-ATI Technologies Inc. ATI Mobility Radeon HD 5000 Series                                                 supported      0   ATI Technologies
-ATI Technologies Inc. ATI Mobility Radeon HD 5145                                                        supported      3   ATI Mobility Radeon HD 5100
-ATI Technologies Inc. ATI Mobility Radeon HD 5165                                                        supported      3   ATI Mobility Radeon HD 5100
-ATI Technologies Inc. ATI Mobility Radeon HD 530v                                                        supported      1   ATI Mobility Radeon HD 530v
-ATI Technologies Inc. ATI Mobility Radeon HD 5400 Series                                                 supported      3   ATI Mobility Radeon HD 5400
-ATI Technologies Inc. ATI Mobility Radeon HD 540v                                                        supported      2   ATI Mobility Radeon HD 540v
-ATI Technologies Inc. ATI Mobility Radeon HD 5430                                                        supported      3   ATI Mobility Radeon HD 5400
-ATI Technologies Inc. ATI Mobility Radeon HD 5450                                                        supported      3   ATI Mobility Radeon HD 5400
-ATI Technologies Inc. ATI Mobility Radeon HD 5450 Series                                                 supported      3   ATI Mobility Radeon HD 5400
-ATI Technologies Inc. ATI Mobility Radeon HD 545v                                                        supported      2   ATI Mobility Radeon HD 545v
-ATI Technologies Inc. ATI Mobility Radeon HD 5470                                                        supported      3   ATI Mobility Radeon HD 5400
-ATI Technologies Inc. ATI Mobility Radeon HD 550v                                                        supported      2   ATI Mobility Radeon HD 550v
-ATI Technologies Inc. ATI Mobility Radeon HD 5600/5700 Series                                            supported      3   ATI Mobility Radeon HD 5600
-ATI Technologies Inc. ATI Mobility Radeon HD 560v                                                        supported      2   ATI Mobility Radeon HD 560v
-ATI Technologies Inc. ATI Mobility Radeon HD 5650                                                        supported      3   ATI Mobility Radeon HD 5600
-ATI Technologies Inc. ATI Mobility Radeon HD 5700 Series                                                 supported      3   ATI Mobility Radeon HD 5700
-ATI Technologies Inc. ATI Mobility Radeon HD 5730                                                        supported      3   ATI Mobility Radeon HD 5700
-ATI Technologies Inc. ATI Mobility Radeon HD 5800 Series                                                 supported      3   ATI Radeon HD 5800
-ATI Technologies Inc. ATI Mobility Radeon HD 5830 Series                                                 supported      3   ATI Radeon HD 5800
-ATI Technologies Inc. ATI Mobility Radeon HD 5850                                                        supported      3   ATI Radeon HD 5800
-ATI Technologies Inc. ATI Mobility Radeon HD 5870                                                        supported      3   ATI Radeon HD 5800
-ATI Technologies Inc. ATI Mobility Radeon HD 6300 series                                                 supported      3   ATI Mobility Radeon HD 6300
-ATI Technologies Inc. ATI Mobility Radeon HD 6370                                                        supported      3   ATI Mobility Radeon HD 6300
-ATI Technologies Inc. ATI Mobility Radeon HD 6470M                                                       supported      3   ATI Mobility Radeon HD 6400M
-ATI Technologies Inc. ATI Mobility Radeon HD 6550                                                        supported      3   ATI Mobility Radeon HD 6500M
-ATI Technologies Inc. ATI Mobility Radeon HD 6570                                                        supported      3   ATI Mobility Radeon HD 6500M
-ATI Technologies Inc. ATI Mobility Radeon X1300                                                          supported      1   ATI Radeon X13xx
-ATI Technologies Inc. ATI Mobility Radeon X1300 x86/MMX/3DNow!/SSE2                                      supported      1   ATI Radeon X13xx
-ATI Technologies Inc. ATI Mobility Radeon X1300 x86/SSE2                                                 supported      1   ATI Radeon X13xx
-ATI Technologies Inc. ATI Mobility Radeon X1350                                                          supported      1   ATI Radeon X13xx
-ATI Technologies Inc. ATI Mobility Radeon X1350 x86/SSE2                                                 supported      1   ATI Radeon X13xx
-ATI Technologies Inc. ATI Mobility Radeon X1400                                                          supported      1   ATI Radeon X1xxx
-ATI Technologies Inc. ATI Mobility Radeon X1400 x86/SSE2                                                 supported      1   ATI Radeon X1xxx
-ATI Technologies Inc. ATI Mobility Radeon X1600                                                          supported      2   ATI Radeon X16xx
-ATI Technologies Inc. ATI Mobility Radeon X1600 x86/SSE2                                                 supported      2   ATI Radeon X16xx
-ATI Technologies Inc. ATI Mobility Radeon X1700 x86/SSE2                                                 supported      2   ATI Radeon X17xx
-ATI Technologies Inc. ATI Mobility Radeon X2300                                                          supported      1   ATI Radeon X2xxx
-ATI Technologies Inc. ATI Mobility Radeon X2300 (Omega 3.8.442)                                          supported      1   ATI Radeon X2xxx
-ATI Technologies Inc. ATI Mobility Radeon X2300 x86                                                      supported      1   ATI Radeon X2xxx
-ATI Technologies Inc. ATI Mobility Radeon X2300 x86/MMX/3DNow!/SSE2                                      supported      1   ATI Radeon X2xxx
-ATI Technologies Inc. ATI Mobility Radeon X2300 x86/SSE2                                                 supported      1   ATI Radeon X2xxx
-ATI Technologies Inc. ATI Mobility Radeon X2500                                                          supported      1   ATI Radeon X2xxx
-ATI Technologies Inc. ATI Mobility Radeon X2500 x86/SSE2                                                 supported      1   ATI Radeon X2xxx
-ATI Technologies Inc. ATI Mobility Radeon. HD 530v                                                       supported      1   ATI Mobility Radeon HD 530v
-ATI Technologies Inc. ATI Mobility Radeon. HD 5470                                                       supported      3   ATI Mobility Radeon HD 5400
-ATI Technologies Inc. ATI RADEON HD 3200 T25XX by CAMILO                                                 supported      1   ATI Radeon HD 3200
-ATI Technologies Inc. ATI RADEON XPRESS 1100                                                             supported      0   ATI Radeon Xpress
-ATI Technologies Inc. ATI RADEON XPRESS 1100 x86/SSE2                                                    supported      0   ATI Radeon Xpress
-ATI Technologies Inc. ATI RADEON XPRESS 200 Series                                                       supported      0   ATI Radeon Xpress
-ATI Technologies Inc. ATI RADEON XPRESS 200 Series x86/SSE2                                              supported      0   ATI Radeon Xpress
-ATI Technologies Inc. ATI RADEON XPRESS 200M SERIES                                                      supported      0   ATI Radeon Xpress
-ATI Technologies Inc. ATI Radeon                                                                         supported      0   ATI Technologies
-ATI Technologies Inc. ATI Radeon 2100                                                                    supported      0   ATI Radeon 2100
-ATI Technologies Inc. ATI Radeon 2100 (Microsoft - WDDM)                                                 supported      0   ATI Radeon 2100
-ATI Technologies Inc. ATI Radeon 2100 Graphics                                                           supported      0   ATI Radeon 2100
-ATI Technologies Inc. ATI Radeon 3000                                                                    supported      0   ATI Radeon 3000
-ATI Technologies Inc. ATI Radeon 3000 Graphics                                                           supported      0   ATI Radeon 3000
-ATI Technologies Inc. ATI Radeon 3100 Graphics                                                           supported      1   ATI Radeon 3100
-ATI Technologies Inc. ATI Radeon 5xxx series                                                             supported      3   ATI Radeon 5xxx
-ATI Technologies Inc. ATI Radeon 9550 / X1050 Series                                                     supported      0   ATI Radeon 9500
-ATI Technologies Inc. ATI Radeon 9550 / X1050 Series x86/MMX/3DNow!/SSE                                  supported      0   ATI Radeon 9500
-ATI Technologies Inc. ATI Radeon 9550 / X1050 Series x86/SSE2                                            supported      0   ATI Radeon 9500
-ATI Technologies Inc. ATI Radeon 9550 / X1050 Series(Microsoft - WDDM)                                   supported      0   ATI Radeon 9500
-ATI Technologies Inc. ATI Radeon 9600 / X1050 Series                                                     supported      0   ATI Radeon 9600
-ATI Technologies Inc. ATI Radeon 9600/9550/X1050 Series                                                  supported      0   ATI Radeon 9600
-ATI Technologies Inc. ATI Radeon BA Prototype OpenGL Engine                                              supported      0   ATI Technologies
-ATI Technologies Inc. ATI Radeon BB Prototype OpenGL Engine                                              supported      0   ATI Technologies
-ATI Technologies Inc. ATI Radeon Broadway XT Prototype OpenGL Engine                                     supported      0   ATI Technologies
-ATI Technologies Inc. ATI Radeon Cedar PRO Prototype OpenGL Engine                                       supported      2   AMD CEDAR (HD 5450)
-ATI Technologies Inc. ATI Radeon Cypress PRO Prototype OpenGL Engine                                     supported      3   AMD CYPRESS (HD 5800)
-ATI Technologies Inc. ATI Radeon Graphics Processor                                                      supported      0   ATI Technologies
-ATI Technologies Inc. ATI Radeon HD 2200 Graphics                                                        supported      0   ATI Technologies
-ATI Technologies Inc. ATI Radeon HD 2350                                                                 supported      0   ATI Radeon HD 2300
-ATI Technologies Inc. ATI Radeon HD 2400                                                                 supported      1   ATI Radeon HD 2400
-ATI Technologies Inc. ATI Radeon HD 2400 OpenGL Engine                                                   supported      1   ATI Radeon HD 2400
-ATI Technologies Inc. ATI Radeon HD 2400 PRO                                                             supported      1   ATI Radeon HD 2400
-ATI Technologies Inc. ATI Radeon HD 2400 PRO AGP                                                         supported      1   ATI Radeon HD 2400
-ATI Technologies Inc. ATI Radeon HD 2400 Pro                                                             supported      1   ATI Radeon HD 2400
-ATI Technologies Inc. ATI Radeon HD 2400 Series                                                          supported      1   ATI Radeon HD 2400
-ATI Technologies Inc. ATI Radeon HD 2400 XT                                                              supported      1   ATI Radeon HD 2400
-ATI Technologies Inc. ATI Radeon HD 2400 XT OpenGL Engine                                                supported      1   ATI Radeon HD 2400
-ATI Technologies Inc. ATI Radeon HD 2600 OpenGL Engine                                                   supported      2   ATI Radeon HD 2600
-ATI Technologies Inc. ATI Radeon HD 2600 PRO                                                             supported      2   ATI Radeon HD 2600
-ATI Technologies Inc. ATI Radeon HD 2600 PRO OpenGL Engine                                               supported      2   ATI Radeon HD 2600
-ATI Technologies Inc. ATI Radeon HD 2600 Pro                                                             supported      2   ATI Radeon HD 2600
-ATI Technologies Inc. ATI Radeon HD 2600 Series                                                          supported      2   ATI Radeon HD 2600
-ATI Technologies Inc. ATI Radeon HD 2600 XT                                                              supported      2   ATI Radeon HD 2600
-ATI Technologies Inc. ATI Radeon HD 2900 GT                                                              supported      3   ATI Radeon HD 2900
-ATI Technologies Inc. ATI Radeon HD 2900 XT                                                              supported      3   ATI Radeon HD 2900
-ATI Technologies Inc. ATI Radeon HD 3200 Graphics                                                        supported      1   ATI Radeon HD 3200
-ATI Technologies Inc. ATI Radeon HD 3300 Graphics                                                        supported      1   ATI Radeon HD 3300
-ATI Technologies Inc. ATI Radeon HD 3400 Series                                                          supported      1   ATI Radeon HD 3400
-ATI Technologies Inc. ATI Radeon HD 3450                                                                 supported      1   ATI Radeon HD 3400
-ATI Technologies Inc. ATI Radeon HD 3450 - Dell Optiplex                                                 supported      1   ATI Radeon HD 3400
-ATI Technologies Inc. ATI Radeon HD 3470                                                                 supported      1   ATI Radeon HD 3400
-ATI Technologies Inc. ATI Radeon HD 3470 - Dell Optiplex                                                 supported      1   ATI Radeon HD 3400
-ATI Technologies Inc. ATI Radeon HD 3550                                                                 supported      1   ATI Radeon HD 3500
-ATI Technologies Inc. ATI Radeon HD 3600 Series                                                          supported      3   ATI Radeon HD 3600
-ATI Technologies Inc. ATI Radeon HD 3650                                                                 supported      3   ATI Radeon HD 3600
-ATI Technologies Inc. ATI Radeon HD 3650 AGP                                                             supported      3   ATI Radeon HD 3600
-ATI Technologies Inc. ATI Radeon HD 3730                                                                 supported      3   ATI Radeon HD 3700
-ATI Technologies Inc. ATI Radeon HD 3800 Series                                                          supported      3   ATI Radeon HD 3800
-ATI Technologies Inc. ATI Radeon HD 3850                                                                 supported      3   ATI Radeon HD 3800
-ATI Technologies Inc. ATI Radeon HD 3850 AGP                                                             supported      3   ATI Radeon HD 3800
-ATI Technologies Inc. ATI Radeon HD 3870                                                                 supported      3   ATI Radeon HD 3800
-ATI Technologies Inc. ATI Radeon HD 3870 X2                                                              supported      3   ATI Radeon HD 3800
-ATI Technologies Inc. ATI Radeon HD 4200                                                                 supported      1   ATI Radeon HD 4200
-ATI Technologies Inc. ATI Radeon HD 4250                                                                 supported      1   ATI Radeon HD 4200
-ATI Technologies Inc. ATI Radeon HD 4250 Graphics                                                        supported      1   ATI Radeon HD 4200
-ATI Technologies Inc. ATI Radeon HD 4270                                                                 supported      1   ATI Radeon HD 4200
-ATI Technologies Inc. ATI Radeon HD 4290                                                                 supported      1   ATI Radeon HD 4200
-ATI Technologies Inc. ATI Radeon HD 4290 (Engineering Sample)                                            supported      1   ATI Radeon HD 4200
-ATI Technologies Inc. ATI Radeon HD 4300 Series                                                          supported      1   ATI Radeon HD 4300
-ATI Technologies Inc. ATI Radeon HD 4300/4500 Series                                                     supported      1   ATI Radeon HD 4300
-ATI Technologies Inc. ATI Radeon HD 4350                                                                 supported      1   ATI Radeon HD 4300
-ATI Technologies Inc. ATI Radeon HD 4350 (Microsoft WDDM 1.1)                                            supported      1   ATI Radeon HD 4300
-ATI Technologies Inc. ATI Radeon HD 4450                                                                 supported      1   ATI Radeon HD 4400
-ATI Technologies Inc. ATI Radeon HD 4500 Series                                                          supported      3   ATI Radeon HD 4500
-ATI Technologies Inc. ATI Radeon HD 4550                                                                 supported      3   ATI Radeon HD 4500
-ATI Technologies Inc. ATI Radeon HD 4600 Series                                                          supported      3   ATI Radeon HD 4600
-ATI Technologies Inc. ATI Radeon HD 4650                                                                 supported      3   ATI Radeon HD 4600
-ATI Technologies Inc. ATI Radeon HD 4670                                                                 supported      3   ATI Radeon HD 4600
-ATI Technologies Inc. ATI Radeon HD 4670 OpenGL Engine                                                   supported      3   ATI Radeon HD 4600
-ATI Technologies Inc. ATI Radeon HD 4700 Series                                                          supported      3   ATI Radeon HD 4700
-ATI Technologies Inc. ATI Radeon HD 4720                                                                 supported      3   ATI Radeon HD 4700
-ATI Technologies Inc. ATI Radeon HD 4730                                                                 supported      3   ATI Radeon HD 4700
-ATI Technologies Inc. ATI Radeon HD 4730 Series                                                          supported      3   ATI Radeon HD 4700
-ATI Technologies Inc. ATI Radeon HD 4750                                                                 supported      3   ATI Radeon HD 4700
-ATI Technologies Inc. ATI Radeon HD 4770                                                                 supported      3   ATI Radeon HD 4700
-ATI Technologies Inc. ATI Radeon HD 4800 Series                                                          supported      3   ATI Radeon HD 4800
-ATI Technologies Inc. ATI Radeon HD 4850                                                                 supported      3   ATI Radeon HD 4800
-ATI Technologies Inc. ATI Radeon HD 4850 OpenGL Engine                                                   supported      3   ATI Radeon HD 4800
-ATI Technologies Inc. ATI Radeon HD 4850 Series                                                          supported      3   ATI Radeon HD 4800
-ATI Technologies Inc. ATI Radeon HD 4870                                                                 supported      3   ATI Radeon HD 4800
-ATI Technologies Inc. ATI Radeon HD 4870 OpenGL Engine                                                   supported      3   ATI Radeon HD 4800
-ATI Technologies Inc. ATI Radeon HD 4870 X2                                                              supported      3   ATI Radeon HD 4800
-ATI Technologies Inc. ATI Radeon HD 5400 Series                                                          supported      3   ATI Radeon HD 5400
-ATI Technologies Inc. ATI Radeon HD 5450                                                                 supported      3   ATI Radeon HD 5400
-ATI Technologies Inc. ATI Radeon HD 5470                                                                 supported      3   ATI Radeon HD 5400
-ATI Technologies Inc. ATI Radeon HD 5500 Series                                                          supported      3   ATI Radeon HD 5500
-ATI Technologies Inc. ATI Radeon HD 5570                                                                 supported      3   ATI Radeon HD 5500
-ATI Technologies Inc. ATI Radeon HD 5600 Series                                                          supported      3   ATI Radeon HD 5600
-ATI Technologies Inc. ATI Radeon HD 5600/5700                                                            supported      3   ATI Radeon HD 5600
-ATI Technologies Inc. ATI Radeon HD 5630                                                                 supported      3   ATI Radeon HD 5600
-ATI Technologies Inc. ATI Radeon HD 5670                                                                 supported      3   ATI Radeon HD 5600
-ATI Technologies Inc. ATI Radeon HD 5670 OpenGL Engine                                                   supported      3   ATI Radeon HD 5600
-ATI Technologies Inc. ATI Radeon HD 5700 Series                                                          supported      3   ATI Radeon HD 5700
-ATI Technologies Inc. ATI Radeon HD 5750                                                                 supported      3   ATI Radeon HD 5700
-ATI Technologies Inc. ATI Radeon HD 5750 OpenGL Engine                                                   supported      3   ATI Radeon HD 5700
-ATI Technologies Inc. ATI Radeon HD 5770                                                                 supported      3   ATI Radeon HD 5700
-ATI Technologies Inc. ATI Radeon HD 5770 OpenGL Engine                                                   supported      3   ATI Radeon HD 5700
-ATI Technologies Inc. ATI Radeon HD 5800 Series                                                          supported      3   ATI Radeon HD 5800
-ATI Technologies Inc. ATI Radeon HD 5850                                                                 supported      3   ATI Radeon HD 5800
-ATI Technologies Inc. ATI Radeon HD 5870                                                                 supported      3   ATI Radeon HD 5800
-ATI Technologies Inc. ATI Radeon HD 5870 OpenGL Engine                                                   supported      3   ATI Radeon HD 5800
-ATI Technologies Inc. ATI Radeon HD 5900 Series                                                          supported      3   ATI Radeon HD 5900
-ATI Technologies Inc. ATI Radeon HD 5970                                                                 supported      3   ATI Radeon HD 5900
-ATI Technologies Inc. ATI Radeon HD 6230                                                                 supported      3   ATI Radeon HD 6200
-ATI Technologies Inc. ATI Radeon HD 6250                                                                 supported      3   ATI Radeon HD 6200
-ATI Technologies Inc. ATI Radeon HD 6350                                                                 supported      3   ATI Radeon HD 6300
-ATI Technologies Inc. ATI Radeon HD 6390                                                                 supported      3   ATI Radeon HD 6300
-ATI Technologies Inc. ATI Radeon HD 6490M OpenGL Engine                                                  supported      3   ATI Radeon HD 6400
-ATI Technologies Inc. ATI Radeon HD 6510                                                                 supported      3   ATI Radeon HD 6500
-ATI Technologies Inc. ATI Radeon HD 6570M                                                                supported      3   ATI Radeon HD 6500
-ATI Technologies Inc. ATI Radeon HD 6630M OpenGL Engine                                                  supported      3   ATI Radeon HD 6600
-ATI Technologies Inc. ATI Radeon HD 6750                                                                 supported      3   ATI Radeon HD 6700
-ATI Technologies Inc. ATI Radeon HD 6750M OpenGL Engine                                                  supported      3   ATI Radeon HD 6700
-ATI Technologies Inc. ATI Radeon HD 6770                                                                 supported      3   ATI Radeon HD 6700
-ATI Technologies Inc. ATI Radeon HD 6770M OpenGL Engine                                                  supported      3   ATI Radeon HD 6700
-ATI Technologies Inc. ATI Radeon HD 6800 Series                                                          supported      3   ATI Radeon HD 6800
-ATI Technologies Inc. ATI Radeon HD 6970M OpenGL Engine                                                  supported      3   ATI Radeon HD 6900
-ATI Technologies Inc. ATI Radeon HD3750                                                                  supported      3   ATI Radeon HD 3700
-ATI Technologies Inc. ATI Radeon HD4300/HD4500 series                                                    supported      1   ATI Radeon HD 4300
-ATI Technologies Inc. ATI Radeon HD4670                                                                  supported      3   ATI Radeon HD 4600
-ATI Technologies Inc. ATI Radeon Juniper LE Prototype OpenGL Engine                                      supported      3   AMD JUNIPER (HD 5700)
-ATI Technologies Inc. ATI Radeon RV710 Prototype OpenGL Engine                                           supported      1   AMD RV710 (HD 4300)
-ATI Technologies Inc. ATI Radeon RV730 Prototype OpenGL Engine                                           supported      3   AMD RV730 (HD 4600)
-ATI Technologies Inc. ATI Radeon RV770 Prototype OpenGL Engine                                           supported      3   AMD RV770 (HD 4800)
-ATI Technologies Inc. ATI Radeon RV790 Prototype OpenGL Engine                                           supported      3   AMD RV790 (HD 4800)
-ATI Technologies Inc. ATI Radeon Redwood PRO Prototype OpenGL Engine                                     supported      3   AMD REDWOOD (HD 5500/5600)
-ATI Technologies Inc. ATI Radeon Redwood XT Prototype OpenGL Engine                                      supported      3   AMD REDWOOD (HD 5500/5600)
-ATI Technologies Inc. ATI Radeon Whistler PRO/LP Prototype OpenGL Engine                                 supported      0   ATI Technologies
-ATI Technologies Inc. ATI Radeon X1050                                                                   supported      1   ATI Radeon X1xxx
-ATI Technologies Inc. ATI Radeon X1050 Series                                                            supported      1   ATI Radeon X1xxx
-ATI Technologies Inc. ATI Radeon X1200                                                                   supported      1   ATI Radeon X1xxx
-ATI Technologies Inc. ATI Radeon X1200 Series                                                            supported      1   ATI Radeon X1xxx
-ATI Technologies Inc. ATI Radeon X1200 Series x86/MMX/3DNow!/SSE2                                        supported      1   ATI Radeon X1xxx
-ATI Technologies Inc. ATI Radeon X1250                                                                   supported      1   ATI Radeon X1xxx
-ATI Technologies Inc. ATI Radeon X1250 x86/MMX/3DNow!/SSE2                                               supported      1   ATI Radeon X1xxx
-ATI Technologies Inc. ATI Radeon X1270                                                                   supported      1   ATI Radeon X1xxx
-ATI Technologies Inc. ATI Radeon X1270 x86/MMX/3DNow!/SSE2                                               supported      1   ATI Radeon X1xxx
-ATI Technologies Inc. ATI Radeon X1300/X1550 Series                                                      supported      1   ATI Radeon X13xx
-ATI Technologies Inc. ATI Radeon X1550 Series                                                            supported      2   ATI Radeon X15xx
-ATI Technologies Inc. ATI Radeon X1600 OpenGL Engine                                                     supported      2   ATI Radeon X16xx
-ATI Technologies Inc. ATI Radeon X1900 OpenGL Engine                                                     supported      3   ATI Radeon X19xx
-ATI Technologies Inc. ATI Radeon X1950 GT                                                                supported      3   ATI Radeon X19xx
-ATI Technologies Inc. ATI Radeon X300/X550/X1050 Series                                                  supported      0   ATI Radeon X300
-ATI Technologies Inc. ATI Radeon Xpress 1100                                                             supported      0   ATI Radeon Xpress
-ATI Technologies Inc. ATI Radeon Xpress 1150                                                             supported      0   ATI Radeon Xpress
-ATI Technologies Inc. ATI Radeon Xpress 1150 x86/MMX/3DNow!/SSE2                                         supported      0   ATI Radeon Xpress
-ATI Technologies Inc. ATI Radeon Xpress 1200                                                             supported      0   ATI Radeon Xpress
-ATI Technologies Inc. ATI Radeon Xpress 1200 Series                                                      supported      0   ATI Radeon Xpress
-ATI Technologies Inc. ATI Radeon Xpress 1200 Series x86/MMX/3DNow!/SSE2                                  supported      0   ATI Radeon Xpress
-ATI Technologies Inc. ATI Radeon Xpress 1200 x86/MMX/3DNow!/SSE2                                         supported      0   ATI Radeon Xpress
-ATI Technologies Inc. ATI Radeon Xpress 1250                                                             supported      0   ATI Radeon Xpress
-ATI Technologies Inc. ATI Radeon Xpress 1250 x86/MMX/3DNow!/SSE2                                         supported      0   ATI Radeon Xpress
-ATI Technologies Inc. ATI Radeon Xpress 1250 x86/SSE2                                                    supported      0   ATI Radeon Xpress
-ATI Technologies Inc. ATI Radeon Xpress Series                                                           supported      0   ATI Radeon Xpress
-ATI Technologies Inc. ATI Radeon Xpress Series x86/MMX/3DNow!/SSE2                                       supported      0   ATI Radeon Xpress
-ATI Technologies Inc. ATI Yamaha HD 9000                                                                 supported      0   ATI Technologies
-ATI Technologies Inc. ATi RS880M                                                                         supported      1   ATI RS880M
-ATI Technologies Inc. Carte graphique VGA standard                                                       supported      0   ATI Technologies
-ATI Technologies Inc. Diamond Radeon X1550 Series                                                        supported      2   ATI Radeon X15xx
-ATI Technologies Inc. EG JUNIPER                                                                         supported      3   AMD JUNIPER (HD 5700)
-ATI Technologies Inc. EG PARK                                                                            supported      3   AMD PARK
-ATI Technologies Inc. FireGL V3100 Pentium 4 (SSE2)                                                      supported      0   ATI FireGL
-ATI Technologies Inc. FireMV 2400 PCI DDR x86                                                            supported      0   ATI FireMV
-ATI Technologies Inc. FireMV 2400 PCI DDR x86/SSE2                                                       supported      0   ATI FireMV
-ATI Technologies Inc. GeCube Radeon X1550                                                                supported      2   ATI Radeon X15xx
-ATI Technologies Inc. GeForce 9600 GT      x86/SSE2                                                      supported      2   ATI Geforce 9600 GT
-ATI Technologies Inc. Geforce 9500 GT                                                                    supported      2   ATI Geforce 9500 GT
-ATI Technologies Inc. Geforce 9500GT                                                                     supported      2   ATI Geforce 9500 GT
-ATI Technologies Inc. Geforce 9800 GT                                                                    supported      2   ATI Geforce 9800 GT
-ATI Technologies Inc. HD3730                                                                             supported      0   ATI Technologies
-ATI Technologies Inc. HIGHTECH EXCALIBUR RADEON 9550SE Series                                            supported      0   ATI Radeon 9500
-ATI Technologies Inc. HIGHTECH EXCALIBUR X700 PRO                                                        supported      0   ATI Technologies
-ATI Technologies Inc. M21 x86/MMX/3DNow!/SSE2                                                            supported      0   ATI Technologies
-ATI Technologies Inc. M76M                                                                               supported      3   ATI M76
-ATI Technologies Inc. MOBILITY RADEON 7500 DDR x86/SSE2                                                  supported      0   ATI Mobility Radeon 7xxx
-ATI Technologies Inc. MOBILITY RADEON 9000 DDR x86/SSE2                                                  supported      0   ATI Radeon 9000
-ATI Technologies Inc. MOBILITY RADEON 9000 IGPRADEON 9100 IGP DDR x86/SSE2                               supported      0   ATI Radeon 9000
-ATI Technologies Inc. MOBILITY RADEON 9100 IGP DDR x86/SSE2                                              supported      0   ATI Radeon 9100
-ATI Technologies Inc. MOBILITY RADEON 9600 x86/SSE2                                                      supported      0   ATI Mobility Radeon 9600
-ATI Technologies Inc. MOBILITY RADEON 9700 x86/SSE2                                                      supported      1   ATI Mobility Radeon 9700
-ATI Technologies Inc. MOBILITY RADEON X300 x86/SSE2                                                      supported      0   ATI Radeon X300
-ATI Technologies Inc. MOBILITY RADEON X600 x86/SSE2                                                      supported      1   ATI Radeon X600
-ATI Technologies Inc. MOBILITY RADEON X700 SE x86                                                        supported      1   ATI Radeon X700
-ATI Technologies Inc. MOBILITY RADEON X700 x86/SSE2                                                      supported      1   ATI Radeon X700
-ATI Technologies Inc. MOBILITY RADEON Xpress 200 Series SW TCL x86/MMX/3DNow!/SSE2                       supported      0   ATI Radeon Xpress
-ATI Technologies Inc. MSI RX9550SE                                                                       supported      1   ATI Radeon RX9550
-ATI Technologies Inc. MSI Radeon X1550 Series                                                            supported      2   ATI Radeon X15xx
-ATI Technologies Inc. Mobility Radeon HD 6000 series                                                     supported      0   ATI Technologies
-ATI Technologies Inc. Mobility Radeon X2300 HD                                                           supported      1   ATI Radeon X2xxx
-ATI Technologies Inc. Mobility Radeon X2300 HD x86/SSE2                                                  supported      1   ATI Radeon X2xxx
-ATI Technologies Inc. RADEON 7000 DDR x86/MMX/3DNow!/SSE                                                 supported      0   ATI Radeon 7xxx
-ATI Technologies Inc. RADEON 7000 DDR x86/SSE2                                                           supported      0   ATI Radeon 7xxx
-ATI Technologies Inc. RADEON 7500 DDR x86/MMX/3DNow!/SSE2                                                supported      0   ATI Radeon 7xxx
-ATI Technologies Inc. RADEON 7500 DDR x86/SSE2                                                           supported      0   ATI Radeon 7xxx
-ATI Technologies Inc. RADEON 9100 IGP DDR x86/SSE2                                                       supported      0   ATI Radeon 9100
-ATI Technologies Inc. RADEON 9200 DDR x86/MMX/3DNow!/SSE                                                 supported      0   ATI Radeon 9200
-ATI Technologies Inc. RADEON 9200 DDR x86/SSE2                                                           supported      0   ATI Radeon 9200
-ATI Technologies Inc. RADEON 9200 PRO DDR x86/MMX/3DNow!/SSE                                             supported      0   ATI Radeon 9200
-ATI Technologies Inc. RADEON 9200 Series DDR x86/MMX/3DNow!/SSE                                          supported      0   ATI Radeon 9200
-ATI Technologies Inc. RADEON 9200 Series DDR x86/MMX/3DNow!/SSE2                                         supported      0   ATI Radeon 9200
-ATI Technologies Inc. RADEON 9200 Series DDR x86/SSE                                                     supported      0   ATI Radeon 9200
-ATI Technologies Inc. RADEON 9200 Series DDR x86/SSE2                                                    supported      0   ATI Radeon 9200
-ATI Technologies Inc. RADEON 9200SE DDR x86/MMX/3DNow!/SSE2                                              supported      0   ATI Radeon 9200
-ATI Technologies Inc. RADEON 9200SE DDR x86/SSE2                                                         supported      0   ATI Radeon 9200
-ATI Technologies Inc. RADEON 9250/9200 Series DDR x86/MMX/3DNow!/SSE                                     supported      0   ATI Radeon 9200
-ATI Technologies Inc. RADEON 9250/9200 Series DDR x86/MMX/3DNow!/SSE2                                    supported      0   ATI Radeon 9200
-ATI Technologies Inc. RADEON 9250/9200 Series DDR x86/SSE2                                               supported      0   ATI Radeon 9200
-ATI Technologies Inc. RADEON 9500                                                                        supported      0   ATI Radeon 9500
-ATI Technologies Inc. RADEON 9550 x86/SSE2                                                               supported      0   ATI Radeon 9500
-ATI Technologies Inc. RADEON 9600 SERIES                                                                 supported      0   ATI Radeon 9600
-ATI Technologies Inc. RADEON 9600 SERIES x86/MMX/3DNow!/SSE2                                             supported      0   ATI Radeon 9600
-ATI Technologies Inc. RADEON 9600 SERIES x86/SSE2                                                        supported      0   ATI Radeon 9600
-ATI Technologies Inc. RADEON 9600 TX x86/SSE2                                                            supported      0   ATI Radeon 9600
-ATI Technologies Inc. RADEON 9600 x86/MMX/3DNow!/SSE2                                                    supported      0   ATI Radeon 9600
-ATI Technologies Inc. RADEON 9600 x86/SSE2                                                               supported      0   ATI Radeon 9600
-ATI Technologies Inc. RADEON 9700 PRO x86/MMX/3DNow!/SSE                                                 supported      1   ATI Radeon 9700
-ATI Technologies Inc. RADEON 9800 PRO                                                                    supported      1   ATI Radeon 9800
-ATI Technologies Inc. RADEON 9800 x86/SSE2                                                               supported      1   ATI Radeon 9800
-ATI Technologies Inc. RADEON IGP 340M DDR x86/SSE2                                                       unsupported    0   ATI IGP 340M
-ATI Technologies Inc. RADEON X300 Series x86/SSE2                                                        supported      0   ATI Radeon X300
-ATI Technologies Inc. RADEON X300 x86/SSE2                                                               supported      0   ATI Radeon X300
-ATI Technologies Inc. RADEON X300/X550 Series x86/SSE2                                                   supported      0   ATI Radeon X300
-ATI Technologies Inc. RADEON X550 x86/MMX/3DNow!/SSE2                                                    supported      0   ATI Radeon X500
-ATI Technologies Inc. RADEON X550 x86/SSE2                                                               supported      0   ATI Radeon X500
-ATI Technologies Inc. RADEON X600 Series                                                                 supported      1   ATI Radeon X600
-ATI Technologies Inc. RADEON X600 x86/SSE2                                                               supported      1   ATI Radeon X600
-ATI Technologies Inc. RADEON X600/X550 Series                                                            supported      1   ATI Radeon X600
-ATI Technologies Inc. RADEON X700 PRO x86/SSE2                                                           supported      1   ATI Radeon X700
-ATI Technologies Inc. RADEON X800 SE x86/MMX/3DNow!/SSE2                                                 supported      2   ATI Radeon X800
-ATI Technologies Inc. RADEON X800 XT                                                                     supported      2   ATI Radeon X800
-ATI Technologies Inc. RADEON X800GT                                                                      supported      2   ATI Radeon X800
-ATI Technologies Inc. RADEON XPRESS 200 Series SW TCL x86/MMX/3DNow!/SSE2                                supported      0   ATI Radeon Xpress
-ATI Technologies Inc. RADEON XPRESS 200 Series SW TCL x86/SSE2                                           supported      0   ATI Radeon Xpress
-ATI Technologies Inc. RADEON XPRESS 200 Series x86/SSE2                                                  supported      0   ATI Radeon Xpress
-ATI Technologies Inc. RADEON XPRESS 200M Series SW TCL x86/MMX/3DNow!/SSE2                               supported      0   ATI Radeon Xpress
-ATI Technologies Inc. RADEON XPRESS 200M Series SW TCL x86/SSE2                                          supported      0   ATI Radeon Xpress
-ATI Technologies Inc. RADEON XPRESS 200M Series x86/MMX/3DNow!/SSE2                                      supported      0   ATI Radeon Xpress
-ATI Technologies Inc. RADEON XPRESS 200M Series x86/SSE2                                                 supported      0   ATI Radeon Xpress
-ATI Technologies Inc. RADEON XPRESS Series x86/MMX/3DNow!/SSE2                                           supported      0   ATI Radeon Xpress
-ATI Technologies Inc. RADEON XPRESS Series x86/SSE2                                                      supported      0   ATI Radeon Xpress
-ATI Technologies Inc. RS740                                                                              supported      0   ATI Technologies
-ATI Technologies Inc. RS780C                                                                             supported      0   AMD RS780 (HD 3200)
-ATI Technologies Inc. RS780M                                                                             supported      0   AMD RS780 (HD 3200)
-ATI Technologies Inc. RS880                                                                              supported      1   AMD RS880 (HD 4200)
-ATI Technologies Inc. RV410 Pro x86/SSE2                                                                 supported      1   ATI RV410 (X700)
-ATI Technologies Inc. RV790                                                                              supported      3   AMD RV790 (HD 4800)
-ATI Technologies Inc. Radeon (TM) HD 6470M                                                               supported      0   ATI Technologies
-ATI Technologies Inc. Radeon (TM) HD 6490M                                                               supported      0   ATI Technologies
-ATI Technologies Inc. Radeon (TM) HD 6750M                                                               supported      0   ATI Technologies
-ATI Technologies Inc. Radeon (TM) HD 6770M                                                               supported      0   ATI Technologies
-ATI Technologies Inc. Radeon (TM) HD 6850M                                                               supported      0   ATI Technologies
-ATI Technologies Inc. Radeon 7000 DDR x86/SSE                                                            supported      0   ATI Radeon 7xxx
-ATI Technologies Inc. Radeon 7000 DDR x86/SSE2                                                           supported      0   ATI Radeon 7xxx
-ATI Technologies Inc. Radeon 7000 SDR x86/SSE2                                                           supported      0   ATI Radeon 7xxx
-ATI Technologies Inc. Radeon 7500 DDR x86/SSE2                                                           supported      0   ATI Radeon 7xxx
-ATI Technologies Inc. Radeon 9000 DDR x86/SSE2                                                           supported      0   ATI Radeon 9000
-ATI Technologies Inc. Radeon DDR x86/MMX/3DNow!/SSE2                                                     supported      0   ATI Radeon DDR
-ATI Technologies Inc. Radeon DDR x86/SSE                                                                 supported      0   ATI Radeon DDR
-ATI Technologies Inc. Radeon DDR x86/SSE2                                                                supported      0   ATI Radeon DDR
-ATI Technologies Inc. Radeon HD 6310                                                                     supported      3   ATI Radeon HD 6300
-ATI Technologies Inc. Radeon HD 6470M                                                                    supported      3   ATI Radeon HD 6400
-ATI Technologies Inc. Radeon HD 6490M                                                                    supported      3   ATI Radeon HD 6400
-ATI Technologies Inc. Radeon HD 6800 Series                                                              supported      3   ATI Radeon HD 6800
-ATI Technologies Inc. Radeon SDR x86/SSE2                                                                supported      0   ATI Technologies
-ATI Technologies Inc. Radeon X1300 Series                                                                supported      1   ATI Radeon X13xx
-ATI Technologies Inc. Radeon X1300 Series x86/MMX/3DNow!/SSE2                                            supported      1   ATI Radeon X13xx
-ATI Technologies Inc. Radeon X1300 Series x86/SSE2                                                       supported      1   ATI Radeon X13xx
-ATI Technologies Inc. Radeon X1300/X1550 Series                                                          supported      1   ATI Radeon X13xx
-ATI Technologies Inc. Radeon X1300/X1550 Series x86/SSE2                                                 supported      1   ATI Radeon X13xx
-ATI Technologies Inc. Radeon X1550 64-bit (Microsoft - WDDM)                                             supported      2   ATI Radeon X15xx
-ATI Technologies Inc. Radeon X1550 Series                                                                supported      2   ATI Radeon X15xx
-ATI Technologies Inc. Radeon X1550 Series x86/SSE2                                                       supported      2   ATI Radeon X15xx
-ATI Technologies Inc. Radeon X1600                                                                       supported      2   ATI Radeon X16xx
-ATI Technologies Inc. Radeon X1600 Pro / X1300XT x86/MMX/3DNow!/SSE2                                     supported      2   ATI Radeon X16xx
-ATI Technologies Inc. Radeon X1600 Series                                                                supported      2   ATI Radeon X16xx
-ATI Technologies Inc. Radeon X1600 Series x86/SSE2                                                       supported      2   ATI Radeon X16xx
-ATI Technologies Inc. Radeon X1600/1650 Series                                                           supported      2   ATI Radeon X16xx
-ATI Technologies Inc. Radeon X1600/X1650 Series                                                          supported      2   ATI Radeon X16xx
-ATI Technologies Inc. Radeon X1650 Series                                                                supported      2   ATI Radeon X16xx
-ATI Technologies Inc. Radeon X1650 Series x86/MMX/3DNow!/SSE2                                            supported      2   ATI Radeon X16xx
-ATI Technologies Inc. Radeon X1650 Series x86/SSE2                                                       supported      2   ATI Radeon X16xx
-ATI Technologies Inc. Radeon X1900 Series x86/MMX/3DNow!/SSE2                                            supported      3   ATI Radeon X19xx
-ATI Technologies Inc. Radeon X1950 Pro                                                                   supported      3   ATI Radeon X19xx
-ATI Technologies Inc. Radeon X1950 Pro x86/MMX/3DNow!/SSE2                                               supported      3   ATI Radeon X19xx
-ATI Technologies Inc. Radeon X1950 Series                                                                supported      3   ATI Radeon X19xx
-ATI Technologies Inc. Radeon X1950 Series  (Microsoft - WDDM)                                            supported      3   ATI Radeon X19xx
-ATI Technologies Inc. Radeon X300/X550/X1050 Series                                                      supported      0   ATI Radeon X300
-ATI Technologies Inc. Radeon X550/X700 Series                                                            supported      0   ATI Radeon X500
-ATI Technologies Inc. Radeon X550XTX x86/MMX/3DNow!/SSE2                                                 supported      0   ATI Radeon X500
-ATI Technologies Inc. SAPPHIRE RADEON X300SE                                                             supported      0   ATI Radeon X300
-ATI Technologies Inc. SAPPHIRE RADEON X300SE x86/MMX/3DNow!/SSE2                                         supported      0   ATI Radeon X300
-ATI Technologies Inc. SAPPHIRE RADEON X300SE x86/SSE2                                                    supported      0   ATI Radeon X300
-ATI Technologies Inc. SAPPHIRE Radeon X1550 Series                                                       supported      2   ATI Radeon X15xx
-ATI Technologies Inc. SAPPHIRE Radeon X1550 Series x86/MMX/3DNow!/SSE2                                   supported      2   ATI Radeon X15xx
-ATI Technologies Inc. SAPPHIRE Radeon X1550 Series x86/SSE2                                              supported      2   ATI Radeon X15xx
-ATI Technologies Inc. SAPPHIRE Radeon X1550 x86/SSE2                                                     supported      2   ATI Radeon X15xx
-ATI Technologies Inc. Sapphire Radeon HD 3730                                                            supported      3   ATI Radeon HD 3700
-ATI Technologies Inc. Sapphire Radeon HD 3750                                                            supported      3   ATI Radeon HD 3700
-ATI Technologies Inc. Standard VGA Graphics Adapter                                                      supported      0   ATI Technologies
-ATI Technologies Inc. Tul, RADEON  X600 PRO                                                              supported      0   ATI Technologies
-ATI Technologies Inc. Tul, RADEON  X600 PRO x86/SSE2                                                     supported      0   ATI Technologies
-ATI Technologies Inc. Tul, RADEON  X700 PRO                                                              supported      0   ATI Technologies
-ATI Technologies Inc. Tul, RADEON  X700 PRO x86/MMX/3DNow!/SSE2                                          supported      0   ATI Technologies
-ATI Technologies Inc. VisionTek Radeon 4350                                                              supported      0   ATI Technologies
-ATI Technologies Inc. VisionTek Radeon X1550 Series                                                      supported      2   ATI Radeon X15xx
-ATI Technologies Inc. WRESTLER 9802                                                                      supported      0   ATI Technologies
-ATI Technologies Inc. WRESTLER 9803                                                                      supported      0   ATI Technologies
-ATI Technologies Inc. XFX Radeon HD 4570                                                                 supported      3   ATI Radeon HD 4500
-ATI Technologies Inc. Yamaha ATI HD 9000da/s                                                             supported      0   ATI Technologies
-ATI Technologies Inc. Yamaha ATI HD 9000da/s 2048                                                        supported      0   ATI Technologies
-Advanced Micro Devices, Inc. Mesa DRI R600 (RS780 9612) 20090101 x86/MMX+/3DNow!+/SSE2 TCL DRI2          supported      0   AMD RS780 (HD 3200)
-Advanced Micro Devices, Inc. Mesa DRI R600 (RS880 9710) 20090101 x86/MMX+/3DNow!+/SSE2 TCL DRI2          supported      1   AMD RS880 (HD 4200)
-Advanced Micro Devices, Inc. Mesa DRI R600 (RS880 9712) 20090101  TCL                                    supported      1   AMD RS880 (HD 4200)
-Advanced Micro Devices, Inc. Mesa DRI R600 (RV610 94C1) 20090101 x86/MMX+/3DNow!+/SSE2 TCL DRI2          supported      1   AMD RV610 (HD 2400)
-Advanced Micro Devices, Inc. Mesa DRI R600 (RV610 94C9) 20090101 x86/MMX/SSE2 TCL DRI2                   supported      1   AMD RV610 (HD 2400)
-Advanced Micro Devices, Inc. Mesa DRI R600 (RV620 95C4) 20090101 x86/MMX/SSE2 TCL DRI2                   supported      1   AMD RV620 (HD 3400)
-Advanced Micro Devices, Inc. Mesa DRI R600 (RV620 95C5) 20090101 x86/MMX+/3DNow!+/SSE2 TCL DRI2          supported      1   AMD RV620 (HD 3400)
-Advanced Micro Devices, Inc. Mesa DRI R600 (RV620 95C5) 20090101 x86/MMX/SSE2 TCL DRI2                   supported      1   AMD RV620 (HD 3400)
-Advanced Micro Devices, Inc. Mesa DRI R600 (RV635 9596) 20090101 x86/MMX+/3DNow!+/SSE TCL DRI2           supported      3   AMD RV635 (HD 3600)
-Advanced Micro Devices, Inc. Mesa DRI R600 (RV670 9505) 20090101 x86/MMX+/3DNow!+/SSE2 TCL DRI2          supported      3   AMD RV670 (HD 3800)
-Advanced Micro Devices, Inc. Mesa DRI R600 (RV670 9505) 20090101 x86/MMX/SSE2 TCL DRI2                   supported      3   AMD RV670 (HD 3800)
-Advanced Micro Devices, Inc. Mesa DRI R600 (RV710 9552) 20090101 x86/MMX/SSE2 TCL DRI2                   supported      1   AMD RV710 (HD 4300)
-Advanced Micro Devices, Inc. Mesa DRI R600 (RV730 9490) 20090101 x86/MMX+/3DNow!+/SSE2 TCL DRI2          supported      3   AMD RV730 (HD 4600)
-Advanced Micro Devices, Inc. Mesa DRI R600 (RV730 9490) 20090101 x86/MMX/SSE2 TCL DRI2                   supported      3   AMD RV730 (HD 4600)
-Advanced Micro Devices, Inc. Mesa DRI R600 (RV730 9498) 20090101  TCL DRI2                               supported      3   AMD RV730 (HD 4600)
-Advanced Micro Devices, Inc. Mesa DRI R600 (RV770 9440) 20090101 x86/MMX+/3DNow!+/SSE2 TCL DRI2          supported      3   AMD RV770 (HD 4800)
-Advanced Micro Devices, Inc. Mesa DRI R600 (RV770 9442) 20090101 x86/MMX/SSE2 TCL DRI2                   supported      3   AMD RV770 (HD 4800)
-Alex Mohr GL Hijacker!                                                                                                      NO MATCH
-Apple Software Renderer                                                                                  unsupported    0   Apple Software Renderer
-DRI R300 Project Mesa DRI R300 (RS400 5954) 20090101 x86/MMX+/3DNow!+/SSE2 NO-TCL DRI2                   supported      1   ATI R300 (9700)
-DRI R300 Project Mesa DRI R300 (RS400 5975) 20090101 x86/MMX+/3DNow!+/SSE2 NO-TCL DRI2                   supported      1   ATI R300 (9700)
-DRI R300 Project Mesa DRI R300 (RS400 5A62) 20090101 x86/MMX/SSE2 NO-TCL DRI2                            supported      1   ATI R300 (9700)
-DRI R300 Project Mesa DRI R300 (RS600 7941) 20090101 x86/MMX/SSE2 NO-TCL                                 unsupported    0   ATI RS600 (Xpress 3200)
-DRI R300 Project Mesa DRI R300 (RS690 791F) 20090101 x86/MMX+/3DNow!+/SSE2 NO-TCL DRI2                   supported      1   ATI R300 (9700)
-DRI R300 Project Mesa DRI R300 (RV350 4151) 20090101 AGP 4x x86/MMX+/3DNow!+/SSE TCL                     supported      0   ATI RV350 (9600)
-DRI R300 Project Mesa DRI R300 (RV350 4153) 20090101 AGP 8x x86/MMX+/3DNow!+/SSE TCL                     supported      0   ATI RV350 (9600)
-DRI R300 Project Mesa DRI R300 (RV380 3150) 20090101 x86/MMX+/3DNow!+/SSE2 TCL DRI2                      supported      0   ATI RV380
-DRI R300 Project Mesa DRI R300 (RV380 3150) 20090101 x86/MMX/SSE2 TCL DRI2                               supported      0   ATI RV380
-DRI R300 Project Mesa DRI R300 (RV380 5B60) 20090101 x86/MMX/SSE2 TCL DRI2                               supported      0   ATI RV380
-DRI R300 Project Mesa DRI R300 (RV380 5B62) 20090101 x86/MMX+/3DNow!+/SSE2 TCL DRI2                      supported      0   ATI RV380
-DRI R300 Project Mesa DRI R300 (RV515 7145) 20090101 x86/MMX/SSE2 TCL DRI2                               supported      1   ATI RV515
-DRI R300 Project Mesa DRI R300 (RV515 7146) 20090101 x86/MMX+/3DNow!+/SSE2 TCL DRI2                      supported      1   ATI RV515
-DRI R300 Project Mesa DRI R300 (RV515 7146) 20090101 x86/MMX/SSE2 TCL DRI2                               supported      1   ATI RV515
-DRI R300 Project Mesa DRI R300 (RV515 7149) 20090101 x86/MMX/SSE2 TCL DRI2                               supported      1   ATI RV515
-DRI R300 Project Mesa DRI R300 (RV515 714A) 20090101 x86/MMX/SSE2 TCL                                    supported      1   ATI RV515
-DRI R300 Project Mesa DRI R300 (RV515 714A) 20090101 x86/MMX/SSE2 TCL DRI2                               supported      1   ATI RV515
-DRI R300 Project Mesa DRI R300 (RV530 71C4) 20090101 x86/MMX/SSE2 TCL DRI2                               supported      1   ATI RV530
-GPU_CLASS_UNKNOWN                                                                                                           NO MATCH
-Humper 3D-Analyze v2.3 - http://www.tommti-systems.com                                                   supported      0   Humper
-Humper Chromium                                                                                          supported      0   Humper
-Imagination Technologies PowerVR SGX545                                                                                     NO MATCH
-Intel                                                                                                                       NO MATCH
-Intel  HD Graphics Family                                                                                supported      2   Intel HD Graphics
-Intel 3D-Analyze v2.2 - http://www.tommti-systems.com                                                                       NO MATCH
-Intel 3D-Analyze v2.3 - http://www.tommti-systems.com                                                                       NO MATCH
-Intel 4 Series Internal Chipset                                                                                             NO MATCH
-Intel 830M                                                                                               unsupported    0   Intel 830M
-Intel 845G                                                                                               unsupported    0   Intel 845G
-Intel 855GM                                                                                              unsupported    0   Intel 855GM
-Intel 865G                                                                                               unsupported    0   Intel 865G
-Intel 915G                                                                                               unsupported    0   Intel 915G
-Intel 915GM                                                                                              unsupported    0   Intel 915GM
-Intel 945G                                                                                               supported      0   Intel 945G
-Intel 945GM                                                                                              supported      0   Intel 945GM
-Intel 950                                                                                                supported      0   Intel 950
-Intel 965                                                                                                supported      0   Intel 965
-Intel B43 Express Chipset                                                                                                   NO MATCH
-Intel Bear Lake                                                                                          unsupported    0   Intel Bear Lake
-Intel Broadwater                                                                                         unsupported    0   Intel Broadwater
-Intel Brookdale                                                                                          unsupported    0   Intel Brookdale
-Intel Cantiga                                                                                            unsupported    0   Intel Cantiga
-Intel EMGD on PowerVR SGX535                                                                                                NO MATCH
-Intel Eaglelake                                                                                          supported      0   Intel Eaglelake
-Intel Familia Mobile 45 Express Chipset (Microsoft Corporation - WDDM 1.1)                                                  NO MATCH
-Intel G33                                                                                                unsupported    0   Intel G33
-Intel G41                                                                                                supported      0   Intel G41
-Intel G41 Express Chipset                                                                                supported      0   Intel G41
-Intel G45                                                                                                supported      0   Intel G45
-Intel G45/G43 Express Chipset                                                                            supported      0   Intel G45
-Intel Graphics Media Accelerator HD                                                                      supported      0   Intel Graphics Media HD
-Intel HD Graphics                                                                                        supported      2   Intel HD Graphics
-Intel HD Graphics 100                                                                                    supported      2   Intel HD Graphics
-Intel HD Graphics 200                                                                                    supported      2   Intel HD Graphics
-Intel HD Graphics 200 BR-1101-00SH                                                                       supported      2   Intel HD Graphics
-Intel HD Graphics 200 BR-1101-00SJ                                                                       supported      2   Intel HD Graphics
-Intel HD Graphics 200 BR-1101-00SK                                                                       supported      2   Intel HD Graphics
-Intel HD Graphics 200 BR-1101-01M5                                                                       supported      2   Intel HD Graphics
-Intel HD Graphics 200 BR-1101-01M6                                                                       supported      2   Intel HD Graphics
-Intel HD Graphics BR-1004-01Y1                                                                           supported      2   Intel HD Graphics
-Intel HD Graphics BR-1006-0364                                                                           supported      2   Intel HD Graphics
-Intel HD Graphics BR-1006-0365                                                                           supported      2   Intel HD Graphics
-Intel HD Graphics BR-1006-0366                                                                           supported      2   Intel HD Graphics
-Intel HD Graphics BR-1007-02G4                                                                           supported      2   Intel HD Graphics
-Intel HD Graphics BR-1101-04SY                                                                           supported      2   Intel HD Graphics
-Intel HD Graphics BR-1101-04SZ                                                                           supported      2   Intel HD Graphics
-Intel HD Graphics BR-1101-04T0                                                                           supported      2   Intel HD Graphics
-Intel HD Graphics BR-1101-04T9                                                                           supported      2   Intel HD Graphics
-Intel HD Graphics Family                                                                                 supported      2   Intel HD Graphics
-Intel HD Graphics Family BR-1012-00Y8                                                                    supported      2   Intel HD Graphics
-Intel HD Graphics Family BR-1012-00YF                                                                    supported      2   Intel HD Graphics
-Intel HD Graphics Family BR-1012-00ZD                                                                    supported      2   Intel HD Graphics
-Intel HD Graphics Family BR-1102-00ML                                                                    supported      2   Intel HD Graphics
-Intel Inc. Intel GMA 900 OpenGL Engine                                                                                      NO MATCH
-Intel Inc. Intel GMA 950 OpenGL Engine                                                                   supported      0   Intel 950
-Intel Inc. Intel GMA X3100 OpenGL Engine                                                                 supported      0   Intel X3100
-Intel Inc. Intel HD Graphics 3000 OpenGL Engine                                                          supported      2   Intel HD Graphics
-Intel Inc. Intel HD Graphics OpenGL Engine                                                               supported      2   Intel HD Graphics
-Intel Inc. Intel HD xxxx OpenGL Engine                                                                                      NO MATCH
-Intel Intel 845G                                                                                         unsupported    0   Intel 845G
-Intel Intel 855GM                                                                                        unsupported    0   Intel 855GM
-Intel Intel 865G                                                                                         unsupported    0   Intel 865G
-Intel Intel 915G                                                                                         unsupported    0   Intel 915G
-Intel Intel 915GM                                                                                        unsupported    0   Intel 915GM
-Intel Intel 945G                                                                                         supported      0   Intel 945G
-Intel Intel 945GM                                                                                        supported      0   Intel 945GM
-Intel Intel 965/963 Graphics Media Accelerator                                                           supported      0   Intel 965
-Intel Intel Bear Lake B                                                                                  unsupported    0   Intel Bear Lake
-Intel Intel Broadwater G                                                                                 unsupported    0   Intel Broadwater
-Intel Intel Brookdale-G                                                                                  unsupported    0   Intel Brookdale
-Intel Intel Calistoga                                                                                                       NO MATCH
-Intel Intel Cantiga                                                                                      unsupported    0   Intel Cantiga
-Intel Intel Eaglelake                                                                                    supported      0   Intel Eaglelake
-Intel Intel Generic Renderer                                                                                                NO MATCH
-Intel Intel Grantsdale-G                                                                                                    NO MATCH
-Intel Intel HD Graphics 3000                                                                             supported      2   Intel HD Graphics
-Intel Intel Lakeport                                                                                                        NO MATCH
-Intel Intel Montara-GM                                                                                   unsupported    0   Intel Montara
-Intel Intel Pineview Platform                                                                            supported      0   Intel Pineview
-Intel Intel Springdale-G                                                                                 unsupported    0   Intel Springdale
-Intel Mobile - famiglia Express Chipset 45 (Microsoft Corporation - WDDM 1.1)                                               NO MATCH
-Intel Mobile 4 Series                                                                                    supported      0   Intel Mobile 4 Series
-Intel Mobile 4 Series Express Chipset Family                                                             supported      0   Intel Mobile 4 Series
-Intel Mobile 45 Express Chipset Family                                                                                      NO MATCH
-Intel Mobile 45 Express Chipset Family (Microsoft Corporation - WDDM 1.1)                                                   NO MATCH
-Intel Mobile HD Graphics                                                                                 supported      2   Intel HD Graphics
-Intel Mobile Intel(R) 4 Series Express Chipset Family                                                    supported      0   Intel Mobile 4 Series
-Intel Mobile SandyBridge HD Graphics                                                                     supported      2   Intel HD Graphics
-Intel Montara                                                                                            unsupported    0   Intel Montara
-Intel Pineview                                                                                           supported      0   Intel Pineview
-Intel Q45/Q43 Express Chipset                                                                                               NO MATCH
-Intel Royal BNA Driver                                                                                                      NO MATCH
-Intel SandyBridge HD Graphics                                                                            supported      2   Intel HD Graphics
-Intel SandyBridge HD Graphics BR-1006-00V8                                                               supported      2   Intel HD Graphics
-Intel Springdale                                                                                         unsupported    0   Intel Springdale
-Intel X3100                                                                                              supported      0   Intel X3100
-Intergraph wcgdrv 06.05.06.18                                                                                               NO MATCH
-Intergraph wcgdrv 06.06.00.35                                                                                               NO MATCH
-LegendgrafiX Mobile 945 Express C/TitaniumGL/GAC/D3D ACCELERATION/6x86/1 THREADs | http://Legendgra...                      NO MATCH
-LegendgrafiX NVIDIA GeForce GT 430/TitaniumGL/GAC/D3D ACCELERATION/6x86/1 THREADs | http://Legendgr...   supported      3   NVIDIA GT 430M
-Linden Lab Headless                                                                                                         NO MATCH
-Matrox                                                                                                   unsupported    0   Matrox
-Mesa                                                                                                     unsupported    0   Mesa
-Mesa Project Software Rasterizer                                                                         unsupported    0   Mesa
-NVIDIA /PCI/SSE2                                                                                                            NO MATCH
-NVIDIA /PCI/SSE2/3DNOW!                                                                                                     NO MATCH
-NVIDIA 205                                                                                               supported      0   NVIDIA G 205M
-NVIDIA 210                                                                                               supported      1   NVIDIA G 210
-NVIDIA 310                                                                                               supported      2   NVIDIA G 310M
-NVIDIA 310M                                                                                              supported      2   NVIDIA G 310M
-NVIDIA 315                                                                                               supported      2   NVIDIA G 315
-NVIDIA 315M                                                                                              supported      2   NVIDIA G 315
-NVIDIA 320M                                                                                              supported      2   NVIDIA G 320M
-NVIDIA C51                                                                                               supported      0   NVIDIA C51
-NVIDIA Corporation GeForce GT 230/PCI/SSE2                                                               supported      2   NVIDIA GT 230M
-NVIDIA Corporation GeForce GTX 285/PCI/SSE2                                                              supported      3   NVIDIA GTX 285
-NVIDIA D10M2-20/PCI/SSE2                                                                                                    NO MATCH
-NVIDIA D10P1-25/PCI/SSE2                                                                                                    NO MATCH
-NVIDIA D10P1-25/PCI/SSE2/3DNOW!                                                                                             NO MATCH
-NVIDIA D10P1-30/PCI/SSE2                                                                                                    NO MATCH
-NVIDIA D10P2-50/PCI/SSE2                                                                                                    NO MATCH
-NVIDIA D11M2-30/PCI/SSE2                                                                                                    NO MATCH
-NVIDIA D12-P1-35/PCI/SSE2                                                                                                   NO MATCH
-NVIDIA D12U-15/PCI/SSE2                                                                                                     NO MATCH
-NVIDIA D13M1-40/PCI/SSE2                                                                                                    NO MATCH
-NVIDIA D13P1-40/PCI/SSE2                                                                                                    NO MATCH
-NVIDIA D13P1-40/PCI/SSE2/3DNOW!                                                                                             NO MATCH
-NVIDIA D13U-10/PCI/SSE2                                                                                                     NO MATCH
-NVIDIA D13U/PCI/SSE2                                                                                                        NO MATCH
-NVIDIA D9M                                                                                               supported      1   NVIDIA D9M
-NVIDIA D9M-20/PCI/SSE2                                                                                   supported      1   NVIDIA D9M
-NVIDIA Entry Graphics/PCI/SSE2                                                                                              NO MATCH
-NVIDIA Entry Graphics/PCI/SSE2/3DNOW!                                                                                       NO MATCH
-NVIDIA G 102M                                                                                            supported      0   NVIDIA G102M
-NVIDIA G 103M                                                                                            supported      0   NVIDIA G103M
-NVIDIA G 105M                                                                                            supported      0   NVIDIA G105M
-NVIDIA G 110M                                                                                            supported      0   NVIDIA G 110M
-NVIDIA G100                                                                                              supported      0   NVIDIA G100
-NVIDIA G102M                                                                                             supported      0   NVIDIA G102M
-NVIDIA G103M                                                                                             supported      0   NVIDIA G103M
-NVIDIA G105M                                                                                             supported      0   NVIDIA G105M
-NVIDIA G210                                                                                              supported      1   NVIDIA G 210
-NVIDIA G210M                                                                                             supported      1   NVIDIA G 210
-NVIDIA G70/PCI/SSE2                                                                                                         NO MATCH
-NVIDIA G72                                                                                               supported      1   NVIDIA G72
-NVIDIA G73                                                                                               supported      1   NVIDIA G73
-NVIDIA G84                                                                                               supported      2   NVIDIA G84
-NVIDIA G86                                                                                               supported      3   NVIDIA G86
-NVIDIA G92                                                                                               supported      3   NVIDIA G92
-NVIDIA G92-200/PCI/SSE2                                                                                  supported      0   NVIDIA G 200
-NVIDIA G94                                                                                               supported      3   NVIDIA G94
-NVIDIA G96/PCI/SSE2                                                                                                         NO MATCH
-NVIDIA G98/PCI/SSE2                                                                                                         NO MATCH
-NVIDIA G98/PCI/SSE2/3DNOW!                                                                                                  NO MATCH
-NVIDIA GT 120                                                                                            supported      2   NVIDIA GT 120M
-NVIDIA GT 130                                                                                            supported      2   NVIDIA GT 130M
-NVIDIA GT 130M                                                                                           supported      2   NVIDIA GT 130M
-NVIDIA GT 140                                                                                            supported      2   NVIDIA GT 140M
-NVIDIA GT 150                                                                                            supported      2   NVIDIA GT 150M
-NVIDIA GT 160M                                                                                           supported      2   NVIDIA GT 160M
-NVIDIA GT 220                                                                                            supported      2   NVIDIA GT 220M
-NVIDIA GT 220/PCI/SSE2                                                                                   supported      2   NVIDIA GT 220M
-NVIDIA GT 220/PCI/SSE2/3DNOW!                                                                            supported      2   NVIDIA GT 220M
-NVIDIA GT 230                                                                                            supported      2   NVIDIA GT 230M
-NVIDIA GT 230M                                                                                           supported      2   NVIDIA GT 230M
-NVIDIA GT 240                                                                                            supported      2   NVIDIA GT 240M
-NVIDIA GT 240M                                                                                           supported      2   NVIDIA GT 240M
-NVIDIA GT 250M                                                                                           supported      2   NVIDIA GT 250M
-NVIDIA GT 260M                                                                                           supported      2   NVIDIA GT 260M
-NVIDIA GT 320                                                                                            supported      2   NVIDIA G 320M
-NVIDIA GT 320M                                                                                           supported      2   NVIDIA G 320M
-NVIDIA GT 330                                                                                            supported      3   NVIDIA GT 330M
-NVIDIA GT 330M                                                                                           supported      3   NVIDIA GT 330M
-NVIDIA GT 340                                                                                            supported      2   NVIDIA GT 340M
-NVIDIA GT 420                                                                                            supported      2   NVIDIA GT 420M
-NVIDIA GT 430                                                                                            supported      3   NVIDIA GT 430M
-NVIDIA GT 440                                                                                            supported      3   NVIDIA GT 440M
-NVIDIA GT 450                                                                                            supported      3   NVIDIA GT 450M
-NVIDIA GT 520                                                                                            supported      3   NVIDIA GT 520M
-NVIDIA GT 540                                                                                            supported      3   NVIDIA GT 540M
-NVIDIA GT 540M                                                                                           supported      3   NVIDIA GT 540M
-NVIDIA GT-120                                                                                            supported      2   NVIDIA GT 120
-NVIDIA GT200/PCI/SSE2                                                                                    supported      0   NVIDIA G 200
-NVIDIA GTS 150                                                                                           supported      2   NVIDIA GT 150M
-NVIDIA GTS 240                                                                                           supported      3   NVIDIA GTS 240
-NVIDIA GTS 250                                                                                           supported      3   NVIDIA GTS 250
-NVIDIA GTS 350M                                                                                          supported      3   NVIDIA GTS 350M
-NVIDIA GTS 360                                                                                           supported      3   NVIDIA GTS 360
-NVIDIA GTS 360M                                                                                          supported      3   NVIDIA GTS 360M
-NVIDIA GTS 450                                                                                           supported      3   NVIDIA GTS 450
-NVIDIA GTX 260                                                                                           supported      3   NVIDIA GTX 260
-NVIDIA GTX 260M                                                                                          supported      3   NVIDIA GTX 260
-NVIDIA GTX 270                                                                                           supported      3   NVIDIA GTX 270
-NVIDIA GTX 280                                                                                           supported      3   NVIDIA GTX 280
-NVIDIA GTX 285                                                                                           supported      3   NVIDIA GTX 285
-NVIDIA GTX 290                                                                                           supported      3   NVIDIA GTX 290
-NVIDIA GTX 460                                                                                           supported      3   NVIDIA GTX 460
-NVIDIA GTX 460M                                                                                          supported      3   NVIDIA GTX 460M
-NVIDIA GTX 465                                                                                           supported      3   NVIDIA GTX 465
-NVIDIA GTX 470                                                                                           supported      3   NVIDIA GTX 470
-NVIDIA GTX 470M                                                                                          supported      3   NVIDIA GTX 470M
-NVIDIA GTX 480                                                                                           supported      3   NVIDIA GTX 480
-NVIDIA GTX 480M                                                                                          supported      3   NVIDIA GTX 480M
-NVIDIA GTX 550 Ti                                                                                        supported      3   NVIDIA GTX 550
-NVIDIA GTX 560                                                                                           supported      3   NVIDIA GTX 560
-NVIDIA GTX 560 Ti                                                                                        supported      3   NVIDIA GTX 560
-NVIDIA GTX 570                                                                                           supported      3   NVIDIA GTX 570
-NVIDIA GTX 580                                                                                           supported      3   NVIDIA GTX 580
-NVIDIA GTX 590                                                                                           supported      3   NVIDIA GTX 590
-NVIDIA GeForce                                                                                                              NO MATCH
-NVIDIA GeForce 2                                                                                         supported      0   NVIDIA GeForce 2
-NVIDIA GeForce 205/PCI/SSE2                                                                              supported      2   NVIDIA 205
-NVIDIA GeForce 210                                                                                       supported      2   NVIDIA 210
-NVIDIA GeForce 210/PCI/SSE2                                                                              supported      2   NVIDIA 210
-NVIDIA GeForce 210/PCI/SSE2/3DNOW!                                                                       supported      2   NVIDIA 210
-NVIDIA GeForce 3                                                                                         supported      0   NVIDIA GeForce 3
-NVIDIA GeForce 305M/PCI/SSE2                                                                             supported      1   NVIDIA 305M
-NVIDIA GeForce 310/PCI/SSE2                                                                              supported      3   NVIDIA 310
-NVIDIA GeForce 310/PCI/SSE2/3DNOW!                                                                       supported      3   NVIDIA 310
-NVIDIA GeForce 310M/PCI/SSE2                                                                             supported      1   NVIDIA 310M
-NVIDIA GeForce 315/PCI/SSE2                                                                              supported      3   NVIDIA 315
-NVIDIA GeForce 315/PCI/SSE2/3DNOW!                                                                       supported      3   NVIDIA 315
-NVIDIA GeForce 315M/PCI/SSE2                                                                             supported      2   NVIDIA 315M
-NVIDIA GeForce 320M/PCI/SSE2                                                                             supported      2   NVIDIA 320M
-NVIDIA GeForce 4 Go                                                                                      supported      0   NVIDIA GeForce 4
-NVIDIA GeForce 4 MX                                                                                      supported      0   NVIDIA GeForce 4
-NVIDIA GeForce 4 Ti                                                                                      supported      0   NVIDIA GeForce 4
-NVIDIA GeForce 405/PCI/SSE2                                                                              supported      1   NVIDIA G 405
-NVIDIA GeForce 410M/PCI/SSE2                                                                             supported      1   NVIDIA G 410M
-NVIDIA GeForce 6100                                                                                      supported      0   NVIDIA G100
-NVIDIA GeForce 6100 nForce 400/PCI/SSE2/3DNOW!                                                           supported      0   NVIDIA G100
-NVIDIA GeForce 6100 nForce 405/PCI/SSE2                                                                  supported      0   NVIDIA G100
-NVIDIA GeForce 6100 nForce 405/PCI/SSE2/3DNOW!                                                           supported      0   NVIDIA G100
-NVIDIA GeForce 6100 nForce 420/PCI/SSE2/3DNOW!                                                           supported      0   NVIDIA G100
-NVIDIA GeForce 6100 nForce 430/PCI/SSE2/3DNOW!                                                           supported      0   NVIDIA G100
-NVIDIA GeForce 6100/PCI/SSE2/3DNOW!                                                                      supported      0   NVIDIA G100
-NVIDIA GeForce 6150 LE/PCI/SSE2/3DNOW!                                                                   supported      0   NVIDIA GeForce 6100
-NVIDIA GeForce 6150/PCI/SSE2                                                                             supported      0   NVIDIA GeForce 6100
-NVIDIA GeForce 6150/PCI/SSE2/3DNOW!                                                                      supported      0   NVIDIA GeForce 6100
-NVIDIA GeForce 6150SE nForce 430/PCI/SSE2                                                                supported      0   NVIDIA GeForce 6100
-NVIDIA GeForce 6150SE nForce 430/PCI/SSE2/3DNOW!                                                         supported      0   NVIDIA GeForce 6100
-NVIDIA GeForce 6150SE/PCI/SSE2/3DNOW!                                                                    supported      0   NVIDIA GeForce 6100
-NVIDIA GeForce 6200                                                                                      supported      0   NVIDIA G 200
-NVIDIA GeForce 6200 A-LE/AGP/SSE/3DNOW!                                                                  supported      0   NVIDIA G 200
-NVIDIA GeForce 6200 A-LE/AGP/SSE2                                                                        supported      0   NVIDIA G 200
-NVIDIA GeForce 6200 A-LE/AGP/SSE2/3DNOW!                                                                 supported      0   NVIDIA G 200
-NVIDIA GeForce 6200 LE/PCI/SSE2                                                                          supported      0   NVIDIA G 200
-NVIDIA GeForce 6200 LE/PCI/SSE2/3DNOW!                                                                   supported      0   NVIDIA G 200
-NVIDIA GeForce 6200 TurboCache(TM)/PCI/SSE2                                                              supported      0   NVIDIA G 200
-NVIDIA GeForce 6200 TurboCache(TM)/PCI/SSE2/3DNOW!                                                       supported      0   NVIDIA G 200
-NVIDIA GeForce 6200/AGP/SSE/3DNOW!                                                                       supported      0   NVIDIA G 200
-NVIDIA GeForce 6200/AGP/SSE2                                                                             supported      0   NVIDIA G 200
-NVIDIA GeForce 6200/AGP/SSE2/3DNOW!                                                                      supported      0   NVIDIA G 200
-NVIDIA GeForce 6200/PCI/SSE/3DNOW!                                                                       supported      0   NVIDIA G 200
-NVIDIA GeForce 6200/PCI/SSE2                                                                             supported      0   NVIDIA G 200
-NVIDIA GeForce 6200/PCI/SSE2/3DNOW!                                                                      supported      0   NVIDIA G 200
-NVIDIA GeForce 6200SE TurboCache(TM)/PCI/SSE2/3DNOW!                                                     supported      0   NVIDIA G 200
-NVIDIA GeForce 6500                                                                                      supported      0   NVIDIA GeForce 6500
-NVIDIA GeForce 6500/PCI/SSE2                                                                             supported      0   NVIDIA GeForce 6500
-NVIDIA GeForce 6600                                                                                      supported      1   NVIDIA GeForce 6600
-NVIDIA GeForce 6600 GT/AGP/SSE/3DNOW!                                                                    supported      1   NVIDIA GeForce 6600
-NVIDIA GeForce 6600 GT/AGP/SSE2                                                                          supported      1   NVIDIA GeForce 6600
-NVIDIA GeForce 6600 GT/PCI/SSE/3DNOW!                                                                    supported      1   NVIDIA GeForce 6600
-NVIDIA GeForce 6600 GT/PCI/SSE2                                                                          supported      1   NVIDIA GeForce 6600
-NVIDIA GeForce 6600 GT/PCI/SSE2/3DNOW!                                                                   supported      1   NVIDIA GeForce 6600
-NVIDIA GeForce 6600 LE/PCI/SSE2                                                                          supported      1   NVIDIA GeForce 6600
-NVIDIA GeForce 6600/AGP/SSE/3DNOW!                                                                       supported      1   NVIDIA GeForce 6600
-NVIDIA GeForce 6600/AGP/SSE2                                                                             supported      1   NVIDIA GeForce 6600
-NVIDIA GeForce 6600/AGP/SSE2/3DNOW!                                                                      supported      1   NVIDIA GeForce 6600
-NVIDIA GeForce 6600/PCI/SSE2                                                                             supported      1   NVIDIA GeForce 6600
-NVIDIA GeForce 6600/PCI/SSE2/3DNOW!                                                                      supported      1   NVIDIA GeForce 6600
-NVIDIA GeForce 6700                                                                                      supported      2   NVIDIA GeForce 6700
-NVIDIA GeForce 6800                                                                                      supported      2   NVIDIA GeForce 6800
-NVIDIA GeForce 6800 GS/PCI/SSE2                                                                          supported      2   NVIDIA GeForce 6800
-NVIDIA GeForce 6800 GS/PCI/SSE2/3DNOW!                                                                   supported      2   NVIDIA GeForce 6800
-NVIDIA GeForce 6800 GT/AGP/SSE2                                                                          supported      2   NVIDIA GeForce 6800
-NVIDIA GeForce 6800 GT/PCI/SSE2                                                                          supported      2   NVIDIA GeForce 6800
-NVIDIA GeForce 6800 XT/AGP/SSE2                                                                          supported      2   NVIDIA GeForce 6800
-NVIDIA GeForce 6800 XT/PCI/SSE2                                                                          supported      2   NVIDIA GeForce 6800
-NVIDIA GeForce 6800 XT/PCI/SSE2/3DNOW!                                                                   supported      2   NVIDIA GeForce 6800
-NVIDIA GeForce 6800/PCI/SSE2                                                                             supported      2   NVIDIA GeForce 6800
-NVIDIA GeForce 6800/PCI/SSE2/3DNOW!                                                                      supported      2   NVIDIA GeForce 6800
-NVIDIA GeForce 7000                                                                                      supported      0   NVIDIA GeForce 7000
-NVIDIA GeForce 7000M                                                                                     supported      0   NVIDIA GeForce 7000
-NVIDIA GeForce 7000M / nForce 610M/PCI/SSE2                                                              supported      0   NVIDIA GeForce 7000
-NVIDIA GeForce 7000M / nForce 610M/PCI/SSE2/3DNOW!                                                       supported      0   NVIDIA GeForce 7000
-NVIDIA GeForce 7025 / NVIDIA nForce 630a/PCI/SSE2/3DNOW!                                                 supported      0   NVIDIA GeForce 7000
-NVIDIA GeForce 7025 / nForce 630a/PCI/SSE2                                                               supported      0   NVIDIA GeForce 7000
-NVIDIA GeForce 7025 / nForce 630a/PCI/SSE2/3DNOW!                                                        supported      0   NVIDIA GeForce 7000
-NVIDIA GeForce 7050 / NVIDIA nForce 610i/PCI/SSE2                                                        supported      0   NVIDIA GeForce 7000
-NVIDIA GeForce 7050 / NVIDIA nForce 620i/PCI/SSE2                                                        supported      0   NVIDIA GeForce 7000
-NVIDIA GeForce 7050 / nForce 610i/PCI/SSE2                                                               supported      0   NVIDIA GeForce 7000
-NVIDIA GeForce 7050 / nForce 620i/PCI/SSE2                                                               supported      0   NVIDIA GeForce 7000
-NVIDIA GeForce 7050 PV / NVIDIA nForce 630a/PCI/SSE2/3DNOW!                                              supported      0   NVIDIA GeForce 7000
-NVIDIA GeForce 7050 PV / nForce 630a/PCI/SSE2                                                            supported      0   NVIDIA GeForce 7000
-NVIDIA GeForce 7050 PV / nForce 630a/PCI/SSE2/3DNOW!                                                     supported      0   NVIDIA GeForce 7000
-NVIDIA GeForce 7050 SE / NVIDIA nForce 630a/PCI/SSE2/3DNOW!                                              supported      0   NVIDIA GeForce 7000
-NVIDIA GeForce 7100                                                                                      supported      0   NVIDIA G100
-NVIDIA GeForce 7100 / NVIDIA nForce 620i/PCI/SSE2                                                        supported      0   NVIDIA G100
-NVIDIA GeForce 7100 / NVIDIA nForce 630i/PCI/SSE2                                                        supported      0   NVIDIA G100
-NVIDIA GeForce 7100 / nForce 630i/PCI/SSE2                                                               supported      0   NVIDIA G100
-NVIDIA GeForce 7100 GS/PCI/SSE2                                                                          supported      0   NVIDIA G100
-NVIDIA GeForce 7100 GS/PCI/SSE2/3DNOW!                                                                   supported      0   NVIDIA G100
-NVIDIA GeForce 7150M / nForce 630M/PCI/SSE2                                                              supported      0   NVIDIA GeForce 7100
-NVIDIA GeForce 7150M / nForce 630M/PCI/SSE2/3DNOW!                                                       supported      0   NVIDIA GeForce 7100
-NVIDIA GeForce 7300                                                                                      supported      1   NVIDIA GeForce 7300
-NVIDIA GeForce 7300 GS/PCI/SSE2                                                                          supported      1   NVIDIA GeForce 7300
-NVIDIA GeForce 7300 GS/PCI/SSE2/3DNOW!                                                                   supported      1   NVIDIA GeForce 7300
-NVIDIA GeForce 7300 GT/AGP/SSE2                                                                          supported      1   NVIDIA GeForce 7300
-NVIDIA GeForce 7300 GT/AGP/SSE2/3DNOW!                                                                   supported      1   NVIDIA GeForce 7300
-NVIDIA GeForce 7300 GT/PCI/SSE2                                                                          supported      1   NVIDIA GeForce 7300
-NVIDIA GeForce 7300 GT/PCI/SSE2/3DNOW!                                                                   supported      1   NVIDIA GeForce 7300
-NVIDIA GeForce 7300 LE/PCI/SSE2                                                                          supported      1   NVIDIA GeForce 7300
-NVIDIA GeForce 7300 LE/PCI/SSE2/3DNOW!                                                                   supported      1   NVIDIA GeForce 7300
-NVIDIA GeForce 7300 SE/7200 GS/PCI/SSE2                                                                  supported      0   NVIDIA G 200
-NVIDIA GeForce 7300 SE/7200 GS/PCI/SSE2/3DNOW!                                                           supported      0   NVIDIA G 200
-NVIDIA GeForce 7300 SE/PCI/SSE2                                                                          supported      1   NVIDIA GeForce 7300
-NVIDIA GeForce 7300 SE/PCI/SSE2/3DNOW!                                                                   supported      1   NVIDIA GeForce 7300
-NVIDIA GeForce 7350 LE/PCI/SSE2                                                                          supported      1   NVIDIA GeForce 7300
-NVIDIA GeForce 7500                                                                                      supported      1   NVIDIA GeForce 7500
-NVIDIA GeForce 7500 LE/PCI/SSE2                                                                          supported      1   NVIDIA GeForce 7500
-NVIDIA GeForce 7500 LE/PCI/SSE2/3DNOW!                                                                   supported      1   NVIDIA GeForce 7500
-NVIDIA GeForce 7600                                                                                      supported      2   NVIDIA GeForce 7600
-NVIDIA GeForce 7600 GS/AGP/SSE2                                                                          supported      2   NVIDIA GeForce 7600
-NVIDIA GeForce 7600 GS/AGP/SSE2/3DNOW!                                                                   supported      2   NVIDIA GeForce 7600
-NVIDIA GeForce 7600 GS/PCI/SSE2                                                                          supported      2   NVIDIA GeForce 7600
-NVIDIA GeForce 7600 GS/PCI/SSE2/3DNOW!                                                                   supported      2   NVIDIA GeForce 7600
-NVIDIA GeForce 7600 GT/AGP/SSE/3DNOW!                                                                    supported      2   NVIDIA GeForce 7600
-NVIDIA GeForce 7600 GT/AGP/SSE2                                                                          supported      2   NVIDIA GeForce 7600
-NVIDIA GeForce 7600 GT/PCI/SSE2                                                                          supported      2   NVIDIA GeForce 7600
-NVIDIA GeForce 7600 GT/PCI/SSE2/3DNOW!                                                                   supported      2   NVIDIA GeForce 7600
-NVIDIA GeForce 7650 GS/PCI/SSE2                                                                          supported      2   NVIDIA GeForce 7600
-NVIDIA GeForce 7800                                                                                      supported      2   NVIDIA GeForce 7800
-NVIDIA GeForce 7800 GS/AGP/SSE2                                                                          supported      2   NVIDIA GeForce 7800
-NVIDIA GeForce 7800 GS/AGP/SSE2/3DNOW!                                                                   supported      2   NVIDIA GeForce 7800
-NVIDIA GeForce 7800 GT/PCI/SSE2                                                                          supported      2   NVIDIA GeForce 7800
-NVIDIA GeForce 7800 GT/PCI/SSE2/3DNOW!                                                                   supported      2   NVIDIA GeForce 7800
-NVIDIA GeForce 7800 GTX/PCI/SSE2                                                                         supported      2   NVIDIA GeForce 7800
-NVIDIA GeForce 7800 GTX/PCI/SSE2/3DNOW!                                                                  supported      2   NVIDIA GeForce 7800
-NVIDIA GeForce 7900                                                                                      supported      2   NVIDIA GeForce 7900
-NVIDIA GeForce 7900 GS/PCI/SSE2                                                                          supported      2   NVIDIA GeForce 7900
-NVIDIA GeForce 7900 GS/PCI/SSE2/3DNOW!                                                                   supported      2   NVIDIA GeForce 7900
-NVIDIA GeForce 7900 GT/GTO/PCI/SSE2                                                                      supported      2   NVIDIA GeForce 7900
-NVIDIA GeForce 7900 GT/GTO/PCI/SSE2/3DNOW!                                                               supported      2   NVIDIA GeForce 7900
-NVIDIA GeForce 7900 GT/PCI/SSE2/3DNOW!                                                                   supported      2   NVIDIA GeForce 7900
-NVIDIA GeForce 7900 GTX/PCI/SSE2                                                                         supported      2   NVIDIA GeForce 7900
-NVIDIA GeForce 7950 GT/PCI/SSE2                                                                          supported      2   NVIDIA GeForce 7900
-NVIDIA GeForce 7950 GT/PCI/SSE2/3DNOW!                                                                   supported      2   NVIDIA GeForce 7900
-NVIDIA GeForce 8100                                                                                      supported      0   NVIDIA G100
-NVIDIA GeForce 8100 / nForce 720a/PCI/SSE2/3DNOW!                                                        supported      0   NVIDIA G100
-NVIDIA GeForce 8200                                                                                      supported      0   NVIDIA G 200
-NVIDIA GeForce 8200/PCI/SSE2                                                                             supported      0   NVIDIA G 200
-NVIDIA GeForce 8200/PCI/SSE2/3DNOW!                                                                      supported      0   NVIDIA G 200
-NVIDIA GeForce 8200M                                                                                     supported      0   NVIDIA G 200
-NVIDIA GeForce 8200M G/PCI/SSE2                                                                          supported      0   NVIDIA G 200
-NVIDIA GeForce 8200M G/PCI/SSE2/3DNOW!                                                                   supported      0   NVIDIA G 200
-NVIDIA GeForce 8300                                                                                      supported      1   NVIDIA GeForce 8300
-NVIDIA GeForce 8300 GS/PCI/SSE2                                                                          supported      1   NVIDIA GeForce 8300
-NVIDIA GeForce 8400                                                                                      supported      1   NVIDIA GeForce 8400
-NVIDIA GeForce 8400 GS/PCI/SSE/3DNOW!                                                                    supported      1   NVIDIA GeForce 8400
-NVIDIA GeForce 8400 GS/PCI/SSE2                                                                          supported      1   NVIDIA GeForce 8400
-NVIDIA GeForce 8400 GS/PCI/SSE2/3DNOW!                                                                   supported      1   NVIDIA GeForce 8400
-NVIDIA GeForce 8400/PCI/SSE2/3DNOW!                                                                      supported      1   NVIDIA GeForce 8400
-NVIDIA GeForce 8400GS/PCI/SSE2                                                                           supported      1   NVIDIA GeForce 8400
-NVIDIA GeForce 8400GS/PCI/SSE2/3DNOW!                                                                    supported      1   NVIDIA GeForce 8400
-NVIDIA GeForce 8400M                                                                                     supported      1   NVIDIA GeForce 8400M
-NVIDIA GeForce 8400M G/PCI/SSE2                                                                          supported      1   NVIDIA GeForce 8400M
-NVIDIA GeForce 8400M G/PCI/SSE2/3DNOW!                                                                   supported      1   NVIDIA GeForce 8400M
-NVIDIA GeForce 8400M GS/PCI/SSE2                                                                         supported      1   NVIDIA GeForce 8400M
-NVIDIA GeForce 8400M GS/PCI/SSE2/3DNOW!                                                                  supported      1   NVIDIA GeForce 8400M
-NVIDIA GeForce 8400M GT/PCI/SSE2                                                                         supported      1   NVIDIA GeForce 8400M
-NVIDIA GeForce 8500                                                                                      supported      3   NVIDIA GeForce 8500
-NVIDIA GeForce 8500 GT/PCI/SSE2                                                                          supported      3   NVIDIA GeForce 8500
-NVIDIA GeForce 8500 GT/PCI/SSE2/3DNOW!                                                                   supported      3   NVIDIA GeForce 8500
-NVIDIA GeForce 8600                                                                                      supported      3   NVIDIA GeForce 8600
-NVIDIA GeForce 8600 GS/PCI/SSE2                                                                          supported      3   NVIDIA GeForce 8600
-NVIDIA GeForce 8600 GS/PCI/SSE2/3DNOW!                                                                   supported      3   NVIDIA GeForce 8600
-NVIDIA GeForce 8600 GT/PCI/SSE2                                                                          supported      3   NVIDIA GeForce 8600
-NVIDIA GeForce 8600 GT/PCI/SSE2/3DNOW!                                                                   supported      3   NVIDIA GeForce 8600
-NVIDIA GeForce 8600 GTS/PCI/SSE2                                                                         supported      3   NVIDIA GeForce 8600
-NVIDIA GeForce 8600 GTS/PCI/SSE2/3DNOW!                                                                  supported      3   NVIDIA GeForce 8600
-NVIDIA GeForce 8600GS/PCI/SSE2                                                                           supported      3   NVIDIA GeForce 8600
-NVIDIA GeForce 8600M                                                                                     supported      1   NVIDIA GeForce 8600M
-NVIDIA GeForce 8600M GS/PCI/SSE2                                                                         supported      1   NVIDIA GeForce 8600M
-NVIDIA GeForce 8600M GS/PCI/SSE2/3DNOW!                                                                  supported      1   NVIDIA GeForce 8600M
-NVIDIA GeForce 8600M GT/PCI/SSE2                                                                         supported      1   NVIDIA GeForce 8600M
-NVIDIA GeForce 8700                                                                                      supported      3   NVIDIA GeForce 8700
-NVIDIA GeForce 8700M                                                                                     supported      3   NVIDIA GeForce 8700M
-NVIDIA GeForce 8700M GT/PCI/SSE2                                                                         supported      3   NVIDIA GeForce 8700M
-NVIDIA GeForce 8800                                                                                      supported      3   NVIDIA GeForce 8800
-NVIDIA GeForce 8800 GS/PCI/SSE2                                                                          supported      3   NVIDIA GeForce 8800
-NVIDIA GeForce 8800 GT/PCI/SSE2                                                                          supported      3   NVIDIA GeForce 8800
-NVIDIA GeForce 8800 GT/PCI/SSE2/3DNOW!                                                                   supported      3   NVIDIA GeForce 8800
-NVIDIA GeForce 8800 GTS 512/PCI/SSE2                                                                     supported      3   NVIDIA GeForce 8800
-NVIDIA GeForce 8800 GTS 512/PCI/SSE2/3DNOW!                                                              supported      3   NVIDIA GeForce 8800
-NVIDIA GeForce 8800 GTS/PCI/SSE2                                                                         supported      3   NVIDIA GeForce 8800
-NVIDIA GeForce 8800 GTS/PCI/SSE2/3DNOW!                                                                  supported      3   NVIDIA GeForce 8800
-NVIDIA GeForce 8800 GTX/PCI/SSE2                                                                         supported      3   NVIDIA GeForce 8800
-NVIDIA GeForce 8800 Ultra/PCI/SSE2                                                                       supported      3   NVIDIA GeForce 8800
-NVIDIA GeForce 8800M GTS/PCI/SSE2                                                                        supported      3   NVIDIA GeForce 8800M
-NVIDIA GeForce 8800M GTX/PCI/SSE2                                                                        supported      3   NVIDIA GeForce 8800M
-NVIDIA GeForce 9100                                                                                      supported      0   NVIDIA G100
-NVIDIA GeForce 9100/PCI/SSE2                                                                             supported      0   NVIDIA G100
-NVIDIA GeForce 9100/PCI/SSE2/3DNOW!                                                                      supported      0   NVIDIA G100
-NVIDIA GeForce 9100M                                                                                     supported      0   NVIDIA G100M
-NVIDIA GeForce 9100M G/PCI/SSE2                                                                          supported      0   NVIDIA G100M
-NVIDIA GeForce 9100M G/PCI/SSE2/3DNOW!                                                                   supported      0   NVIDIA G100M
-NVIDIA GeForce 9200                                                                                      supported      0   NVIDIA G 200
-NVIDIA GeForce 9200/PCI/SSE2                                                                             supported      0   NVIDIA G 200
-NVIDIA GeForce 9200/PCI/SSE2/3DNOW!                                                                      supported      0   NVIDIA G 200
-NVIDIA GeForce 9200M GE/PCI/SSE2                                                                         supported      0   NVIDIA G 200
-NVIDIA GeForce 9200M GS/PCI/SSE2                                                                         supported      0   NVIDIA G 200
-NVIDIA GeForce 9300                                                                                      supported      1   NVIDIA GeForce 9300
-NVIDIA GeForce 9300 / nForce 730i/PCI/SSE2                                                               supported      1   NVIDIA GeForce 9300
-NVIDIA GeForce 9300 GE/PCI/SSE2                                                                          supported      1   NVIDIA GeForce 9300
-NVIDIA GeForce 9300 GE/PCI/SSE2/3DNOW!                                                                   supported      1   NVIDIA GeForce 9300
-NVIDIA GeForce 9300 GS/PCI/SSE2                                                                          supported      1   NVIDIA GeForce 9300
-NVIDIA GeForce 9300 GS/PCI/SSE2/3DNOW!                                                                   supported      1   NVIDIA GeForce 9300
-NVIDIA GeForce 9300 SE/PCI/SSE2                                                                          supported      1   NVIDIA GeForce 9300
-NVIDIA GeForce 9300M                                                                                     supported      1   NVIDIA GeForce 9300M
-NVIDIA GeForce 9300M G/PCI/SSE2                                                                          supported      1   NVIDIA GeForce 9300M
-NVIDIA GeForce 9300M G/PCI/SSE2/3DNOW!                                                                   supported      1   NVIDIA GeForce 9300M
-NVIDIA GeForce 9300M GS/PCI/SSE2                                                                         supported      1   NVIDIA GeForce 9300M
-NVIDIA GeForce 9300M GS/PCI/SSE2/3DNOW!                                                                  supported      1   NVIDIA GeForce 9300M
-NVIDIA GeForce 9400                                                                                      supported      1   NVIDIA GeForce 9400
-NVIDIA GeForce 9400 GT/PCI/SSE2                                                                          supported      1   NVIDIA GeForce 9400
-NVIDIA GeForce 9400 GT/PCI/SSE2/3DNOW!                                                                   supported      1   NVIDIA GeForce 9400
-NVIDIA GeForce 9400/PCI/SSE2                                                                             supported      1   NVIDIA GeForce 9400
-NVIDIA GeForce 9400M                                                                                     supported      1   NVIDIA GeForce 9400M
-NVIDIA GeForce 9400M G/PCI/SSE2                                                                          supported      1   NVIDIA GeForce 9400M
-NVIDIA GeForce 9400M/PCI/SSE2                                                                            supported      1   NVIDIA GeForce 9400M
-NVIDIA GeForce 9500                                                                                      supported      2   NVIDIA GeForce 9500
-NVIDIA GeForce 9500 GS/PCI/SSE2                                                                          supported      2   NVIDIA GeForce 9500
-NVIDIA GeForce 9500 GS/PCI/SSE2/3DNOW!                                                                   supported      2   NVIDIA GeForce 9500
-NVIDIA GeForce 9500 GT/PCI/SSE2                                                                          supported      2   NVIDIA GeForce 9500
-NVIDIA GeForce 9500 GT/PCI/SSE2/3DNOW!                                                                   supported      2   NVIDIA GeForce 9500
-NVIDIA GeForce 9500M                                                                                     supported      2   NVIDIA GeForce 9500M
-NVIDIA GeForce 9500M GS/PCI/SSE2                                                                         supported      2   NVIDIA GeForce 9500M
-NVIDIA GeForce 9600                                                                                      supported      2   NVIDIA GeForce 9600
-NVIDIA GeForce 9600 GS/PCI/SSE2                                                                          supported      2   NVIDIA GeForce 9600
-NVIDIA GeForce 9600 GSO 512/PCI/SSE2                                                                     supported      2   NVIDIA GeForce 9600
-NVIDIA GeForce 9600 GSO/PCI/SSE2                                                                         supported      2   NVIDIA GeForce 9600
-NVIDIA GeForce 9600 GSO/PCI/SSE2/3DNOW!                                                                  supported      2   NVIDIA GeForce 9600
-NVIDIA GeForce 9600 GT/PCI/SSE2                                                                          supported      2   NVIDIA GeForce 9600
-NVIDIA GeForce 9600 GT/PCI/SSE2/3DNOW!                                                                   supported      2   NVIDIA GeForce 9600
-NVIDIA GeForce 9600M                                                                                     supported      3   NVIDIA GeForce 9600M
-NVIDIA GeForce 9600M GS/PCI/SSE2                                                                         supported      3   NVIDIA GeForce 9600M
-NVIDIA GeForce 9600M GT/PCI/SSE2                                                                         supported      3   NVIDIA GeForce 9600M
-NVIDIA GeForce 9650M GT/PCI/SSE2                                                                         supported      2   NVIDIA GeForce 9600
-NVIDIA GeForce 9700M                                                                                     supported      2   NVIDIA GeForce 9700M
-NVIDIA GeForce 9700M GT/PCI/SSE2                                                                         supported      2   NVIDIA GeForce 9700M
-NVIDIA GeForce 9700M GTS/PCI/SSE2                                                                        supported      2   NVIDIA GeForce 9700M
-NVIDIA GeForce 9800                                                                                      supported      3   NVIDIA GeForce 9800
-NVIDIA GeForce 9800 GT/PCI/SSE2                                                                          supported      3   NVIDIA GeForce 9800
-NVIDIA GeForce 9800 GT/PCI/SSE2/3DNOW!                                                                   supported      3   NVIDIA GeForce 9800
-NVIDIA GeForce 9800 GTX+/PCI/SSE2                                                                        supported      3   NVIDIA GeForce 9800
-NVIDIA GeForce 9800 GTX+/PCI/SSE2/3DNOW!                                                                 supported      3   NVIDIA GeForce 9800
-NVIDIA GeForce 9800 GTX/9800 GTX+/PCI/SSE2                                                               supported      3   NVIDIA GeForce 9800
-NVIDIA GeForce 9800 GTX/PCI/SSE2                                                                         supported      3   NVIDIA GeForce 9800
-NVIDIA GeForce 9800 GX2/PCI/SSE2                                                                         supported      3   NVIDIA GeForce 9800
-NVIDIA GeForce 9800M                                                                                     supported      3   NVIDIA GeForce 9800M
-NVIDIA GeForce 9800M GS/PCI/SSE2                                                                         supported      3   NVIDIA GeForce 9800M
-NVIDIA GeForce 9800M GT/PCI/SSE2                                                                         supported      3   NVIDIA GeForce 9800M
-NVIDIA GeForce 9800M GTS/PCI/SSE2                                                                        supported      3   NVIDIA GeForce 9800M
-NVIDIA GeForce FX 5100                                                                                   supported      0   NVIDIA G100
-NVIDIA GeForce FX 5100/AGP/SSE/3DNOW!                                                                    supported      0   NVIDIA G100
-NVIDIA GeForce FX 5200                                                                                   supported      0   NVIDIA G 200
-NVIDIA GeForce FX 5200/AGP/SSE                                                                           supported      0   NVIDIA G 200
-NVIDIA GeForce FX 5200/AGP/SSE/3DNOW!                                                                    supported      0   NVIDIA G 200
-NVIDIA GeForce FX 5200/AGP/SSE2                                                                          supported      0   NVIDIA G 200
-NVIDIA GeForce FX 5200/AGP/SSE2/3DNOW!                                                                   supported      0   NVIDIA G 200
-NVIDIA GeForce FX 5200/PCI/SSE2                                                                          supported      0   NVIDIA G 200
-NVIDIA GeForce FX 5200/PCI/SSE2/3DNOW!                                                                   supported      0   NVIDIA G 200
-NVIDIA GeForce FX 5200LE/AGP/SSE2                                                                        supported      0   NVIDIA G 200
-NVIDIA GeForce FX 5500                                                                                   supported      0   NVIDIA GeForce FX 5500
-NVIDIA GeForce FX 5500/AGP/SSE/3DNOW!                                                                    supported      0   NVIDIA GeForce FX 5500
-NVIDIA GeForce FX 5500/AGP/SSE2                                                                          supported      0   NVIDIA GeForce FX 5500
-NVIDIA GeForce FX 5500/AGP/SSE2/3DNOW!                                                                   supported      0   NVIDIA GeForce FX 5500
-NVIDIA GeForce FX 5500/PCI/SSE2                                                                          supported      0   NVIDIA GeForce FX 5500
-NVIDIA GeForce FX 5500/PCI/SSE2/3DNOW!                                                                   supported      0   NVIDIA GeForce FX 5500
-NVIDIA GeForce FX 5600                                                                                   supported      0   NVIDIA GeForce FX 5600
-NVIDIA GeForce FX 5600/AGP/SSE2                                                                          supported      0   NVIDIA GeForce FX 5600
-NVIDIA GeForce FX 5600/AGP/SSE2/3DNOW!                                                                   supported      0   NVIDIA GeForce FX 5600
-NVIDIA GeForce FX 5600XT/AGP/SSE2/3DNOW!                                                                 supported      0   NVIDIA GeForce FX 5600
-NVIDIA GeForce FX 5700                                                                                   supported      1   NVIDIA GeForce FX 5700
-NVIDIA GeForce FX 5700/AGP/SSE/3DNOW!                                                                    supported      1   NVIDIA GeForce FX 5700
-NVIDIA GeForce FX 5700LE/AGP/SSE                                                                         supported      1   NVIDIA GeForce FX 5700
-NVIDIA GeForce FX 5700LE/AGP/SSE/3DNOW!                                                                  supported      1   NVIDIA GeForce FX 5700
-NVIDIA GeForce FX 5800                                                                                   supported      1   NVIDIA GeForce FX 5800
-NVIDIA GeForce FX 5900                                                                                   supported      1   NVIDIA GeForce FX 5900
-NVIDIA GeForce FX 5900/AGP/SSE2                                                                          supported      1   NVIDIA GeForce FX 5900
-NVIDIA GeForce FX 5900XT/AGP/SSE2                                                                        supported      1   NVIDIA GeForce FX 5900
-NVIDIA GeForce FX Go5100                                                                                 supported      0   NVIDIA G100
-NVIDIA GeForce FX Go5100/AGP/SSE2                                                                        supported      0   NVIDIA G100
-NVIDIA GeForce FX Go5200                                                                                 supported      0   NVIDIA G 200
-NVIDIA GeForce FX Go5200/AGP/SSE2                                                                        supported      0   NVIDIA G 200
-NVIDIA GeForce FX Go5300                                                                                 supported      0   NVIDIA GeForce FX Go5300
-NVIDIA GeForce FX Go5600                                                                                 supported      0   NVIDIA GeForce FX Go5600
-NVIDIA GeForce FX Go5600/AGP/SSE2                                                                        supported      0   NVIDIA GeForce FX Go5600
-NVIDIA GeForce FX Go5650/AGP/SSE2                                                                        supported      0   NVIDIA GeForce FX Go5600
-NVIDIA GeForce FX Go5700                                                                                 supported      1   NVIDIA GeForce FX Go5700
-NVIDIA GeForce FX Go5700/AGP/SSE2                                                                        supported      1   NVIDIA GeForce FX Go5700
-NVIDIA GeForce FX Go5xxx/AGP/SSE2                                                                        supported      0   NVIDIA GeForce FX Go5xxx
-NVIDIA GeForce G 103M/PCI/SSE2                                                                           supported      0   NVIDIA G103M
-NVIDIA GeForce G 103M/PCI/SSE2/3DNOW!                                                                    supported      0   NVIDIA G103M
-NVIDIA GeForce G 105M/PCI/SSE2                                                                           supported      0   NVIDIA G105M
-NVIDIA GeForce G 110M/PCI/SSE2                                                                           supported      0   NVIDIA G 110M
-NVIDIA GeForce G100/PCI/SSE2                                                                             supported      0   NVIDIA G100
-NVIDIA GeForce G100/PCI/SSE2/3DNOW!                                                                      supported      0   NVIDIA G100
-NVIDIA GeForce G102M/PCI/SSE2                                                                            supported      0   NVIDIA G102M
-NVIDIA GeForce G105M/PCI/SSE2                                                                            supported      0   NVIDIA G105M
-NVIDIA GeForce G200/PCI/SSE2                                                                             supported      0   NVIDIA G 200
-NVIDIA GeForce G205M/PCI/SSE2                                                                            supported      0   NVIDIA G 205M
-NVIDIA GeForce G210/PCI/SSE2                                                                             supported      1   NVIDIA G 210
-NVIDIA GeForce G210/PCI/SSE2/3DNOW!                                                                      supported      1   NVIDIA G 210
-NVIDIA GeForce G210M/PCI/SSE2                                                                            supported      1   NVIDIA G 210
-NVIDIA GeForce G310M/PCI/SSE2                                                                            supported      2   NVIDIA G 310M
-NVIDIA GeForce GT 120/PCI/SSE2                                                                           supported      2   NVIDIA GT 120M
-NVIDIA GeForce GT 120/PCI/SSE2/3DNOW!                                                                    supported      2   NVIDIA GT 120M
-NVIDIA GeForce GT 120M/PCI/SSE2                                                                          supported      1   NVIDIA G 120M
-NVIDIA GeForce GT 130M/PCI/SSE2                                                                          supported      2   NVIDIA GT 130M
-NVIDIA GeForce GT 140/PCI/SSE2                                                                           supported      2   NVIDIA GT 140M
-NVIDIA GeForce GT 220/PCI/SSE2                                                                           supported      2   NVIDIA GT 220M
-NVIDIA GeForce GT 220/PCI/SSE2/3DNOW!                                                                    supported      2   NVIDIA GT 220M
-NVIDIA GeForce GT 220M/PCI/SSE2                                                                          supported      2   NVIDIA GT 220M
-NVIDIA GeForce GT 230/PCI/SSE2                                                                           supported      2   NVIDIA GT 230M
-NVIDIA GeForce GT 230M/PCI/SSE2                                                                          supported      2   NVIDIA GT 230M
-NVIDIA GeForce GT 240                                                                                    supported      2   NVIDIA GT 240M
-NVIDIA GeForce GT 240/PCI/SSE2                                                                           supported      2   NVIDIA GT 240M
-NVIDIA GeForce GT 240/PCI/SSE2/3DNOW!                                                                    supported      2   NVIDIA GT 240M
-NVIDIA GeForce GT 240M/PCI/SSE2                                                                          supported      2   NVIDIA GT 240M
-NVIDIA GeForce GT 320/PCI/SSE2                                                                           supported      2   NVIDIA G 320M
-NVIDIA GeForce GT 320M/PCI/SSE2                                                                          supported      2   NVIDIA G 320M
-NVIDIA GeForce GT 325M/PCI/SSE2                                                                          supported      0   NVIDIA GT 325M
-NVIDIA GeForce GT 330/PCI/SSE2                                                                           supported      3   NVIDIA GT 330M
-NVIDIA GeForce GT 330/PCI/SSE2/3DNOW!                                                                    supported      3   NVIDIA GT 330M
-NVIDIA GeForce GT 330M/PCI/SSE2                                                                          supported      3   NVIDIA GT 330M
-NVIDIA GeForce GT 335M/PCI/SSE2                                                                          supported      1   NVIDIA GT 335M
-NVIDIA GeForce GT 340/PCI/SSE2                                                                           supported      2   NVIDIA GT 340M
-NVIDIA GeForce GT 340/PCI/SSE2/3DNOW!                                                                    supported      2   NVIDIA GT 340M
-NVIDIA GeForce GT 415M/PCI/SSE2                                                                          supported      2   NVIDIA GT 415M
-NVIDIA GeForce GT 420/PCI/SSE2                                                                           supported      2   NVIDIA GT 420M
-NVIDIA GeForce GT 420M/PCI/SSE2                                                                          supported      2   NVIDIA GT 420M
-NVIDIA GeForce GT 425M/PCI/SSE2                                                                          supported      3   NVIDIA GT 425M
-NVIDIA GeForce GT 430/PCI/SSE2                                                                           supported      3   NVIDIA GT 430M
-NVIDIA GeForce GT 430/PCI/SSE2/3DNOW!                                                                    supported      3   NVIDIA GT 430M
-NVIDIA GeForce GT 435M/PCI/SSE2                                                                          supported      3   NVIDIA GT 435M
-NVIDIA GeForce GT 440/PCI/SSE2                                                                           supported      3   NVIDIA GT 440M
-NVIDIA GeForce GT 440/PCI/SSE2/3DNOW!                                                                    supported      3   NVIDIA GT 440M
-NVIDIA GeForce GT 445M/PCI/SSE2                                                                          supported      3   NVIDIA GT 445M
-NVIDIA GeForce GT 520/PCI/SSE2                                                                           supported      3   NVIDIA GT 520M
-NVIDIA GeForce GT 520/PCI/SSE2/3DNOW!                                                                    supported      3   NVIDIA GT 520M
-NVIDIA GeForce GT 520M/PCI/SSE2                                                                          supported      3   NVIDIA GT 520M
-NVIDIA GeForce GT 525M/PCI/SSE2                                                                          supported      3   NVIDIA GT 520M
-NVIDIA GeForce GT 530/PCI/SSE2                                                                           supported      3   NVIDIA GT 530M
-NVIDIA GeForce GT 530/PCI/SSE2/3DNOW!                                                                    supported      3   NVIDIA GT 530M
-NVIDIA GeForce GT 540M/PCI/SSE2                                                                          supported      3   NVIDIA GT 540M
-NVIDIA GeForce GT 545/PCI/SSE2                                                                           supported      3   NVIDIA GT 540M
-NVIDIA GeForce GT 550M/PCI/SSE2                                                                          supported      3   NVIDIA GT 550M
-NVIDIA GeForce GT 555M/PCI/SSE2                                                                          supported      3   NVIDIA GT 555M
-NVIDIA GeForce GTS 150/PCI/SSE2                                                                          supported      2   NVIDIA GT 150M
-NVIDIA GeForce GTS 160M/PCI/SSE2                                                                         supported      2   NVIDIA GTS 160M
-NVIDIA GeForce GTS 240/PCI/SSE2                                                                          supported      3   NVIDIA GTS 240
-NVIDIA GeForce GTS 250/PCI/SSE2                                                                          supported      3   NVIDIA GTS 250
-NVIDIA GeForce GTS 250/PCI/SSE2/3DNOW!                                                                   supported      3   NVIDIA GTS 250
-NVIDIA GeForce GTS 250M/PCI/SSE2                                                                         supported      3   NVIDIA GTS 250
-NVIDIA GeForce GTS 350M/PCI/SSE2                                                                         supported      3   NVIDIA GTS 350M
-NVIDIA GeForce GTS 360M/PCI/SSE2                                                                         supported      3   NVIDIA GTS 360M
-NVIDIA GeForce GTS 450/PCI/SSE2                                                                          supported      3   NVIDIA GTS 450
-NVIDIA GeForce GTS 450/PCI/SSE2/3DNOW!                                                                   supported      3   NVIDIA GTS 450
-NVIDIA GeForce GTS 455/PCI/SSE2                                                                          supported      3   NVIDIA GTS 450
-NVIDIA GeForce GTX 260/PCI/SSE2                                                                          supported      3   NVIDIA GTX 260
-NVIDIA GeForce GTX 260/PCI/SSE2/3DNOW!                                                                   supported      3   NVIDIA GTX 260
-NVIDIA GeForce GTX 260M/PCI/SSE2                                                                         supported      3   NVIDIA GTX 260
-NVIDIA GeForce GTX 275/PCI/SSE2                                                                          supported      3   NVIDIA GTX 275
-NVIDIA GeForce GTX 275/PCI/SSE2/3DNOW!                                                                   supported      3   NVIDIA GTX 275
-NVIDIA GeForce GTX 280                                                                                   supported      3   NVIDIA GTX 280
-NVIDIA GeForce GTX 280/PCI/SSE2                                                                          supported      3   NVIDIA GTX 280
-NVIDIA GeForce GTX 280M/PCI/SSE2                                                                         supported      3   NVIDIA GTX 280
-NVIDIA GeForce GTX 285                                                                                   supported      3   NVIDIA GTX 285
-NVIDIA GeForce GTX 285/PCI/SSE2                                                                          supported      3   NVIDIA GTX 285
-NVIDIA GeForce GTX 295/PCI/SSE2                                                                          supported      3   NVIDIA GTX 295
-NVIDIA GeForce GTX 460 SE/PCI/SSE2                                                                       supported      3   NVIDIA GTX 460
-NVIDIA GeForce GTX 460 SE/PCI/SSE2/3DNOW!                                                                supported      3   NVIDIA GTX 460
-NVIDIA GeForce GTX 460/PCI/SSE2                                                                          supported      3   NVIDIA GTX 460
-NVIDIA GeForce GTX 460/PCI/SSE2/3DNOW!                                                                   supported      3   NVIDIA GTX 460
-NVIDIA GeForce GTX 460M/PCI/SSE2                                                                         supported      3   NVIDIA GTX 460M
-NVIDIA GeForce GTX 465/PCI/SSE2                                                                          supported      3   NVIDIA GTX 465
-NVIDIA GeForce GTX 465/PCI/SSE2/3DNOW!                                                                   supported      3   NVIDIA GTX 465
-NVIDIA GeForce GTX 470/PCI/SSE2                                                                          supported      3   NVIDIA GTX 470
-NVIDIA GeForce GTX 470/PCI/SSE2/3DNOW!                                                                   supported      3   NVIDIA GTX 470
-NVIDIA GeForce GTX 480/PCI/SSE2                                                                          supported      3   NVIDIA GTX 480
-NVIDIA GeForce GTX 550 Ti/PCI/SSE2                                                                       supported      3   NVIDIA GTX 550
-NVIDIA GeForce GTX 550 Ti/PCI/SSE2/3DNOW!                                                                supported      3   NVIDIA GTX 550
-NVIDIA GeForce GTX 560 Ti/PCI/SSE2                                                                       supported      3   NVIDIA GTX 560
-NVIDIA GeForce GTX 560 Ti/PCI/SSE2/3DNOW!                                                                supported      3   NVIDIA GTX 560
-NVIDIA GeForce GTX 560/PCI/SSE2                                                                          supported      3   NVIDIA GTX 560
-NVIDIA GeForce GTX 560/PCI/SSE2/3DNOW!                                                                   supported      3   NVIDIA GTX 560
-NVIDIA GeForce GTX 560M/PCI/SSE2                                                                         supported      3   NVIDIA GTX 560
-NVIDIA GeForce GTX 570/PCI/SSE2                                                                          supported      3   NVIDIA GTX 570
-NVIDIA GeForce GTX 570/PCI/SSE2/3DNOW!                                                                   supported      3   NVIDIA GTX 570
-NVIDIA GeForce GTX 580/PCI/SSE2                                                                          supported      3   NVIDIA GTX 580
-NVIDIA GeForce GTX 580/PCI/SSE2/3DNOW!                                                                   supported      3   NVIDIA GTX 580
-NVIDIA GeForce GTX 580M/PCI/SSE2                                                                         supported      3   NVIDIA GTX 580M
-NVIDIA GeForce GTX 590/PCI/SSE2                                                                          supported      3   NVIDIA GTX 590
-NVIDIA GeForce Go 6                                                                                      supported      1   NVIDIA GeForce Go 6
-NVIDIA GeForce Go 6100                                                                                   supported      0   NVIDIA G100
-NVIDIA GeForce Go 6100/PCI/SSE2                                                                          supported      0   NVIDIA G100
-NVIDIA GeForce Go 6100/PCI/SSE2/3DNOW!                                                                   supported      0   NVIDIA G100
-NVIDIA GeForce Go 6150/PCI/SSE2                                                                          supported      0   NVIDIA GeForce Go 6100
-NVIDIA GeForce Go 6150/PCI/SSE2/3DNOW!                                                                   supported      0   NVIDIA GeForce Go 6100
-NVIDIA GeForce Go 6200                                                                                   supported      0   NVIDIA G 200
-NVIDIA GeForce Go 6200/PCI/SSE2                                                                          supported      0   NVIDIA G 200
-NVIDIA GeForce Go 6400                                                                                   supported      1   NVIDIA GeForce Go 6400
-NVIDIA GeForce Go 6400/PCI/SSE2                                                                          supported      1   NVIDIA GeForce Go 6400
-NVIDIA GeForce Go 6600                                                                                   supported      1   NVIDIA GeForce Go 6600
-NVIDIA GeForce Go 6600/PCI/SSE2                                                                          supported      1   NVIDIA GeForce Go 6600
-NVIDIA GeForce Go 6800                                                                                   supported      1   NVIDIA GeForce Go 6800
-NVIDIA GeForce Go 6800 Ultra/PCI/SSE2                                                                    supported      1   NVIDIA GeForce Go 6800
-NVIDIA GeForce Go 6800/PCI/SSE2                                                                          supported      1   NVIDIA GeForce Go 6800
-NVIDIA GeForce Go 7200                                                                                   supported      0   NVIDIA G 200
-NVIDIA GeForce Go 7200/PCI/SSE2                                                                          supported      0   NVIDIA G 200
-NVIDIA GeForce Go 7200/PCI/SSE2/3DNOW!                                                                   supported      0   NVIDIA G 200
-NVIDIA GeForce Go 7300                                                                                   supported      1   NVIDIA GeForce Go 7300
-NVIDIA GeForce Go 7300/PCI/SSE2                                                                          supported      1   NVIDIA GeForce Go 7300
-NVIDIA GeForce Go 7300/PCI/SSE2/3DNOW!                                                                   supported      1   NVIDIA GeForce Go 7300
-NVIDIA GeForce Go 7400                                                                                   supported      1   NVIDIA GeForce Go 7400
-NVIDIA GeForce Go 7400/PCI/SSE2                                                                          supported      1   NVIDIA GeForce Go 7400
-NVIDIA GeForce Go 7400/PCI/SSE2/3DNOW!                                                                   supported      1   NVIDIA GeForce Go 7400
-NVIDIA GeForce Go 7600                                                                                   supported      2   NVIDIA GeForce Go 7600
-NVIDIA GeForce Go 7600/PCI/SSE2                                                                          supported      2   NVIDIA GeForce Go 7600
-NVIDIA GeForce Go 7600/PCI/SSE2/3DNOW!                                                                   supported      2   NVIDIA GeForce Go 7600
-NVIDIA GeForce Go 7700                                                                                   supported      2   NVIDIA GeForce Go 7700
-NVIDIA GeForce Go 7700/PCI/SSE2                                                                          supported      2   NVIDIA GeForce Go 7700
-NVIDIA GeForce Go 7800                                                                                   supported      2   NVIDIA GeForce Go 7800
-NVIDIA GeForce Go 7800 GTX/PCI/SSE2                                                                      supported      2   NVIDIA GeForce Go 7800
-NVIDIA GeForce Go 7900                                                                                   supported      2   NVIDIA GeForce Go 7900
-NVIDIA GeForce Go 7900 GS/PCI/SSE2                                                                       supported      2   NVIDIA GeForce Go 7900
-NVIDIA GeForce Go 7900 GTX/PCI/SSE2                                                                      supported      2   NVIDIA GeForce Go 7900
-NVIDIA GeForce Go 7950 GTX/PCI/SSE2                                                                      supported      2   NVIDIA GeForce Go 7900
-NVIDIA GeForce PCX                                                                                       supported      0   NVIDIA GeForce PCX
-NVIDIA GeForce2 GTS/AGP/SSE                                                                              supported      0   NVIDIA GeForce 2
-NVIDIA GeForce2 MX/AGP/3DNOW!                                                                            supported      0   NVIDIA GeForce 2
-NVIDIA GeForce2 MX/AGP/SSE/3DNOW!                                                                        supported      0   NVIDIA GeForce 2
-NVIDIA GeForce2 MX/AGP/SSE2                                                                              supported      0   NVIDIA GeForce 2
-NVIDIA GeForce2 MX/PCI/SSE2                                                                              supported      0   NVIDIA GeForce 2
-NVIDIA GeForce3/AGP/SSE/3DNOW!                                                                           supported      0   NVIDIA GeForce 3
-NVIDIA GeForce3/AGP/SSE2                                                                                 supported      0   NVIDIA GeForce 3
-NVIDIA GeForce4 420 Go 32M/AGP/SSE2                                                                      supported      0   NVIDIA GeForce 4
-NVIDIA GeForce4 420 Go 32M/AGP/SSE2/3DNOW!                                                               supported      0   NVIDIA GeForce 4
-NVIDIA GeForce4 420 Go 32M/PCI/SSE2/3DNOW!                                                               supported      0   NVIDIA GeForce 4
-NVIDIA GeForce4 420 Go/AGP/SSE2                                                                          supported      0   NVIDIA GeForce 4
-NVIDIA GeForce4 440 Go 64M/AGP/SSE2/3DNOW!                                                               supported      0   NVIDIA GeForce 4
-NVIDIA GeForce4 440 Go/AGP/SSE2                                                                          supported      0   NVIDIA GeForce 4
-NVIDIA GeForce4 460 Go/AGP/SSE2                                                                          supported      0   NVIDIA GeForce 4
-NVIDIA GeForce4 MX 4000/AGP/SSE/3DNOW!                                                                   supported      0   NVIDIA GeForce 4
-NVIDIA GeForce4 MX 4000/AGP/SSE2                                                                         supported      0   NVIDIA GeForce 4
-NVIDIA GeForce4 MX 4000/PCI/3DNOW!                                                                       supported      0   NVIDIA GeForce 4
-NVIDIA GeForce4 MX 4000/PCI/SSE/3DNOW!                                                                   supported      0   NVIDIA GeForce 4
-NVIDIA GeForce4 MX 4000/PCI/SSE2                                                                         supported      0   NVIDIA GeForce 4
-NVIDIA GeForce4 MX 420/AGP/SSE/3DNOW!                                                                    supported      0   NVIDIA GeForce 4
-NVIDIA GeForce4 MX 420/AGP/SSE2                                                                          supported      0   NVIDIA GeForce 4
-NVIDIA GeForce4 MX 440 with AGP8X/AGP/SSE2                                                               supported      0   NVIDIA GeForce 4
-NVIDIA GeForce4 MX 440/AGP/SSE2                                                                          supported      0   NVIDIA GeForce 4
-NVIDIA GeForce4 MX 440/AGP/SSE2/3DNOW!                                                                   supported      0   NVIDIA GeForce 4
-NVIDIA GeForce4 MX 440SE with AGP8X/AGP/SSE2                                                             supported      0   NVIDIA GeForce 4
-NVIDIA GeForce4 MX Integrated GPU/AGP/SSE/3DNOW!                                                         supported      0   NVIDIA GeForce 4
-NVIDIA GeForce4 Ti 4200 with AGP8X/AGP/SSE                                                               supported      0   NVIDIA G 200
-NVIDIA GeForce4 Ti 4200/AGP/SSE/3DNOW!                                                                   supported      0   NVIDIA G 200
-NVIDIA GeForce4 Ti 4400/AGP/SSE2                                                                         supported      0   NVIDIA GeForce 4
-NVIDIA Generic                                                                                                              NO MATCH
-NVIDIA ION LE/PCI/SSE2                                                                                   supported      2   NVIDIA ION
-NVIDIA ION/PCI/SSE2                                                                                      supported      2   NVIDIA ION
-NVIDIA ION/PCI/SSE2/3DNOW!                                                                               supported      2   NVIDIA ION
-NVIDIA MCP61/PCI/SSE2                                                                                    supported      1   NVIDIA MCP61
-NVIDIA MCP61/PCI/SSE2/3DNOW!                                                                             supported      1   NVIDIA MCP61
-NVIDIA MCP73/PCI/SSE2                                                                                    supported      1   NVIDIA MCP73
-NVIDIA MCP79MH/PCI/SSE2                                                                                  supported      1   NVIDIA MCP79
-NVIDIA MCP79MX/PCI/SSE2                                                                                  supported      1   NVIDIA MCP79
-NVIDIA MCP7A-O/PCI/SSE2                                                                                  supported      1   NVIDIA MCP7A
-NVIDIA MCP7A-S/PCI/SSE2                                                                                  supported      1   NVIDIA MCP7A
-NVIDIA MCP89-EPT/PCI/SSE2                                                                                                   NO MATCH
-NVIDIA N10M-GE1/PCI/SSE2                                                                                 supported      1   NVIDIA N10
-NVIDIA N10P-GE1/PCI/SSE2                                                                                 supported      1   NVIDIA N10
-NVIDIA N10P-GV2/PCI/SSE2                                                                                 supported      1   NVIDIA N10
-NVIDIA N11M-GE1/PCI/SSE2                                                                                                    NO MATCH
-NVIDIA N11M-GE2/PCI/SSE2                                                                                                    NO MATCH
-NVIDIA N12E-GS-A1/PCI/SSE2                                                                                                  NO MATCH
-NVIDIA N12P-GVR-B-A1/PCI/SSE2                                                                                               NO MATCH
-NVIDIA N13M-GE1-B-A1/PCI/SSE2                                                                                               NO MATCH
-NVIDIA N13P-GL-A1/PCI/SSE2                                                                                                  NO MATCH
-NVIDIA NB9M-GE/PCI/SSE2                                                                                  supported      1   NVIDIA NB9M
-NVIDIA NB9M-GE1/PCI/SSE2                                                                                 supported      1   NVIDIA NB9M
-NVIDIA NB9M-GS/PCI/SSE2                                                                                  supported      1   NVIDIA NB9M
-NVIDIA NB9M-NS/PCI/SSE2                                                                                  supported      1   NVIDIA NB9M
-NVIDIA NB9P-GE1/PCI/SSE2                                                                                 supported      2   NVIDIA NB9P
-NVIDIA NB9P-GS/PCI/SSE2                                                                                  supported      2   NVIDIA NB9P
-NVIDIA NV17/AGP/3DNOW!                                                                                   supported      0   NVIDIA NV17
-NVIDIA NV17/AGP/SSE2                                                                                     supported      0   NVIDIA NV17
-NVIDIA NV34                                                                                              supported      0   NVIDIA NV34
-NVIDIA NV35                                                                                              supported      0   NVIDIA NV35
-NVIDIA NV36/AGP/SSE/3DNOW!                                                                               supported      1   NVIDIA NV36
-NVIDIA NV36/AGP/SSE2                                                                                     supported      1   NVIDIA NV36
-NVIDIA NV41/PCI/SSE2                                                                                     supported      1   NVIDIA NV41
-NVIDIA NV43                                                                                              supported      1   NVIDIA NV43
-NVIDIA NV43/PCI/SSE2                                                                                     supported      1   NVIDIA NV43
-NVIDIA NV44                                                                                              supported      1   NVIDIA NV44
-NVIDIA NV44/AGP/SSE2                                                                                     supported      1   NVIDIA NV44
-NVIDIA NVIDIA GeForce 210 OpenGL Engine                                                                  supported      2   NVIDIA 210
-NVIDIA NVIDIA GeForce 320M OpenGL Engine                                                                 supported      2   NVIDIA 320M
-NVIDIA NVIDIA GeForce 7300 GT OpenGL Engine                                                              supported      1   NVIDIA GeForce 7300
-NVIDIA NVIDIA GeForce 7600 GT OpenGL Engine                                                              supported      2   NVIDIA GeForce 7600
-NVIDIA NVIDIA GeForce 8600M GT OpenGL Engine                                                             supported      1   NVIDIA GeForce 8600M
-NVIDIA NVIDIA GeForce 8800 GS OpenGL Engine                                                              supported      3   NVIDIA GeForce 8800
-NVIDIA NVIDIA GeForce 8800 GT OpenGL Engine                                                              supported      3   NVIDIA GeForce 8800
-NVIDIA NVIDIA GeForce 9400 OpenGL Engine                                                                 supported      1   NVIDIA GeForce 9400
-NVIDIA NVIDIA GeForce 9400M OpenGL Engine                                                                supported      1   NVIDIA GeForce 9400M
-NVIDIA NVIDIA GeForce 9500 GT OpenGL Engine                                                              supported      2   NVIDIA GeForce 9500
-NVIDIA NVIDIA GeForce 9600M GT OpenGL Engine                                                             supported      3   NVIDIA GeForce 9600M
-NVIDIA NVIDIA GeForce GT 120 OpenGL Engine                                                               supported      2   NVIDIA GT 120M
-NVIDIA NVIDIA GeForce GT 130 OpenGL Engine                                                               supported      2   NVIDIA GT 130M
-NVIDIA NVIDIA GeForce GT 220 OpenGL Engine                                                               supported      2   NVIDIA GT 220M
-NVIDIA NVIDIA GeForce GT 230M OpenGL Engine                                                              supported      2   NVIDIA GT 230M
-NVIDIA NVIDIA GeForce GT 240M OpenGL Engine                                                              supported      2   NVIDIA GT 240M
-NVIDIA NVIDIA GeForce GT 330M OpenGL Engine                                                              supported      3   NVIDIA GT 330M
-NVIDIA NVIDIA GeForce GT 420M OpenGL Engine                                                              supported      2   NVIDIA GT 420M
-NVIDIA NVIDIA GeForce GT 425M OpenGL Engine                                                              supported      3   NVIDIA GT 425M
-NVIDIA NVIDIA GeForce GT 430 OpenGL Engine                                                               supported      3   NVIDIA GT 430M
-NVIDIA NVIDIA GeForce GT 440 OpenGL Engine                                                               supported      3   NVIDIA GT 440M
-NVIDIA NVIDIA GeForce GT 540M OpenGL Engine                                                              supported      3   NVIDIA GT 540M
-NVIDIA NVIDIA GeForce GTS 240 OpenGL Engine                                                              supported      3   NVIDIA GTS 240
-NVIDIA NVIDIA GeForce GTS 250 OpenGL Engine                                                              supported      3   NVIDIA GTS 250
-NVIDIA NVIDIA GeForce GTS 450 OpenGL Engine                                                              supported      3   NVIDIA GTS 450
-NVIDIA NVIDIA GeForce GTX 285 OpenGL Engine                                                              supported      3   NVIDIA GTX 285
-NVIDIA NVIDIA GeForce GTX 460 OpenGL Engine                                                              supported      3   NVIDIA GTX 460
-NVIDIA NVIDIA GeForce GTX 460M OpenGL Engine                                                             supported      3   NVIDIA GTX 460M
-NVIDIA NVIDIA GeForce GTX 465 OpenGL Engine                                                              supported      3   NVIDIA GTX 465
-NVIDIA NVIDIA GeForce GTX 470 OpenGL Engine                                                              supported      3   NVIDIA GTX 470
-NVIDIA NVIDIA GeForce GTX 480 OpenGL Engine                                                              supported      3   NVIDIA GTX 480
-NVIDIA NVIDIA GeForce Pre-Release GF108 ES OpenGL Engine                                                                    NO MATCH
-NVIDIA NVIDIA GeForce Pre-Release ION OpenGL Engine                                                      supported      2   NVIDIA ION
-NVIDIA NVIDIA GeForce Pre-Release MCP7A-J-DC OpenGL Engine                                               supported      1   NVIDIA MCP7A
-NVIDIA NVIDIA GeForce4 OpenGL Engine                                                                     supported      0   NVIDIA GeForce 4
-NVIDIA NVIDIA NV34MAP OpenGL Engine                                                                      supported      0   NVIDIA NV34
-NVIDIA NVIDIA Quadro 4000 OpenGL Engine                                                                  supported      3   NVIDIA Quadro 4000
-NVIDIA NVIDIA Quadro FX 4800 OpenGL Engine                                                               supported      3   NVIDIA Quadro FX 4800
-NVIDIA NVS 2100M/PCI/SSE2                                                                                supported      0   NVIDIA G100M
-NVIDIA NVS 300/PCI/SSE2                                                                                  supported      0   NVIDIA Quadro NVS
-NVIDIA NVS 3100M/PCI/SSE2                                                                                supported      0   NVIDIA G100M
-NVIDIA NVS 4100/PCI/SSE2/3DNOW!                                                                          supported      0   NVIDIA G100
-NVIDIA NVS 4200M/PCI/SSE2                                                                                supported      0   NVIDIA G 200
-NVIDIA NVS 5100M/PCI/SSE2                                                                                supported      0   NVIDIA G100M
-NVIDIA PCI                                                                                                                  NO MATCH
-NVIDIA Quadro 1000M/PCI/SSE2                                                                             supported      0   NVIDIA G100
-NVIDIA Quadro 2000/PCI/SSE2                                                                              supported      0   NVIDIA G 200
-NVIDIA Quadro 2000M/PCI/SSE2                                                                             supported      0   NVIDIA G 200
-NVIDIA Quadro 3000M/PCI/SSE2                                                                             supported      3   NVIDIA Quadro 3000M
-NVIDIA Quadro 4000                                                                                       supported      3   NVIDIA Quadro 4000
-NVIDIA Quadro 4000 OpenGL Engine                                                                         supported      3   NVIDIA Quadro 4000
-NVIDIA Quadro 4000/PCI/SSE2                                                                              supported      3   NVIDIA Quadro 4000
-NVIDIA Quadro 4000M/PCI/SSE2                                                                             supported      3   NVIDIA Quadro 4000M
-NVIDIA Quadro 5000/PCI/SSE2                                                                              supported      3   NVIDIA Quadro 50x0 M
-NVIDIA Quadro 5000M/PCI/SSE2                                                                             supported      3   NVIDIA Quadro 50x0 M
-NVIDIA Quadro 600                                                                                        supported      2   NVIDIA Quadro 600
-NVIDIA Quadro 600/PCI/SSE2                                                                               supported      2   NVIDIA Quadro 600
-NVIDIA Quadro 600/PCI/SSE2/3DNOW!                                                                        supported      2   NVIDIA Quadro 600
-NVIDIA Quadro 6000                                                                                       supported      3   NVIDIA Quadro 6000
-NVIDIA Quadro 6000/PCI/SSE2                                                                              supported      3   NVIDIA Quadro 6000
-NVIDIA Quadro CX/PCI/SSE2                                                                                supported      3   NVIDIA Quadro CX
-NVIDIA Quadro DCC                                                                                        supported      0   NVIDIA Quadro DCC
-NVIDIA Quadro FX                                                                                         supported      1   NVIDIA Quadro FX
-NVIDIA Quadro FX 1100/AGP/SSE2                                                                           supported      0   NVIDIA G100
-NVIDIA Quadro FX 1400/PCI/SSE2                                                                           supported      2   NVIDIA Quadro 400
-NVIDIA Quadro FX 1500                                                                                    supported      1   NVIDIA Quadro FX
-NVIDIA Quadro FX 1500/PCI/SSE2                                                                           supported      1   NVIDIA Quadro FX
-NVIDIA Quadro FX 1500M/PCI/SSE2                                                                          supported      1   NVIDIA Quadro FX 1500M
-NVIDIA Quadro FX 1600M/PCI/SSE2                                                                          supported      2   NVIDIA Quadro 600
-NVIDIA Quadro FX 1700                                                                                    supported      1   NVIDIA Quadro FX
-NVIDIA Quadro FX 1700M/PCI/SSE2                                                                          supported      1   NVIDIA Quadro FX
-NVIDIA Quadro FX 1800                                                                                    supported      1   NVIDIA Quadro FX
-NVIDIA Quadro FX 1800/PCI/SSE2                                                                           supported      1   NVIDIA Quadro FX
-NVIDIA Quadro FX 1800M/PCI/SSE2                                                                          supported      1   NVIDIA Quadro FX
-NVIDIA Quadro FX 2500M/PCI/SSE2                                                                          supported      2   NVIDIA Quadro FX 2500M
-NVIDIA Quadro FX 2700M/PCI/SSE2                                                                          supported      3   NVIDIA Quadro FX 2700M
-NVIDIA Quadro FX 2800M/PCI/SSE2                                                                          supported      3   NVIDIA Quadro FX 2800M
-NVIDIA Quadro FX 3400                                                                                    supported      2   NVIDIA Quadro 400
-NVIDIA Quadro FX 3450                                                                                    supported      1   NVIDIA Quadro FX
-NVIDIA Quadro FX 3450/4000 SDI/PCI/SSE2                                                                  supported      2   NVIDIA Quadro 400
-NVIDIA Quadro FX 3500                                                                                    supported      2   NVIDIA Quadro FX 3500
-NVIDIA Quadro FX 3500M/PCI/SSE2                                                                          supported      2   NVIDIA Quadro FX 3500
-NVIDIA Quadro FX 360M/PCI/SSE2                                                                           supported      1   NVIDIA Quadro FX
-NVIDIA Quadro FX 370                                                                                     supported      1   NVIDIA Quadro FX
-NVIDIA Quadro FX 370/PCI/SSE2                                                                            supported      1   NVIDIA Quadro FX
-NVIDIA Quadro FX 3700                                                                                    supported      3   NVIDIA Quadro FX 3700
-NVIDIA Quadro FX 3700M/PCI/SSE2                                                                          supported      3   NVIDIA Quadro FX 3700
-NVIDIA Quadro FX 370M/PCI/SSE2                                                                           supported      1   NVIDIA Quadro FX
-NVIDIA Quadro FX 3800                                                                                    supported      3   NVIDIA Quadro FX 3800
-NVIDIA Quadro FX 3800M/PCI/SSE2                                                                          supported      3   NVIDIA Quadro FX 3800
-NVIDIA Quadro FX 4500                                                                                    supported      3   NVIDIA Quadro FX 4500
-NVIDIA Quadro FX 4600                                                                                    supported      2   NVIDIA Quadro 600
-NVIDIA Quadro FX 4800                                                                                    supported      3   NVIDIA Quadro FX 4800
-NVIDIA Quadro FX 4800/PCI/SSE2                                                                           supported      3   NVIDIA Quadro FX 4800
-NVIDIA Quadro FX 540/PCI/SSE2/3DNOW!                                                                     supported      1   NVIDIA Quadro FX
-NVIDIA Quadro FX 560                                                                                     supported      1   NVIDIA Quadro FX
-NVIDIA Quadro FX 560/PCI/SSE2                                                                            supported      1   NVIDIA Quadro FX
-NVIDIA Quadro FX 5600                                                                                    supported      2   NVIDIA Quadro 600
-NVIDIA Quadro FX 570                                                                                     supported      1   NVIDIA Quadro FX
-NVIDIA Quadro FX 570/PCI/SSE2                                                                            supported      1   NVIDIA Quadro FX
-NVIDIA Quadro FX 570M/PCI/SSE2                                                                           supported      1   NVIDIA Quadro FX
-NVIDIA Quadro FX 580/PCI/SSE2                                                                            supported      1   NVIDIA Quadro FX
-NVIDIA Quadro FX 770M/PCI/SSE2                                                                           supported      2   NVIDIA Quadro FX 770M
-NVIDIA Quadro FX 880M                                                                                    supported      3   NVIDIA Quadro FX 880M
-NVIDIA Quadro FX 880M/PCI/SSE2                                                                           supported      3   NVIDIA Quadro FX 880M
-NVIDIA Quadro FX Go700/AGP/SSE2                                                                          supported      1   NVIDIA Quadro FX
-NVIDIA Quadro NVS                                                                                        supported      0   NVIDIA Quadro NVS
-NVIDIA Quadro NVS 110M/PCI/SSE2                                                                          supported      0   NVIDIA G 110M
-NVIDIA Quadro NVS 130M/PCI/SSE2                                                                          supported      0   NVIDIA Quadro NVS 1xxM
-NVIDIA Quadro NVS 135M/PCI/SSE2                                                                          supported      0   NVIDIA Quadro NVS 1xxM
-NVIDIA Quadro NVS 140M/PCI/SSE2                                                                          supported      0   NVIDIA Quadro NVS 1xxM
-NVIDIA Quadro NVS 150M/PCI/SSE2                                                                          supported      0   NVIDIA Quadro NVS 1xxM
-NVIDIA Quadro NVS 160M/PCI/SSE2                                                                          supported      0   NVIDIA Quadro NVS 1xxM
-NVIDIA Quadro NVS 210S/PCI/SSE2/3DNOW!                                                                   supported      1   NVIDIA G 210
-NVIDIA Quadro NVS 285/PCI/SSE2                                                                           supported      0   NVIDIA Quadro NVS
-NVIDIA Quadro NVS 290/PCI/SSE2                                                                           supported      0   NVIDIA Quadro NVS
-NVIDIA Quadro NVS 295/PCI/SSE2                                                                           supported      0   NVIDIA Quadro NVS
-NVIDIA Quadro NVS 320M/PCI/SSE2                                                                          supported      2   NVIDIA G 320M
-NVIDIA Quadro NVS 55/280 PCI/PCI/SSE2                                                                    supported      0   NVIDIA Quadro NVS
-NVIDIA Quadro NVS/PCI/SSE2                                                                               supported      0   NVIDIA Quadro NVS
-NVIDIA Quadro PCI-E Series/PCI/SSE2/3DNOW!                                                                                  NO MATCH
-NVIDIA Quadro VX 200/PCI/SSE2                                                                            supported      0   NVIDIA G 200
-NVIDIA Quadro/AGP/SSE2                                                                                                      NO MATCH
-NVIDIA Quadro2                                                                                           supported      0   NVIDIA Quadro2
-NVIDIA Quadro4                                                                                           supported      0   NVIDIA Quadro4
-NVIDIA Quadro4 750 XGL/AGP/SSE2                                                                          supported      0   NVIDIA Quadro4
-NVIDIA RIVA TNT                                                                                          unsupported    0   NVIDIA RIVA TNT
-NVIDIA RIVA TNT2/AGP/SSE2                                                                                unsupported    0   NVIDIA RIVA TNT
-NVIDIA RIVA TNT2/PCI/3DNOW!                                                                              unsupported    0   NVIDIA RIVA TNT
-NVIDIA Tesla C2050/PCI/SSE2                                                                              supported      0   NVIDIA G 205M
-NVIDIA nForce                                                                                            unsupported    0   NVIDIA nForce
-NVIDIA nForce 730a/PCI/SSE2                                                                              unsupported    0   NVIDIA nForce
-NVIDIA nForce 730a/PCI/SSE2/3DNOW!                                                                       unsupported    0   NVIDIA nForce
-NVIDIA nForce 750a SLI/PCI/SSE2                                                                          unsupported    0   NVIDIA nForce
-NVIDIA nForce 750a SLI/PCI/SSE2/3DNOW!                                                                   unsupported    0   NVIDIA nForce
-NVIDIA nForce 760i SLI/PCI/SSE2                                                                          unsupported    0   NVIDIA nForce
-NVIDIA nForce 780a SLI/PCI/SSE2/3DNOW!                                                                   unsupported    0   NVIDIA nForce
-NVIDIA nForce 980a/780a SLI/PCI/SSE2                                                                     unsupported    0   NVIDIA nForce
-NVIDIA nForce 980a/780a SLI/PCI/SSE2/3DNOW!                                                              unsupported    0   NVIDIA nForce
-NVIDIA unknown board/AGP/SSE2                                                                            unsupported    0   NVIDIA Generic
-NVIDIA unknown board/PCI/SSE2                                                                            unsupported    0   NVIDIA Generic
-NVIDIA unknown board/PCI/SSE2/3DNOW!                                                                     unsupported    0   NVIDIA Generic
-Parallels and ATI Technologies Inc. Parallels using ATI Radeon HD 5670 OpenGL Engine                     supported      3   ATI Radeon HD 5600
-Parallels and ATI Technologies Inc. Parallels using ATI Radeon HD 5750 OpenGL Engine                     supported      3   ATI Radeon HD 5700
-Parallels and ATI Technologies Inc. Parallels using ATI Radeon HD 5770 OpenGL Engine                     supported      3   ATI Radeon HD 5700
-Parallels and ATI Technologies Inc. Parallels using ATI Radeon HD 6490M OpenGL Engine                    supported      3   ATI Radeon HD 6400
-Parallels and ATI Technologies Inc. Parallels using ATI Radeon HD 6750M OpenGL Engine                    supported      3   ATI Radeon HD 6700
-Parallels and ATI Technologies Inc. Parallels using ATI Radeon HD 6770M OpenGL Engine                    supported      3   ATI Radeon HD 6700
-Parallels and ATI Technologies Inc. Parallels using ATI Radeon HD 6970M OpenGL Engine                    supported      3   ATI Radeon HD 6900
-Parallels and Intel Inc. 3D-Analyze v2.3 - http://www.tommti-systems.com                                                    NO MATCH
-Parallels and Intel Inc. Parallels using Intel HD Graphics 3000 OpenGL Engine                            supported      2   Intel HD Graphics
-Parallels and NVIDIA Parallels using NVIDIA GeForce 320M OpenGL Engine                                   supported      2   NVIDIA 320M
-Parallels and NVIDIA Parallels using NVIDIA GeForce 9400 OpenGL Engine                                   supported      1   NVIDIA GeForce 9400
-Parallels and NVIDIA Parallels using NVIDIA GeForce GT 120 OpenGL Engine                                 supported      2   NVIDIA GT 120M
-Parallels and NVIDIA Parallels using NVIDIA GeForce GT 330M OpenGL Engine                                supported      3   NVIDIA GT 330M
-Radeon RV350 on Gallium                                                                                  supported      0   ATI RV350 (9600)
-S3                                                                                                                          NO MATCH
-S3 Fire GL2                                                                                                                 NO MATCH
-S3 Graphics VIA/S3G UniChrome IGP/MMX/K3D                                                                unsupported    0   S3
-S3 Graphics VIA/S3G UniChrome IGP/MMX/SSE                                                                unsupported    0   S3
-S3 Graphics VIA/S3G UniChrome Pro IGP/MMX/SSE                                                            unsupported    0   S3
-S3 Graphics, Incorporated ProSavage/Twister                                                              unsupported    0   S3
-S3 Graphics, Incorporated S3 Graphics Chrome9 HC                                                         unsupported    0   S3
-S3 Graphics, Incorporated S3 Graphics DeltaChrome                                                        unsupported    0   S3
-S3 Graphics, Incorporated VIA Chrome9 HC IGP                                                             unsupported    0   S3
-SiS                                                                                                      unsupported    0   SiS
-SiS 650/M650 VGA                                                                                         unsupported    0   SiS
-SiS 661 VGA                                                                                              unsupported    0   SiS
-SiS 662 VGA                                                                                              unsupported    0   SiS
-SiS 741 VGA                                                                                              unsupported    0   SiS
-SiS 760 VGA                                                                                              unsupported    0   SiS
-SiS 761GX VGA                                                                                            unsupported    0   SiS
-SiS Mirage Graphics3                                                                                     unsupported    0   SiS
-SiS Xabre VGA                                                                                            unsupported    0   SiS
-Trident                                                                                                  unsupported    0   Trident
-Tungsten Graphics                                                                                        unsupported    0   Tungsten Graphics
-Tungsten Graphics, Inc Mesa DRI 865G GEM 20091221 2009Q4 x86/MMX/SSE2                                    unsupported    0   Mesa
-Tungsten Graphics, Inc Mesa DRI 865G GEM 20100330 DEVELOPMENT x86/MMX/SSE2                               unsupported    0   Mesa
-Tungsten Graphics, Inc Mesa DRI 915G GEM 20091221 2009Q4 x86/MMX/SSE2                                    unsupported    0   Mesa
-Tungsten Graphics, Inc Mesa DRI 915G GEM 20100330 DEVELOPMENT x86/MMX/SSE2                               unsupported    0   Mesa
-Tungsten Graphics, Inc Mesa DRI 915GM GEM 20090712 2009Q2 RC3 x86/MMX/SSE2                               unsupported    0   Mesa
-Tungsten Graphics, Inc Mesa DRI 915GM GEM 20091221 2009Q4 x86/MMX/SSE2                                   unsupported    0   Mesa
-Tungsten Graphics, Inc Mesa DRI 915GM GEM 20100330 DEVELOPMENT x86/MMX/SSE2                              unsupported    0   Mesa
-Tungsten Graphics, Inc Mesa DRI 945G                                                                     unsupported    0   Mesa
-Tungsten Graphics, Inc Mesa DRI 945G GEM 20091221 2009Q4 x86/MMX/SSE2                                    unsupported    0   Mesa
-Tungsten Graphics, Inc Mesa DRI 945G GEM 20100330 DEVELOPMENT                                            unsupported    0   Mesa
-Tungsten Graphics, Inc Mesa DRI 945G GEM 20100330 DEVELOPMENT x86/MMX/SSE2                               unsupported    0   Mesa
-Tungsten Graphics, Inc Mesa DRI 945GM GEM 20090712 2009Q2 RC3 x86/MMX/SSE2                               unsupported    0   Mesa
-Tungsten Graphics, Inc Mesa DRI 945GM GEM 20091221 2009Q4 x86/MMX/SSE2                                   unsupported    0   Mesa
-Tungsten Graphics, Inc Mesa DRI 945GM GEM 20100328 2010Q1 x86/MMX/SSE2                                   unsupported    0   Mesa
-Tungsten Graphics, Inc Mesa DRI 945GM GEM 20100330 DEVELOPMENT x86/MMX/SSE2                              unsupported    0   Mesa
-Tungsten Graphics, Inc Mesa DRI 945GME  x86/MMX/SSE2                                                     unsupported    0   Mesa
-Tungsten Graphics, Inc Mesa DRI 945GME 20061017                                                          unsupported    0   Mesa
-Tungsten Graphics, Inc Mesa DRI 945GME GEM 20090712 2009Q2 RC3 x86/MMX/SSE2                              unsupported    0   Mesa
-Tungsten Graphics, Inc Mesa DRI 945GME GEM 20091221 2009Q4 x86/MMX/SSE2                                  unsupported    0   Mesa
-Tungsten Graphics, Inc Mesa DRI 945GME GEM 20100330 DEVELOPMENT x86/MMX/SSE2                             unsupported    0   Mesa
-Tungsten Graphics, Inc Mesa DRI 965GM GEM 20090326 2009Q1 RC2 x86/MMX/SSE2                               unsupported    0   Mesa
-Tungsten Graphics, Inc Mesa DRI 965GM GEM 20090712 2009Q2 RC3 x86/MMX/SSE2                               unsupported    0   Mesa
-Tungsten Graphics, Inc Mesa DRI 965GM GEM 20091221 2009Q4 x86/MMX/SSE2                                   unsupported    0   Mesa
-Tungsten Graphics, Inc Mesa DRI 965GM GEM 20100330 DEVELOPMENT x86/MMX/SSE2                              unsupported    0   Mesa
-Tungsten Graphics, Inc Mesa DRI G33 20061017 x86/MMX/SSE2                                                unsupported    0   Mesa
-Tungsten Graphics, Inc Mesa DRI G33 GEM 20090712 2009Q2 RC3 x86/MMX/SSE2                                 unsupported    0   Mesa
-Tungsten Graphics, Inc Mesa DRI G33 GEM 20091221 2009Q4 x86/MMX/SSE2                                     unsupported    0   Mesa
-Tungsten Graphics, Inc Mesa DRI G41 GEM 20091221 2009Q4 x86/MMX/SSE2                                     unsupported    0   Mesa
-Tungsten Graphics, Inc Mesa DRI G41 GEM 20100330 DEVELOPMENT x86/MMX/SSE2                                unsupported    0   Mesa
-Tungsten Graphics, Inc Mesa DRI GMA500 20081116 - 5.0.1.0046 x86/MMX/SSE2                                unsupported    0   Mesa
-Tungsten Graphics, Inc Mesa DRI IGD GEM 20091221 2009Q4 x86/MMX/SSE2                                     unsupported    0   Mesa
-Tungsten Graphics, Inc Mesa DRI IGD GEM 20100330 DEVELOPMENT                                             unsupported    0   Mesa
-Tungsten Graphics, Inc Mesa DRI IGD GEM 20100330 DEVELOPMENT x86/MMX/SSE2                                unsupported    0   Mesa
-Tungsten Graphics, Inc Mesa DRI IGDNG_D GEM 20091221 2009Q4 x86/MMX/SSE2                                 unsupported    0   Mesa
-Tungsten Graphics, Inc Mesa DRI Ironlake Desktop GEM 20100330 DEVELOPMENT x86/MMX/SSE2                   unsupported    0   Mesa
-Tungsten Graphics, Inc Mesa DRI Ironlake Mobile GEM 20100330 DEVELOPMENT x86/MMX/SSE2                    unsupported    0   Mesa
-Tungsten Graphics, Inc Mesa DRI Mobile Intelå¨ GM45 Express Chipset                                      unsupported    0   Mesa
-Tungsten Graphics, Inc Mesa DRI Mobile Intelå¨ GM45 Express Chipset 20080716 x86/MMX/SSE2                unsupported    0   Mesa
-Tungsten Graphics, Inc Mesa DRI Mobile Intelå¨ GM45 Express Chipset GEM 20090712 2009Q2 RC3 x86/MMX...   unsupported    0   Mesa
-Tungsten Graphics, Inc Mesa DRI Mobile Intelå¨ GM45 Express Chipset GEM 20091221 2009Q4 x86/MMX/SSE2     unsupported    0   Mesa
-Tungsten Graphics, Inc Mesa DRI Mobile Intelå¨ GM45 Express Chipset GEM 20100328 2010Q1                  unsupported    0   Mesa
-Tungsten Graphics, Inc Mesa DRI Mobile Intelå¨ GM45 Express Chipset GEM 20100330 DEVELOPMENT             unsupported    0   Mesa
-Tungsten Graphics, Inc Mesa DRI Mobile Intelå¨ GM45 Express Chipset GEM 20100330 DEVELOPMENT x86/MM...   unsupported    0   Mesa
-Tungsten Graphics, Inc. Mesa DRI R200 (RV250 4C66) 20090101 x86/MMX/SSE2 TCL DRI2                        unsupported    0   Mesa
-Tungsten Graphics, Inc. Mesa DRI R200 (RV280 5964) 20090101 x86/MMX+/3DNow!+/SSE2 TCL DRI2               unsupported    0   Mesa
-VIA                                                                                                      unsupported    0   VIA
-VMware, Inc. Gallium 0.3 on SVGA3D; build: RELEASE;                                                                         NO MATCH
-VMware, Inc. Gallium 0.4 on SVGA3D; build: DEBUG; mutex: MSVC Intrinsics                                                    NO MATCH
-VMware, Inc. Gallium 0.4 on SVGA3D; build: RELEASE;                                                                         NO MATCH
-VMware, Inc. Gallium 0.4 on i915 (chipset: 945GM)                                                                           NO MATCH
-VMware, Inc. Gallium 0.4 on llvmpipe                                                                                        NO MATCH
-VMware, Inc. Gallium 0.4 on softpipe                                                                                        NO MATCH
-X.Org Gallium 0.4 on AMD BARTS                                                                           supported      3   AMD BARTS (HD 6800)
-X.Org Gallium 0.4 on AMD CEDAR                                                                           supported      2   AMD CEDAR (HD 5450)
-X.Org Gallium 0.4 on AMD HEMLOCK                                                                         supported      3   AMD HEMLOCK (HD 5970)
-X.Org Gallium 0.4 on AMD JUNIPER                                                                         supported      3   AMD JUNIPER (HD 5700)
-X.Org Gallium 0.4 on AMD PALM                                                                                               NO MATCH
-X.Org Gallium 0.4 on AMD REDWOOD                                                                         supported      3   AMD REDWOOD (HD 5500/5600)
-X.Org Gallium 0.4 on AMD RS780                                                                           supported      0   AMD RS780 (HD 3200)
-X.Org Gallium 0.4 on AMD RS880                                                                           supported      1   AMD RS880 (HD 4200)
-X.Org Gallium 0.4 on AMD RV610                                                                           supported      1   AMD RV610 (HD 2400)
-X.Org Gallium 0.4 on AMD RV620                                                                           supported      1   AMD RV620 (HD 3400)
-X.Org Gallium 0.4 on AMD RV630                                                                           supported      2   AMD RV630 (HD 2600)
-X.Org Gallium 0.4 on AMD RV635                                                                           supported      3   AMD RV635 (HD 3600)
-X.Org Gallium 0.4 on AMD RV710                                                                           supported      1   AMD RV710 (HD 4300)
-X.Org Gallium 0.4 on AMD RV730                                                                           supported      3   AMD RV730 (HD 4600)
-X.Org Gallium 0.4 on AMD RV740                                                                           supported      3   AMD RV740 (HD 4700)
-X.Org Gallium 0.4 on AMD RV770                                                                           supported      3   AMD RV770 (HD 4800)
-X.Org R300 Project Gallium 0.4 on ATI R300                                                               supported      1   ATI R300 (9700)
-X.Org R300 Project Gallium 0.4 on ATI R350                                                               supported      1   ATI R350 (9800)
-X.Org R300 Project Gallium 0.4 on ATI R420                                                               supported      1   ATI R300 (9700)
-X.Org R300 Project Gallium 0.4 on ATI R580                                                               supported      3   ATI R580 (X1900)
-X.Org R300 Project Gallium 0.4 on ATI RC410                                                              unsupported    0   ATI RC410 (Xpress 200)
-X.Org R300 Project Gallium 0.4 on ATI RS480                                                              unsupported    0   ATI RS48x (Xpress 200x)
-X.Org R300 Project Gallium 0.4 on ATI RS482                                                              unsupported    0   ATI RS48x (Xpress 200x)
-X.Org R300 Project Gallium 0.4 on ATI RS600                                                              unsupported    0   ATI RS600 (Xpress 3200)
-X.Org R300 Project Gallium 0.4 on ATI RS690                                                              supported      1   ATI R300 (9700)
-X.Org R300 Project Gallium 0.4 on ATI RS740                                                              supported      1   ATI R300 (9700)
-X.Org R300 Project Gallium 0.4 on ATI RV350                                                              supported      0   ATI RV350 (9600)
-X.Org R300 Project Gallium 0.4 on ATI RV370                                                              supported      0   ATI RV370 (X300)
-X.Org R300 Project Gallium 0.4 on ATI RV410                                                              supported      1   ATI RV410 (X700)
-X.Org R300 Project Gallium 0.4 on ATI RV515                                                              supported      1   ATI RV515
-X.Org R300 Project Gallium 0.4 on ATI RV530                                                              supported      1   ATI RV530
-X.Org R300 Project Gallium 0.4 on ATI RV560                                                              supported      1   ATI R300 (9700)
-X.Org R300 Project Gallium 0.4 on ATI RV570                                                              supported      3   ATI RV570 (X1900 GT/PRO)
-X.Org R300 Project Gallium 0.4 on R420                                                                   supported      1   ATI R300 (9700)
-X.Org R300 Project Gallium 0.4 on R580                                                                   supported      3   ATI R580 (X1900)
-X.Org R300 Project Gallium 0.4 on RC410                                                                  unsupported    0   ATI RC410 (Xpress 200)
-X.Org R300 Project Gallium 0.4 on RS480                                                                  unsupported    0   ATI RS48x (Xpress 200x)
-X.Org R300 Project Gallium 0.4 on RS482                                                                  unsupported    0   ATI RS48x (Xpress 200x)
-X.Org R300 Project Gallium 0.4 on RS600                                                                  unsupported    0   ATI RS600 (Xpress 3200)
-X.Org R300 Project Gallium 0.4 on RS690                                                                  supported      1   ATI R300 (9700)
-X.Org R300 Project Gallium 0.4 on RS740                                                                  supported      1   ATI R300 (9700)
-X.Org R300 Project Gallium 0.4 on RV350                                                                  supported      0   ATI RV350 (9600)
-X.Org R300 Project Gallium 0.4 on RV370                                                                  supported      0   ATI RV370 (X300)
-X.Org R300 Project Gallium 0.4 on RV410                                                                  supported      1   ATI RV410 (X700)
-X.Org R300 Project Gallium 0.4 on RV515                                                                  supported      1   ATI RV515
-X.Org R300 Project Gallium 0.4 on RV530                                                                  supported      1   ATI RV530
-XGI                                                                                                      unsupported    0   XGI
-nouveau Gallium 0.4 on NV31                                                                                                 NO MATCH
-nouveau Gallium 0.4 on NV34                                                                                                 NO MATCH
-nouveau Gallium 0.4 on NV36                                                                                                 NO MATCH
-nouveau Gallium 0.4 on NV43                                                                                                 NO MATCH
-nouveau Gallium 0.4 on NV44                                                                                                 NO MATCH
-nouveau Gallium 0.4 on NV46                                                                                                 NO MATCH
-nouveau Gallium 0.4 on NV49                                                                                                 NO MATCH
-nouveau Gallium 0.4 on NV4A                                                                                                 NO MATCH
-nouveau Gallium 0.4 on NV4B                                                                                                 NO MATCH
-nouveau Gallium 0.4 on NV4C                                                                                                 NO MATCH
-nouveau Gallium 0.4 on NV4E                                                                                                 NO MATCH
-nouveau Gallium 0.4 on NV50                                                                                                 NO MATCH
-nouveau Gallium 0.4 on NV63                                                                                                 NO MATCH
-nouveau Gallium 0.4 on NV67                                                                                                 NO MATCH
-nouveau Gallium 0.4 on NV84                                                                                                 NO MATCH
-nouveau Gallium 0.4 on NV86                                                                                                 NO MATCH
-nouveau Gallium 0.4 on NV92                                                                                                 NO MATCH
-nouveau Gallium 0.4 on NV94                                                                                                 NO MATCH
-nouveau Gallium 0.4 on NV96                                                                                                 NO MATCH
-nouveau Gallium 0.4 on NV98                                                                                                 NO MATCH
-nouveau Gallium 0.4 on NVA0                                                                                                 NO MATCH
-nouveau Gallium 0.4 on NVA3                                                                                                 NO MATCH
-nouveau Gallium 0.4 on NVA5                                                                                                 NO MATCH
-nouveau Gallium 0.4 on NVA8                                                                                                 NO MATCH
-nouveau Gallium 0.4 on NVAA                                                                                                 NO MATCH
-nouveau Gallium 0.4 on NVAC                                                                                                 NO MATCH
+GPU String                                                                                               Supported?  Class  Stats  OpenGL  Recognizer
+------------------------------------------------------------------------------------------------------   ----------- -----  -----  ------  ------------------------------------
+AMD BARTS (HD 6800)                                                                                      supported      3     1     2.1    AMD BARTS (HD 6800)
+AMD CAICOS (HD 6400)                                                                                     supported      3     0     0      AMD CAICOS (HD 6400)
+AMD CAYMAN (HD 6900)                                                                                     supported      3     0     0      AMD CAYMAN (HD 6900)
+AMD CEDAR (HD 5450)                                                                                      supported      2     0     2.1    AMD CEDAR (HD 5450)
+AMD JUNIPER (HD 5700)                                                                                    supported      3     0     0      AMD JUNIPER (HD 5700)
+AMD PARK                                                                                                 supported      3     0     0      AMD PARK
+AMD REDWOOD (HD 5500/5600)                                                                               supported      3     0     1.4    AMD REDWOOD (HD 5500/5600)
+AMD RS780 (HD 3200)                                                                                      supported      0     1     2.1    AMD RS780 (HD 3200)
+AMD RS880 (HD 4200)                                                                                      supported      0     1     3.2    AMD RS880 (HD 4200)
+AMD RV610 (HD 2400)                                                                                      supported      1     0     0      AMD RV610 (HD 2400)
+AMD RV620 (HD 3400)                                                                                      supported      1     0     0      AMD RV620 (HD 3400)
+AMD RV630 (HD 2600)                                                                                      supported      2     0     0      AMD RV630 (HD 2600)
+AMD RV635 (HD 3600)                                                                                      supported      3     0     1.4    AMD RV635 (HD 3600)
+AMD RV670 (HD 3800)                                                                                      supported      3     0     0      AMD RV670 (HD 3800)
+AMD RV710 (HD 4300)                                                                                      supported      0     1     1.4    AMD RV710 (HD 4300)
+AMD RV730 (HD 4600)                                                                                      supported      3     0     1.4    AMD RV730 (HD 4600)
+AMD RV770 (HD 4800)                                                                                      supported      3     0     0      AMD RV770 (HD 4800)
+AMD RV790 (HD 4800)                                                                                      supported      3     0     0      AMD RV790 (HD 4800)
+AMD TURKS (HD 6500/6600)                                                                                 supported      3     0     2.1    AMD TURKS (HD 6500/6600)
+ATI                                                                                                                                        NO MATCH
+ATI 760G/Radeon 3000                                                                                     supported      1     1     4      ATI Radeon 3000
+ATI ASUS AH24xx                                                                                          supported      1     1     4      ATI Radeon HD 2400
+ATI ASUS AH34xx                                                                                          supported      1     1     4      ATI Radeon HD 3400
+ATI ASUS AH36xx                                                                                          supported      3     1     4      ATI Radeon HD 3600
+ATI ASUS AH46xx                                                                                          supported      3     1     4      ATI Radeon HD 4600
+ATI ASUS AX3xx                                                                                           supported      2     1     4      ATI Radeon HD 4300
+ATI ASUS AX5xx                                                                                           supported      1     1     4      ATI Radeon HD 5xx
+ATI ASUS EAH38xx                                                                                         supported      3     1     4      ATI Radeon HD 3800
+ATI ASUS EAH43xx                                                                                         supported      2     1     4      ATI Radeon HD 4300
+ATI ASUS EAH45xx                                                                                         supported      2     1     3.3    ATI Radeon HD 4500
+ATI ASUS EAH48xx                                                                                         supported      3     1     4      ATI Radeon HD 4800
+ATI ASUS EAH54xx                                                                                         supported      3     1     4.2    ATI Radeon HD 5400
+ATI ASUS EAH57xx                                                                                         supported      3     1     4.2    ATI Radeon HD 5700
+ATI ASUS EAH58xx                                                                                         supported      4     1     4.2    ATI Radeon HD 5800
+ATI ASUS EAH64xx                                                                                         supported      3     1     4.2    ATI Radeon HD 6400
+ATI ASUS EAH65xx                                                                                         supported      3     1     4.2    ATI Radeon HD 6500
+ATI ASUS EAH66xx                                                                                         supported      3     1     4.2    ATI Radeon HD 6600
+ATI ASUS EAH67xx                                                                                         supported      3     1     4.2    ATI Radeon HD 6700
+ATI ASUS EAH68xx                                                                                         supported      4     1     4.2    ATI Radeon HD 6800
+ATI ASUS EAH69xx                                                                                         supported      5     1     4.2    ATI Radeon HD 6900
+ATI ASUS EAH6xxx                                                                                         supported      5     1     4.2    ATI Radeon HD 6x00
+ATI ASUS EAH77xx                                                                                         supported      4     1     4.2    ATI Radeon HD 7700
+ATI ASUS HD7700                                                                                          supported      4     1     4.2    ATI Radeon HD 7700
+ATI ASUS Radeon X1xxx                                                                                    supported      2     0     2.1    ATI Radeon X1xxx
+ATI All-in-Wonder HD                                                                                     supported      1     1     3.3    ATI All-in-Wonder HD
+ATI All-in-Wonder PCI-E                                                                                  supported      1     0     0      ATI All-in-Wonder PCI-E
+ATI Display Adapter                                                                                      supported      1     1     4.1    ATI Display Adapter
+ATI FireGL                                                                                               supported      4     1     4.2    ATI FireGL
+ATI FireGL 5200                                                                                          supported      4     1     4.2    ATI FireGL
+ATI FireGL 5xxx                                                                                          supported      4     1     4.2    ATI FireGL
+ATI FireMV                                                                                               supported      0     1     3.2    ATI FireMV
+ATI FirePro 2000                                                                                         supported      2     1     4.2    ATI FirePro 2000
+ATI FirePro 4000                                                                                         supported      2     0     4.1    ATI FirePro 4000
+ATI FirePro M                                                                                            supported      3     1     4.2    ATI FirePro M
+ATI FirePro M3900                                                                                        supported      2     0     4.1    ATI FirePro M3900
+ATI FirePro M5800                                                                                        supported      3     0     0      ATI FirePro M5800
+ATI FirePro M7740                                                                                        supported      3     0     0      ATI FirePro M7740
+ATI FirePro M7820                                                                                        supported      5     1     4.2    ATI FirePro M7820
+ATI Geforce 9500 GT                                                                                      unsupported    0     0     0      ATI GeForce Lulz
+ATI Geforce 9600 GT                                                                                      unsupported    0     0     0      ATI GeForce Lulz
+ATI Geforce 9800 GT                                                                                      unsupported    0     0     0      ATI GeForce Lulz
+ATI IGP 340M                                                                                             unsupported    0     0     1.3    ATI IGP 340M
+ATI Mobility Radeon                                                                                      supported      3     0     0      ATI Radeon
+ATI Mobility Radeon 4100                                                                                 supported      1     1     3.3    ATI Mobility Radeon 4100
+ATI Mobility Radeon 7xxx                                                                                 supported      0     1     1.3    ATI Mobility Radeon 7xxx
+ATI Mobility Radeon 9600                                                                                 supported      1     1     2.1    ATI Mobility Radeon 9600
+ATI Mobility Radeon 9700                                                                                 supported      0     1     2.1    ATI Mobility Radeon 9700
+ATI Mobility Radeon 9800                                                                                 supported      1     0     0      ATI Mobility Radeon 9800
+ATI Mobility Radeon HD 2300                                                                              supported      0     1     2.1    ATI Mobility Radeon HD 2300
+ATI Mobility Radeon HD 2400                                                                              supported      1     1     3.3    ATI Mobility Radeon HD 2400
+ATI Mobility Radeon HD 2600                                                                              supported      1     1     3.3    ATI Mobility Radeon HD 2600
+ATI Mobility Radeon HD 2700                                                                              supported      3     0     0      ATI Mobility Radeon HD 2700
+ATI Mobility Radeon HD 3400                                                                              supported      1     1     4      ATI Mobility Radeon HD 3400
+ATI Mobility Radeon HD 3600                                                                              supported      1     1     4      ATI Mobility Radeon HD 3600
+ATI Mobility Radeon HD 3800                                                                              supported      3     1     3.3    ATI Mobility Radeon HD 3800
+ATI Mobility Radeon HD 4200                                                                              supported      1     1     4      ATI Mobility Radeon HD 4200
+ATI Mobility Radeon HD 4300                                                                              supported      1     1     4      ATI Mobility Radeon HD 4300
+ATI Mobility Radeon HD 4500                                                                              supported      1     1     4      ATI Mobility Radeon HD 4500
+ATI Mobility Radeon HD 4600                                                                              supported      2     1     3.3    ATI Mobility Radeon HD 4600
+ATI Mobility Radeon HD 4800                                                                              supported      3     1     3.3    ATI Mobility Radeon HD 4800
+ATI Mobility Radeon HD 5100                                                                              supported      3     1     3.2    ATI Mobility Radeon HD 5100
+ATI Mobility Radeon HD 5300                                                                              supported      3     0     0      ATI Mobility Radeon HD 5300
+ATI Mobility Radeon HD 530v                                                                              supported      1     1     3.3    ATI Mobility Radeon HD 530v
+ATI Mobility Radeon HD 5400                                                                              supported      2     1     4.2    ATI Mobility Radeon HD 5400
+ATI Mobility Radeon HD 540v                                                                              supported      1     1     3.3    ATI Mobility Radeon HD 540v
+ATI Mobility Radeon HD 545v                                                                              supported      2     1     4      ATI Mobility Radeon HD 545v
+ATI Mobility Radeon HD 5500                                                                              supported      3     0     4.2    ATI Mobility Radeon HD 5500
+ATI Mobility Radeon HD 550v                                                                              supported      3     1     4      ATI Mobility Radeon HD 550v
+ATI Mobility Radeon HD 5600                                                                              supported      3     1     4.2    ATI Mobility Radeon HD 5600
+ATI Mobility Radeon HD 560v                                                                              supported      3     1     3.2    ATI Mobility Radeon HD 560v
+ATI Mobility Radeon HD 565v                                                                              supported      3     1     3.3    ATI Mobility Radeon HD 565v
+ATI Mobility Radeon HD 5700                                                                              supported      3     1     4.1    ATI Mobility Radeon HD 5700
+ATI Mobility Radeon HD 6300                                                                              supported      1     1     4.2    ATI Radeon HD 6300
+ATI Mobility Radeon HD 6500                                                                              supported      3     1     4.2    ATI Radeon HD 6500
+ATI Mobility Radeon HD 6500M                                                                             supported      3     1     4.2    ATI Radeon HD 6500
+ATI Mobility Radeon X1xxx                                                                                supported      2     0     2.1    ATI Mobility Radeon X1000
+ATI Mobility Radeon X2xxx                                                                                supported      2     0     2.1    ATI Radeon X2xxx
+ATI Mobility Radeon X3xx                                                                                 supported      1     1     2.1    ATI Radeon X300
+ATI Mobility Radeon X6xx                                                                                 supported      1     1     2.1    ATI Radeon X600
+ATI Mobility Radeon X7xx                                                                                 supported      2     1     2.1    ATI Radeon X700
+ATI Mobility Radeon Xxxx                                                                                 supported      2     0     2.1    ATI Mobility Radeon XX000
+ATI R300 (9700)                                                                                          supported      0     1     2.1    ATI R300 (9700)
+ATI RV410 (X700)                                                                                         supported      1     0     0      ATI RV410 (X700)
+ATI RV530                                                                                                supported      1     0     0      ATI RV530
+ATI Radeon                                                                                               supported      3     0     0      ATI Radeon
+ATI Radeon 2100                                                                                          supported      0     1     2.1    ATI Radeon 2100
+ATI Radeon 3000                                                                                          supported      1     1     4      ATI Radeon 3000
+ATI Radeon 3100                                                                                          supported      0     1     3.3    ATI Radeon 3100
+ATI Radeon 5xxx                                                                                          supported      3     0     0      ATI Radeon 5xxx
+ATI Radeon 7000                                                                                          supported      0     1     2      ATI Radeon 7xxx
+ATI Radeon 7xxx                                                                                          supported      0     1     2      ATI Radeon 7xxx
+ATI Radeon 8xxx                                                                                          supported      0     0     0      ATI Radeon 8xxx
+ATI Radeon 9000                                                                                          supported      0     1     1.3    ATI Radeon 9000
+ATI Radeon 9100                                                                                          supported      0     0     0      ATI Radeon 9100
+ATI Radeon 9200                                                                                          supported      0     1     1.3    ATI Radeon 9200
+ATI Radeon 9500                                                                                          supported      0     1     2.1    ATI Radeon 9500
+ATI Radeon 9600                                                                                          supported      0     1     2.1    ATI Radeon 9600
+ATI Radeon 9700                                                                                          supported      1     0     0      ATI Radeon 9700
+ATI Radeon 9800                                                                                          supported      1     1     2.1    ATI Radeon 9800
+ATI Radeon HD 2300                                                                                       supported      0     1     3.3    ATI Radeon HD 2300
+ATI Radeon HD 2400                                                                                       supported      1     1     4      ATI Radeon HD 2400
+ATI Radeon HD 2600                                                                                       supported      2     1     4      ATI Radeon HD 2600
+ATI Radeon HD 2900                                                                                       supported      3     1     3.3    ATI Radeon HD 2900
+ATI Radeon HD 3000                                                                                       supported      0     0     0      ATI Radeon HD 3000
+ATI Radeon HD 3100                                                                                       supported      1     0     0      ATI Radeon HD 3100
+ATI Radeon HD 3200                                                                                       supported      1     1     4      ATI Radeon HD 3200
+ATI Radeon HD 3300                                                                                       supported      1     1     3.3    ATI Radeon HD 3300
+ATI Radeon HD 3400                                                                                       supported      1     1     4      ATI Radeon HD 3400
+ATI Radeon HD 3500                                                                                       supported      2     0     0      ATI Radeon HD 3500
+ATI Radeon HD 3600                                                                                       supported      3     1     4      ATI Radeon HD 3600
+ATI Radeon HD 3700                                                                                       supported      3     0     3.3    ATI Radeon HD 3700
+ATI Radeon HD 3800                                                                                       supported      3     1     4      ATI Radeon HD 3800
+ATI Radeon HD 4200                                                                                       supported      1     1     4      ATI Radeon HD 4200
+ATI Radeon HD 4300                                                                                       supported      2     1     4      ATI Radeon HD 4300
+ATI Radeon HD 4400                                                                                       supported      2     0     0      ATI Radeon HD 4400
+ATI Radeon HD 4500                                                                                       supported      2     1     3.3    ATI Radeon HD 4500
+ATI Radeon HD 4600                                                                                       supported      3     1     4      ATI Radeon HD 4600
+ATI Radeon HD 4700                                                                                       supported      3     1     3.3    ATI Radeon HD 4700
+ATI Radeon HD 4800                                                                                       supported      3     1     4      ATI Radeon HD 4800
+ATI Radeon HD 5400                                                                                       supported      3     1     4.2    ATI Radeon HD 5400
+ATI Radeon HD 5500                                                                                       supported      3     1     4.2    ATI Radeon HD 5500
+ATI Radeon HD 5600                                                                                       supported      3     1     4.2    ATI Radeon HD 5600
+ATI Radeon HD 5700                                                                                       supported      3     1     4.2    ATI Radeon HD 5700
+ATI Radeon HD 5800                                                                                       supported      4     1     4.2    ATI Radeon HD 5800
+ATI Radeon HD 5900                                                                                       supported      4     1     4.2    ATI Radeon HD 5900
+ATI Radeon HD 6200                                                                                       supported      0     1     4.2    ATI Radeon HD 6200
+ATI Radeon HD 6300                                                                                       supported      1     1     4.2    ATI Radeon HD 6300
+ATI Radeon HD 6300M                                                                                      supported      1     1     4.2    ATI Radeon HD 6300
+ATI Radeon HD 6400                                                                                       supported      3     1     4.2    ATI Radeon HD 6400
+ATI Radeon HD 64xx                                                                                       supported      3     1     4.2    ATI Radeon HD 6400
+ATI Radeon HD 6500                                                                                       supported      3     1     4.2    ATI Radeon HD 6500
+ATI Radeon HD 65xx                                                                                       supported      3     1     4.2    ATI Radeon HD 6500
+ATI Radeon HD 6600                                                                                       supported      3     1     4.2    ATI Radeon HD 6600
+ATI Radeon HD 66xx                                                                                       supported      3     1     4.2    ATI Radeon HD 6600
+ATI Radeon HD 6700                                                                                       supported      3     1     4.2    ATI Radeon HD 6700
+ATI Radeon HD 6700M                                                                                      supported      3     1     4.2    ATI Radeon HD 6700
+ATI Radeon HD 6800                                                                                       supported      4     1     4.2    ATI Radeon HD 6800
+ATI Radeon HD 6900                                                                                       supported      5     1     4.2    ATI Radeon HD 6900
+ATI Radeon HD 7200                                                                                       supported      2     0     4.2    ATI Radeon HD 7200
+ATI Radeon HD 7300                                                                                       supported      2     0     4.2    ATI Radeon HD 7300
+ATI Radeon HD 7400                                                                                       supported      2     0     4.2    ATI Radeon HD 7400
+ATI Radeon HD 7500                                                                                       supported      3     1     4.2    ATI Radeon HD 7500
+ATI Radeon HD 7600                                                                                       supported      3     0     4.2    ATI Radeon HD 7600
+ATI Radeon HD 7700                                                                                       supported      4     1     4.2    ATI Radeon HD 7700
+ATI Radeon HD 7800                                                                                       supported      5     1     4.2    ATI Radeon HD 7800
+ATI Radeon HD 7900                                                                                       supported      5     1     4.2    ATI Radeon HD 7900
+ATI Radeon X1000                                                                                         supported      2     0     2.1    ATI Radeon X1000
+ATI Radeon X1200                                                                                         supported      2     0     2.1    ATI Radeon X1200
+ATI Radeon X1300                                                                                         supported      2     1     2.1    ATI Radeon X1300
+ATI Radeon X13xx                                                                                         supported      2     1     2.1    ATI Radeon X1300
+ATI Radeon X1400                                                                                         supported      2     1     2.1    ATI Radeon X1400
+ATI Radeon X1500                                                                                         supported      2     1     2.1    ATI Radeon X1500
+ATI Radeon X15xx                                                                                         supported      2     1     2.1    ATI Radeon X1500
+ATI Radeon X1600                                                                                         supported      2     1     2.1    ATI Radeon X1600
+ATI Radeon X16xx                                                                                         supported      2     1     2.1    ATI Radeon X1600
+ATI Radeon X17xx                                                                                         supported      2     1     2.1    ATI Radeon X1700
+ATI Radeon X1800                                                                                         supported      3     1     2.1    ATI Radeon X1800
+ATI Radeon X18xx                                                                                         supported      3     1     2.1    ATI Radeon X1800
+ATI Radeon X1900                                                                                         supported      2     1     2.1    ATI Radeon X1900
+ATI Radeon X19xx                                                                                         supported      2     1     2.1    ATI Radeon X1900
+ATI Radeon X1xxx                                                                                         supported      2     0     2.1    ATI Radeon X1xxx
+ATI Radeon X2xxx                                                                                         supported      2     0     2.1    ATI Radeon X2xxx
+ATI Radeon X300                                                                                          supported      1     1     2.1    ATI Radeon X300
+ATI Radeon X500                                                                                          supported      1     1     2.1    ATI Radeon X500
+ATI Radeon X600                                                                                          supported      1     1     2.1    ATI Radeon X600
+ATI Radeon X700                                                                                          supported      2     1     2.1    ATI Radeon X700
+ATI Radeon X800                                                                                          supported      1     1     2.1    ATI Radeon X800
+ATI Radeon Xpress                                                                                        supported      0     1     2.1    ATI Radeon Xpress
+ATI Rage 128                                                                                             supported      0     0     0      ATI Rage 128
+ATI Technologies                                                                                                                           NO MATCH
+ATI Technologies Inc.                                                                                                                      NO MATCH
+ATI Technologies Inc. (DNA-AMD GFX) AMD Radeon HD 6290 Graphics                                          supported      0     1     4.2    ATI Radeon HD 6200
+ATI Technologies Inc. (DNA-ATi 5.1.7.5x32) ATI Mobility Radeon HD 2                                                                        NO MATCH
+ATI Technologies Inc. (Vista) ATI Mobility Radeon HD 5730                                                supported      3     1     4.1    ATI Mobility Radeon HD 5700
+ATI Technologies Inc. (Vista) ATI Mobility Radeon HD 5870                                                supported      4     1     4.2    ATI Radeon HD 5800
+ATI Technologies Inc. 128MB ATI RADEON X600 SE                                                           supported      1     1     2.1    ATI Radeon X600
+ATI Technologies Inc. 128MB ATI RADEON X600 SE x86/SSE2                                                  supported      1     1     2.1    ATI Radeon X600
+ATI Technologies Inc. 128MB ATI Radeon X1300                                                             supported      2     1     2.1    ATI Radeon X1300
+ATI Technologies Inc. 128MB ATI Radeon X1300 x86/MMX/3DNow!/SSE2                                         supported      2     1     2.1    ATI Radeon X1300
+ATI Technologies Inc. 128MB ATI Radeon X1300 x86/SSE2                                                    supported      2     1     2.1    ATI Radeon X1300
+ATI Technologies Inc. 256MB ATI RADEON X600                                                              supported      1     1     2.1    ATI Radeon X600
+ATI Technologies Inc. 256MB ATI Radeon X1300PRO                                                          supported      2     1     2.1    ATI Radeon X1300
+ATI Technologies Inc. 256MB ATI Radeon X1300PRO x86/MMX/3DNow!/SSE2                                      supported      2     1     2.1    ATI Radeon X1300
+ATI Technologies Inc. 256MB ATI Radeon X1300PRO x86/SSE2                                                 supported      2     1     2.1    ATI Radeon X1300
+ATI Technologies Inc. 3DP (ATI RADEON XPRESS 200M)                                                       supported      0     1     2.1    ATI Radeon Xpress
+ATI Technologies Inc. 3DP Edition v10.04 (Mobility Radeon X1600) x86/SSE2                                supported      2     1     2.1    ATI Radeon X1600
+ATI Technologies Inc. 7900 MOD - AMD Radeon HD 7400M Series                                              supported      3     0     4.2    ATI Radeon HD 7400D/G/M
+ATI Technologies Inc. 7900 MOD - AMD Radeon HD 7640G                                                     supported      4     0     4.2    ATI Radeon HD 7600D/G/M
+ATI Technologies Inc. ALL-IN-WONDER 9600 SERIES                                                          supported      1     0     2.1    ATI All-in-Wonder 9xxx
+ATI Technologies Inc. AMD (ATI)  FirePro M5950 (FireGL) Mobility Pro Graphics                            supported      4     1     4.2    ATI FireGL
+ATI Technologies Inc. AMD (ATI) FirePro M4000 (FireGL V) Mobility Pro Graphics                           supported      4     1     4.2    ATI FireGL
+ATI Technologies Inc. AMD (ATI) FirePro M5950 (FireGL) Mobility Pro Graphics                             supported      4     1     4.2    ATI FireGL
+ATI Technologies Inc. AMD (ATI) FirePro M6000 (FireGL V) Mobility Pro Graphics                           supported      4     1     4.2    ATI FireGL
+ATI Technologies Inc. AMD (ATI) FirePro M8900 (FireGL) Mobility Pro                                      supported      4     1     4.2    ATI FireGL
+ATI Technologies Inc. AMD (ATI) FirePro M8900 (FireGL) Mobility Pro Graphics                             supported      4     1     4.2    ATI FireGL
+ATI Technologies Inc. AMD 760G                                                                           supported      1     1     3.3    ATI 760G/Radeon 3000
+ATI Technologies Inc. AMD 760G (Microsoft Corporation WDDM 1.1)                                          supported      1     1     3.3    ATI 760G/Radeon 3000
+ATI Technologies Inc. AMD FirePro 2270                                                                   supported      2     1     4.2    ATI FirePro 2000
+ATI Technologies Inc. AMD FirePro 2460                                                                   supported      2     1     4.2    ATI FirePro 2000
+ATI Technologies Inc. AMD FirePro M2000                                                                  supported      3     1     4.2    ATI FirePro M
+ATI Technologies Inc. AMD FirePro M3900                                                                  supported      2     0     4.1    ATI FirePro M3900
+ATI Technologies Inc. AMD FirePro M4000                                                                  supported      3     1     4.2    ATI FirePro M
+ATI Technologies Inc. AMD FirePro M5950                                                                  supported      3     1     4.2    ATI FirePro M
+ATI Technologies Inc. AMD FirePro M5950 Mobility Professional Graphics                                   supported      3     1     4.2    ATI FirePro M
+ATI Technologies Inc. AMD FirePro V3900                                                                  supported      2     0     0      ATI FirePro 3000
+ATI Technologies Inc. AMD FirePro V3900 (ATI FireGL)                                                     supported      4     1     4.2    ATI FireGL
+ATI Technologies Inc. AMD FirePro V4900                                                                  supported      2     0     4.1    ATI FirePro 4000
+ATI Technologies Inc. AMD FirePro V4900 (ATI FireGL)                                                     supported      4     1     4.2    ATI FireGL
+ATI Technologies Inc. AMD FirePro V4900 (FireGL V)                                                       supported      4     1     4.2    ATI FireGL
+ATI Technologies Inc. AMD FirePro V4900 (FireGL V) Graphics Adapter                                      supported      4     1     4.2    ATI FireGL
+ATI Technologies Inc. AMD FirePro V5900                                                                  supported      3     0     0      ATI FirePro 5000
+ATI Technologies Inc. AMD FirePro V5900 (ATI FireGL)                                                     supported      4     1     4.2    ATI FireGL
+ATI Technologies Inc. AMD FirePro V5900 (FireGL V)                                                       supported      4     1     4.2    ATI FireGL
+ATI Technologies Inc. AMD FirePro V5900 (FireGL V) Graphics Adapter                                      supported      4     1     4.2    ATI FireGL
+ATI Technologies Inc. AMD FirePro V7900                                                                  supported      3     0     0      ATI FirePro 7000
+ATI Technologies Inc. AMD FirePro V7900 (ATI FireGL)                                                     supported      4     1     4.2    ATI FireGL
+ATI Technologies Inc. AMD FirePro V7900 (FireGL V)                                                       supported      4     1     4.2    ATI FireGL
+ATI Technologies Inc. AMD FirePro V7900 (FireGL V) Graphics Adapter                                      supported      4     1     4.2    ATI FireGL
+ATI Technologies Inc. AMD FirePro W5000 (FireGL V)                                                       supported      4     1     4.2    ATI FireGL
+ATI Technologies Inc. AMD FirePro W9000 (FireGL V)                                                       supported      4     1     4.2    ATI FireGL
+ATI Technologies Inc. AMD M860G with ATI Mobility Radeon 4100                                            supported      1     1     3.3    ATI Mobility Radeon 4100
+ATI Technologies Inc. AMD M880G with ATI Mobility Radeon HD 4200                                         supported      1     1     4      ATI Mobility Radeon HD 4200
+ATI Technologies Inc. AMD M880G with ATI Mobility Radeon HD 4225                                         supported      1     1     4      ATI Mobility Radeon HD 4200
+ATI Technologies Inc. AMD M880G with ATI Mobility Radeon HD 4250                                         supported      1     1     4      ATI Mobility Radeon HD 4200
+ATI Technologies Inc. AMD RADEON HD 6350                                                                 supported      1     1     4.2    ATI Radeon HD 6300
+ATI Technologies Inc. AMD RADEON HD 6450                                                                 supported      3     1     4.2    ATI Radeon HD 6400
+ATI Technologies Inc. AMD RADEON HD 6450A                                                                supported      3     1     4.2    ATI Radeon HD 6400
+ATI Technologies Inc. AMD RADEON HD 6670                                                                 supported      3     1     4.2    ATI Radeon HD 6600
+ATI Technologies Inc. AMD RADEON HD 7450                                                                 supported      2     0     4.2    ATI Radeon HD 7400
+ATI Technologies Inc. AMD RADEON HD6370D Graphics                                                        supported      3     1     4.2    ATI Radeon HD 6300D/G/M
+ATI Technologies Inc. AMD RADEON HD6410D Graphics                                                        supported      3     0     4.2    ATI Radeon HD 6400D/G/M
+ATI Technologies Inc. AMD RADEON HD6530D Graphics                                                        supported      4     1     4.2    ATI Radeon HD 6500D/G/M
+ATI Technologies Inc. AMD RADEON HD6550D Graphics                                                        supported      4     1     4.2    ATI Radeon HD 6500D/G/M
+ATI Technologies Inc. AMD Radeon                                                                         supported      3     0     0      ATI Radeon
+ATI Technologies Inc. AMD Radeon (TM) HD 8500M/8700M                                                     supported      4     0     4.2    ATI Radeon HD 8500D/G/M
+ATI Technologies Inc. AMD Radeon 6600M and 6700M Series                                                  supported      0     0     0      ATI Radeon 6xxx
+ATI Technologies Inc. AMD Radeon 6600M and 6700M Series (Microsoft Corporation - WDDM v1.20)             supported      0     0     0      ATI Radeon 6xxx
+ATI Technologies Inc. AMD Radeon HD 5450                                                                 supported      3     1     4.2    ATI Radeon HD 5400
+ATI Technologies Inc. AMD Radeon HD 5500 Series                                                          supported      3     1     4.2    ATI Radeon HD 5500
+ATI Technologies Inc. AMD Radeon HD 5500 Series (Microsoft Corporation - WDDM v1.20)                     supported      3     1     4.2    ATI Radeon HD 5500
+ATI Technologies Inc. AMD Radeon HD 6200 series Graphics                                                 supported      0     1     4.2    ATI Radeon HD 6200
+ATI Technologies Inc. AMD Radeon HD 6250                                                                 supported      0     1     4.2    ATI Radeon HD 6200
+ATI Technologies Inc. AMD Radeon HD 6250 Graphics                                                        supported      0     1     4.2    ATI Radeon HD 6200
+ATI Technologies Inc. AMD Radeon HD 6250M                                                                supported      3     0     4.2    ATI Radeon HD 6200D/G/M
+ATI Technologies Inc. AMD Radeon HD 6290                                                                 supported      0     1     4.2    ATI Radeon HD 6200
+ATI Technologies Inc. AMD Radeon HD 6290 Graphics                                                        supported      0     1     4.2    ATI Radeon HD 6200
+ATI Technologies Inc. AMD Radeon HD 6290M                                                                supported      3     0     4.2    ATI Radeon HD 6200D/G/M
+ATI Technologies Inc. AMD Radeon HD 6300 series Graphics                                                 supported      1     1     4.2    ATI Radeon HD 6300
+ATI Technologies Inc. AMD Radeon HD 6300M Series                                                         supported      3     1     4.2    ATI Radeon HD 6300D/G/M
+ATI Technologies Inc. AMD Radeon HD 6310                                                                 supported      1     1     4.2    ATI Radeon HD 6300
+ATI Technologies Inc. AMD Radeon HD 6310 Graphics                                                        supported      1     1     4.2    ATI Radeon HD 6300
+ATI Technologies Inc. AMD Radeon HD 6310 Graphics (Engineering Sample - WDDM v1.20)                      supported      1     1     4.2    ATI Radeon HD 6300
+ATI Technologies Inc. AMD Radeon HD 6310 Graphics (Microsoft Corporation - WDDM v1.3)                    supported      1     1     4.2    ATI Radeon HD 6300
+ATI Technologies Inc. AMD Radeon HD 6310 Graphics (Microsoft Corporation- WDDM v1.20)                    supported      1     1     4.2    ATI Radeon HD 6300
+ATI Technologies Inc. AMD Radeon HD 6310M                                                                supported      3     1     4.2    ATI Radeon HD 6300D/G/M
+ATI Technologies Inc. AMD Radeon HD 6320                                                                 supported      1     1     4.2    ATI Radeon HD 6300
+ATI Technologies Inc. AMD Radeon HD 6320  Graphics                                                       supported      1     1     4.2    ATI Radeon HD 6300
+ATI Technologies Inc. AMD Radeon HD 6320 Graphic                                                         supported      1     1     4.2    ATI Radeon HD 6300
+ATI Technologies Inc. AMD Radeon HD 6320 Graphics                                                        supported      1     1     4.2    ATI Radeon HD 6300
+ATI Technologies Inc. AMD Radeon HD 6320 Graphics (Microsoft Corporation - WDDM v1.20)                   supported      1     1     4.2    ATI Radeon HD 6300
+ATI Technologies Inc. AMD Radeon HD 6320 series Graphics                                                 supported      1     1     4.2    ATI Radeon HD 6300
+ATI Technologies Inc. AMD Radeon HD 6320M                                                                supported      3     1     4.2    ATI Radeon HD 6300D/G/M
+ATI Technologies Inc. AMD Radeon HD 6330M                                                                supported      3     1     4.2    ATI Radeon HD 6300D/G/M
+ATI Technologies Inc. AMD Radeon HD 6350                                                                 supported      1     1     4.2    ATI Radeon HD 6300
+ATI Technologies Inc. AMD Radeon HD 6370D                                                                supported      3     1     4.2    ATI Radeon HD 6300D/G/M
+ATI Technologies Inc. AMD Radeon HD 6370M                                                                supported      3     1     4.2    ATI Radeon HD 6300D/G/M
+ATI Technologies Inc. AMD Radeon HD 6380G                                                                supported      3     1     4.2    ATI Radeon HD 6300D/G/M
+ATI Technologies Inc. AMD Radeon HD 6400 Series                                                          supported      3     1     4.2    ATI Radeon HD 6400
+ATI Technologies Inc. AMD Radeon HD 6400M Series                                                         supported      3     0     4.2    ATI Radeon HD 6400D/G/M
+ATI Technologies Inc. AMD Radeon HD 6410D                                                                supported      3     0     4.2    ATI Radeon HD 6400D/G/M
+ATI Technologies Inc. AMD Radeon HD 6410D Graphics                                                       supported      3     0     4.2    ATI Radeon HD 6400D/G/M
+ATI Technologies Inc. AMD Radeon HD 6450                                                                 supported      3     1     4.2    ATI Radeon HD 6400
+ATI Technologies Inc. AMD Radeon HD 6450 (Microsoft Corporation - WDDM v1.2)                             supported      3     1     4.2    ATI Radeon HD 6400
+ATI Technologies Inc. AMD Radeon HD 6450 Graphics                                                        supported      3     1     4.2    ATI Radeon HD 6400
+ATI Technologies Inc. AMD Radeon HD 6450A                                                                supported      3     1     4.2    ATI Radeon HD 6400
+ATI Technologies Inc. AMD Radeon HD 6450A Graphics                                                       supported      3     1     4.2    ATI Radeon HD 6400
+ATI Technologies Inc. AMD Radeon HD 6450M                                                                supported      3     0     4.2    ATI Radeon HD 6400D/G/M
+ATI Technologies Inc. AMD Radeon HD 6470M                                                                supported      3     0     4.2    ATI Radeon HD 6400D/G/M
+ATI Technologies Inc. AMD Radeon HD 6470M/7400M Series                                                   supported      3     0     4.2    ATI Radeon HD 6400D/G/M
+ATI Technologies Inc. AMD Radeon HD 6480G                                                                supported      3     0     4.2    ATI Radeon HD 6400D/G/M
+ATI Technologies Inc. AMD Radeon HD 6480M                                                                supported      3     0     4.2    ATI Radeon HD 6400D/G/M
+ATI Technologies Inc. AMD Radeon HD 6490M                                                                supported      3     0     4.2    ATI Radeon HD 6400D/G/M
+ATI Technologies Inc. AMD Radeon HD 6500 Series                                                          supported      3     1     4.2    ATI Radeon HD 6500
+ATI Technologies Inc. AMD Radeon HD 6500 series graphics                                                 supported      3     1     4.2    ATI Radeon HD 6500
+ATI Technologies Inc. AMD Radeon HD 6500M Series                                                         supported      4     1     4.2    ATI Radeon HD 6500D/G/M
+ATI Technologies Inc. AMD Radeon HD 6500M/5600/5700 Series                                               supported      4     1     4.2    ATI Radeon HD 6500D/G/M
+ATI Technologies Inc. AMD Radeon HD 6510 Series                                                          supported      3     1     4.2    ATI Radeon HD 6500
+ATI Technologies Inc. AMD Radeon HD 6520G                                                                supported      4     1     4.2    ATI Radeon HD 6500D/G/M
+ATI Technologies Inc. AMD Radeon HD 6530D                                                                supported      4     1     4.2    ATI Radeon HD 6500D/G/M
+ATI Technologies Inc. AMD Radeon HD 6530D Graphics                                                       supported      4     1     4.2    ATI Radeon HD 6500D/G/M
+ATI Technologies Inc. AMD Radeon HD 6530M                                                                supported      4     1     4.2    ATI Radeon HD 6500D/G/M
+ATI Technologies Inc. AMD Radeon HD 6550A                                                                supported      3     1     4.2    ATI Radeon HD 6500
+ATI Technologies Inc. AMD Radeon HD 6550D                                                                supported      4     1     4.2    ATI Radeon HD 6500D/G/M
+ATI Technologies Inc. AMD Radeon HD 6550D Graphics                                                       supported      4     1     4.2    ATI Radeon HD 6500D/G/M
+ATI Technologies Inc. AMD Radeon HD 6550M                                                                supported      4     1     4.2    ATI Radeon HD 6500D/G/M
+ATI Technologies Inc. AMD Radeon HD 6570                                                                 supported      3     1     4.2    ATI Radeon HD 6500
+ATI Technologies Inc. AMD Radeon HD 6570 (Microsoft Corporation - WDDM v1.2)                             supported      3     1     4.2    ATI Radeon HD 6500
+ATI Technologies Inc. AMD Radeon HD 6570 (Microsoft Corporation - WDDM v1.20)                            supported      3     1     4.2    ATI Radeon HD 6500
+ATI Technologies Inc. AMD Radeon HD 6570M                                                                supported      4     1     4.2    ATI Radeon HD 6500D/G/M
+ATI Technologies Inc. AMD Radeon HD 6570M/5700 Series                                                    supported      4     1     4.2    ATI Radeon HD 6500D/G/M
+ATI Technologies Inc. AMD Radeon HD 6570M/5730                                                           supported      4     1     4.2    ATI Radeon HD 6500D/G/M
+ATI Technologies Inc. AMD Radeon HD 6600 Series                                                          supported      3     1     4.2    ATI Radeon HD 6600
+ATI Technologies Inc. AMD Radeon HD 6600M Series                                                         supported      4     0     4.2    ATI Radeon HD 6600D/G/M
+ATI Technologies Inc. AMD Radeon HD 6610M Graphics                                                       supported      4     0     4.2    ATI Radeon HD 6600D/G/M
+ATI Technologies Inc. AMD Radeon HD 6620G                                                                supported      4     0     4.2    ATI Radeon HD 6600D/G/M
+ATI Technologies Inc. AMD Radeon HD 6625M Graphics                                                       supported      4     0     4.2    ATI Radeon HD 6600D/G/M
+ATI Technologies Inc. AMD Radeon HD 6630M                                                                supported      4     0     4.2    ATI Radeon HD 6600D/G/M
+ATI Technologies Inc. AMD Radeon HD 6650A Graphics                                                       supported      3     1     4.2    ATI Radeon HD 6600
+ATI Technologies Inc. AMD Radeon HD 6650M                                                                supported      4     0     4.2    ATI Radeon HD 6600D/G/M
+ATI Technologies Inc. AMD Radeon HD 6670                                                                 supported      3     1     4.2    ATI Radeon HD 6600
+ATI Technologies Inc. AMD Radeon HD 6670 (Microsoft Corporation - WDDM v1.2)                             supported      3     1     4.2    ATI Radeon HD 6600
+ATI Technologies Inc. AMD Radeon HD 6670 (Microsoft Corporation - WDDM v1.20)                            supported      3     1     4.2    ATI Radeon HD 6600
+ATI Technologies Inc. AMD Radeon HD 6700 Series                                                          supported      3     1     4.2    ATI Radeon HD 6700
+ATI Technologies Inc. AMD Radeon HD 6700 series                                                          supported      3     1     4.2    ATI Radeon HD 6700
+ATI Technologies Inc. AMD Radeon HD 6700M Series                                                         supported      4     0     4.2    ATI Radeon HD 6700D/G/M
+ATI Technologies Inc. AMD Radeon HD 6700M Series (Microsoft Corporation - WDDM v1.20)                    supported      4     0     4.2    ATI Radeon HD 6700D/G/M
+ATI Technologies Inc. AMD Radeon HD 6700M/7700M/7900M Series                                             supported      4     0     4.2    ATI Radeon HD 6700D/G/M
+ATI Technologies Inc. AMD Radeon HD 6730M                                                                supported      4     0     4.2    ATI Radeon HD 6700D/G/M
+ATI Technologies Inc. AMD Radeon HD 6750                                                                 supported      3     1     4.2    ATI Radeon HD 6700
+ATI Technologies Inc. AMD Radeon HD 6750M                                                                supported      4     0     4.2    ATI Radeon HD 6700D/G/M
+ATI Technologies Inc. AMD Radeon HD 6770                                                                 supported      3     1     4.2    ATI Radeon HD 6700
+ATI Technologies Inc. AMD Radeon HD 6770M                                                                supported      4     0     4.2    ATI Radeon HD 6700D/G/M
+ATI Technologies Inc. AMD Radeon HD 6770M OpenGL Engine                                                  supported      4     0     4.2    ATI Radeon HD 6700D/G/M
+ATI Technologies Inc. AMD Radeon HD 6800 Series                                                          supported      4     1     4.2    ATI Radeon HD 6800
+ATI Technologies Inc. AMD Radeon HD 6800 Series (Engineering Sample - WDDM v1.20)                        supported      4     1     4.2    ATI Radeon HD 6800
+ATI Technologies Inc. AMD Radeon HD 6800 Series (Microsoft Corporation - WDDM v1.2)                      supported      4     1     4.2    ATI Radeon HD 6800
+ATI Technologies Inc. AMD Radeon HD 6800 Series (Microsoft Corporation - WDDM v1.20)                     supported      4     1     4.2    ATI Radeon HD 6800
+ATI Technologies Inc. AMD Radeon HD 6800M Series                                                         supported      4     0     4.2    ATI Radeon HD 6800D/G/M
+ATI Technologies Inc. AMD Radeon HD 6850                                                                 supported      4     1     4.2    ATI Radeon HD 6800
+ATI Technologies Inc. AMD Radeon HD 6850 X2                                                              supported      4     1     4.2    ATI Radeon HD 6800
+ATI Technologies Inc. AMD Radeon HD 6850M                                                                supported      4     0     4.2    ATI Radeon HD 6800D/G/M
+ATI Technologies Inc. AMD Radeon HD 6870                                                                 supported      4     1     4.2    ATI Radeon HD 6800
+ATI Technologies Inc. AMD Radeon HD 6870M                                                                supported      4     0     4.2    ATI Radeon HD 6800D/G/M
+ATI Technologies Inc. AMD Radeon HD 6900 Series                                                          supported      5     1     4.2    ATI Radeon HD 6900
+ATI Technologies Inc. AMD Radeon HD 6900 Series (Microsoft Corporation - WDDM v1.2)                      supported      5     1     4.2    ATI Radeon HD 6900
+ATI Technologies Inc. AMD Radeon HD 6900M Series                                                         supported      4     0     4.2    ATI Radeon HD 6900D/G/M
+ATI Technologies Inc. AMD Radeon HD 6970                                                                 supported      5     1     4.2    ATI Radeon HD 6900
+ATI Technologies Inc. AMD Radeon HD 6970M                                                                supported      4     0     4.2    ATI Radeon HD 6900D/G/M
+ATI Technologies Inc. AMD Radeon HD 6990                                                                 supported      5     1     4.2    ATI Radeon HD 6900
+ATI Technologies Inc. AMD Radeon HD 6990M                                                                supported      4     0     4.2    ATI Radeon HD 6900D/G/M
+ATI Technologies Inc. AMD Radeon HD 7000 series                                                          supported      3     1     4.2    ATI Radeon HD 7000 Series
+ATI Technologies Inc. AMD Radeon HD 7290 Graphics                                                        supported      2     0     4.2    ATI Radeon HD 7200
+ATI Technologies Inc. AMD Radeon HD 7300 Series (Microsoft Corporation - WDDM v1.2)                      supported      2     0     4.2    ATI Radeon HD 7300
+ATI Technologies Inc. AMD Radeon HD 7300 Series Graphics                                                 supported      2     0     4.2    ATI Radeon HD 7300
+ATI Technologies Inc. AMD Radeon HD 7310                                                                 supported      2     0     4.2    ATI Radeon HD 7300
+ATI Technologies Inc. AMD Radeon HD 7310  Graphics                                                       supported      2     0     4.2    ATI Radeon HD 7300
+ATI Technologies Inc. AMD Radeon HD 7310 Graphics                                                        supported      2     0     4.2    ATI Radeon HD 7300
+ATI Technologies Inc. AMD Radeon HD 7310 Graphics (Microsoft Corporation - WDDM v1.2)                    supported      2     0     4.2    ATI Radeon HD 7300
+ATI Technologies Inc. AMD Radeon HD 7310G                                                                supported      3     0     4.2    ATI Radeon HD 7300D/G/M
+ATI Technologies Inc. AMD Radeon HD 7310M                                                                supported      3     0     4.2    ATI Radeon HD 7300D/G/M
+ATI Technologies Inc. AMD Radeon HD 7340                                                                 supported      2     0     4.2    ATI Radeon HD 7300
+ATI Technologies Inc. AMD Radeon HD 7340 Graphics                                                        supported      2     0     4.2    ATI Radeon HD 7300
+ATI Technologies Inc. AMD Radeon HD 7340G                                                                supported      3     0     4.2    ATI Radeon HD 7300D/G/M
+ATI Technologies Inc. AMD Radeon HD 7340M                                                                supported      3     0     4.2    ATI Radeon HD 7300D/G/M
+ATI Technologies Inc. AMD Radeon HD 7350                                                                 supported      2     0     4.2    ATI Radeon HD 7300
+ATI Technologies Inc. AMD Radeon HD 7350 Graphics                                                        supported      2     0     4.2    ATI Radeon HD 7300
+ATI Technologies Inc. AMD Radeon HD 7370M                                                                supported      3     0     4.2    ATI Radeon HD 7300D/G/M
+ATI Technologies Inc. AMD Radeon HD 7400 Series                                                          supported      2     0     4.2    ATI Radeon HD 7400
+ATI Technologies Inc. AMD Radeon HD 7400 Series (Microsoft Corporation - WDDM v1.2)                      supported      2     0     4.2    ATI Radeon HD 7400
+ATI Technologies Inc. AMD Radeon HD 7400G                                                                supported      3     0     4.2    ATI Radeon HD 7400D/G/M
+ATI Technologies Inc. AMD Radeon HD 7400M Series                                                         supported      3     0     4.2    ATI Radeon HD 7400D/G/M
+ATI Technologies Inc. AMD Radeon HD 7400M Series (Microsoft Corporation - WDDM v1.20)                    supported      3     0     4.2    ATI Radeon HD 7400D/G/M
+ATI Technologies Inc. AMD Radeon HD 7410M                                                                supported      3     0     4.2    ATI Radeon HD 7400D/G/M
+ATI Technologies Inc. AMD Radeon HD 7420G                                                                supported      3     0     4.2    ATI Radeon HD 7400D/G/M
+ATI Technologies Inc. AMD Radeon HD 7450                                                                 supported      2     0     4.2    ATI Radeon HD 7400
+ATI Technologies Inc. AMD Radeon HD 7450 Graphics                                                        supported      2     0     4.2    ATI Radeon HD 7400
+ATI Technologies Inc. AMD Radeon HD 7450A Graphics                                                       supported      2     0     4.2    ATI Radeon HD 7400
+ATI Technologies Inc. AMD Radeon HD 7450M                                                                supported      3     0     4.2    ATI Radeon HD 7400D/G/M
+ATI Technologies Inc. AMD Radeon HD 7470                                                                 supported      2     0     4.2    ATI Radeon HD 7400
+ATI Technologies Inc. AMD Radeon HD 7470 Series                                                          supported      2     0     4.2    ATI Radeon HD 7400
+ATI Technologies Inc. AMD Radeon HD 7470M                                                                supported      3     0     4.2    ATI Radeon HD 7400D/G/M
+ATI Technologies Inc. AMD Radeon HD 7480D                                                                supported      3     0     4.2    ATI Radeon HD 7400D/G/M
+ATI Technologies Inc. AMD Radeon HD 7500 Series                                                          supported      3     1     4.2    ATI Radeon HD 7500
+ATI Technologies Inc. AMD Radeon HD 7500 Series (Microsoft Corporation - WDDM v1.2)                      supported      3     1     4.2    ATI Radeon HD 7500
+ATI Technologies Inc. AMD Radeon HD 7500 Series (Microsoft Corporation - WDDM v1.20)                     supported      3     1     4.2    ATI Radeon HD 7500
+ATI Technologies Inc. AMD Radeon HD 7500/7600 Series                                                     supported      3     1     4.2    ATI Radeon HD 7500
+ATI Technologies Inc. AMD Radeon HD 7500G                                                                supported      4     0     4.2    ATI Radeon HD 7500D/G/M
+ATI Technologies Inc. AMD Radeon HD 7500G + 7500M/7600M Dual Graphics                                    supported      4     0     4.2    ATI Radeon HD 7500D/G/M
+ATI Technologies Inc. AMD Radeon HD 7500M/7600M Series                                                   supported      4     0     4.2    ATI Radeon HD 7500D/G/M
+ATI Technologies Inc. AMD Radeon HD 7510                                                                 supported      3     1     4.2    ATI Radeon HD 7500
+ATI Technologies Inc. AMD Radeon HD 7520G                                                                supported      4     0     4.2    ATI Radeon HD 7500D/G/M
+ATI Technologies Inc. AMD Radeon HD 7520G + 6400M Dual Graphics                                          supported      4     0     4.2    ATI Radeon HD 7500D/G/M
+ATI Technologies Inc. AMD Radeon HD 7520G + 7470M Dual Graphics                                          supported      4     0     4.2    ATI Radeon HD 7500D/G/M
+ATI Technologies Inc. AMD Radeon HD 7520G + 7500/7600 Dual Graphics                                      supported      4     0     4.2    ATI Radeon HD 7500D/G/M
+ATI Technologies Inc. AMD Radeon HD 7520G + 7600M Dual Graphics                                          supported      4     0     4.2    ATI Radeon HD 7500D/G/M
+ATI Technologies Inc. AMD Radeon HD 7520G + 7610M Dual Graphics                                          supported      4     0     4.2    ATI Radeon HD 7500D/G/M
+ATI Technologies Inc. AMD Radeon HD 7520G + 7670M Dual Graphics                                          supported      4     0     4.2    ATI Radeon HD 7500D/G/M
+ATI Technologies Inc. AMD Radeon HD 7540D                                                                supported      4     0     4.2    ATI Radeon HD 7500D/G/M
+ATI Technologies Inc. AMD Radeon HD 7540D + 7450 Dual Graphics                                           supported      4     0     4.2    ATI Radeon HD 7500D/G/M
+ATI Technologies Inc. AMD Radeon HD 7550M                                                                supported      4     0     4.2    ATI Radeon HD 7500D/G/M
+ATI Technologies Inc. AMD Radeon HD 7550M/7650M Graphics                                                 supported      4     0     4.2    ATI Radeon HD 7500D/G/M
+ATI Technologies Inc. AMD Radeon HD 7560D                                                                supported      4     0     4.2    ATI Radeon HD 7500D/G/M
+ATI Technologies Inc. AMD Radeon HD 7560D (Microsoft Corporation - WDDM v1.20)                           supported      4     0     4.2    ATI Radeon HD 7500D/G/M
+ATI Technologies Inc. AMD Radeon HD 7560D + 6570 Dual Graphics                                           supported      4     0     4.2    ATI Radeon HD 7500D/G/M
+ATI Technologies Inc. AMD Radeon HD 7560D + 6670 Dual Graphics                                           supported      4     0     4.2    ATI Radeon HD 7500D/G/M
+ATI Technologies Inc. AMD Radeon HD 7560D + 7560D Dual Graphics                                          supported      4     0     4.2    ATI Radeon HD 7500D/G/M
+ATI Technologies Inc. AMD Radeon HD 7560D + 7600 Dual Graphics                                           supported      4     0     4.2    ATI Radeon HD 7500D/G/M
+ATI Technologies Inc. AMD Radeon HD 7560D + 7670 Dual Graphics                                           supported      4     0     4.2    ATI Radeon HD 7500D/G/M
+ATI Technologies Inc. AMD Radeon HD 7570                                                                 supported      3     1     4.2    ATI Radeon HD 7500
+ATI Technologies Inc. AMD Radeon HD 7570 Graphics                                                        supported      3     1     4.2    ATI Radeon HD 7500
+ATI Technologies Inc. AMD Radeon HD 7570 Series                                                          supported      3     1     4.2    ATI Radeon HD 7500
+ATI Technologies Inc. AMD Radeon HD 7570M                                                                supported      4     0     4.2    ATI Radeon HD 7500D/G/M
+ATI Technologies Inc. AMD Radeon HD 7570M/HD 7670M Graphics                                              supported      4     0     4.2    ATI Radeon HD 7500D/G/M
+ATI Technologies Inc. AMD Radeon HD 7580D                                                                supported      4     0     4.2    ATI Radeon HD 7500D/G/M
+ATI Technologies Inc. AMD Radeon HD 7600 Series (Microsoft Corporation - WDDM v1.20)                     supported      3     0     4.2    ATI Radeon HD 7600
+ATI Technologies Inc. AMD Radeon HD 7600G                                                                supported      4     0     4.2    ATI Radeon HD 7600D/G/M
+ATI Technologies Inc. AMD Radeon HD 7600G + 7500M/7600M Dual Graphics                                    supported      4     0     4.2    ATI Radeon HD 7600D/G/M
+ATI Technologies Inc. AMD Radeon HD 7600G + 7550M Dual Graphics                                          supported      4     0     4.2    ATI Radeon HD 7600D/G/M
+ATI Technologies Inc. AMD Radeon HD 7600M + 7600M Dual Graphics                                          supported      4     0     4.2    ATI Radeon HD 7600D/G/M
+ATI Technologies Inc. AMD Radeon HD 7600M Series                                                         supported      4     0     4.2    ATI Radeon HD 7600D/G/M
+ATI Technologies Inc. AMD Radeon HD 7610M                                                                supported      4     0     4.2    ATI Radeon HD 7600D/G/M
+ATI Technologies Inc. AMD Radeon HD 7620G                                                                supported      4     0     4.2    ATI Radeon HD 7600D/G/M
+ATI Technologies Inc. AMD Radeon HD 7640G                                                                supported      4     0     4.2    ATI Radeon HD 7600D/G/M
+ATI Technologies Inc. AMD Radeon HD 7640G + 6400M Dual Graphics                                          supported      4     0     4.2    ATI Radeon HD 7600D/G/M
+ATI Technologies Inc. AMD Radeon HD 7640G + 7450M Dual Graphics                                          supported      4     0     4.2    ATI Radeon HD 7600D/G/M
+ATI Technologies Inc. AMD Radeon HD 7640G + 7470M Dual Graphics                                          supported      4     0     4.2    ATI Radeon HD 7600D/G/M
+ATI Technologies Inc. AMD Radeon HD 7640G + 7500/7600 Dual Graphics                                      supported      4     0     4.2    ATI Radeon HD 7600D/G/M
+ATI Technologies Inc. AMD Radeon HD 7640G + 7500M/7600M Dual Graphics                                    supported      4     0     4.2    ATI Radeon HD 7600D/G/M
+ATI Technologies Inc. AMD Radeon HD 7640G + 7600M Dual Graphics                                          supported      4     0     4.2    ATI Radeon HD 7600D/G/M
+ATI Technologies Inc. AMD Radeon HD 7640G + 7610M Dual Graphics                                          supported      4     0     4.2    ATI Radeon HD 7600D/G/M
+ATI Technologies Inc. AMD Radeon HD 7640G + 7670M Dual Graphics                                          supported      4     0     4.2    ATI Radeon HD 7600D/G/M
+ATI Technologies Inc. AMD Radeon HD 7650A                                                                supported      3     0     4.2    ATI Radeon HD 7600
+ATI Technologies Inc. AMD Radeon HD 7650A Graphics                                                       supported      3     0     4.2    ATI Radeon HD 7600
+ATI Technologies Inc. AMD Radeon HD 7650M                                                                supported      4     0     4.2    ATI Radeon HD 7600D/G/M
+ATI Technologies Inc. AMD Radeon HD 7650M Series                                                         supported      4     0     4.2    ATI Radeon HD 7600D/G/M
+ATI Technologies Inc. AMD Radeon HD 7660D                                                                supported      4     0     4.2    ATI Radeon HD 7600D/G/M
+ATI Technologies Inc. AMD Radeon HD 7660D + 6570 Dual Graphics                                           supported      4     0     4.2    ATI Radeon HD 7600D/G/M
+ATI Technologies Inc. AMD Radeon HD 7660D + 6670 Dual Graphics                                           supported      4     0     4.2    ATI Radeon HD 7600D/G/M
+ATI Technologies Inc. AMD Radeon HD 7660D + 7670 Dual Graphics                                           supported      4     0     4.2    ATI Radeon HD 7600D/G/M
+ATI Technologies Inc. AMD Radeon HD 7660D + 7700 Dual Graphics                                           supported      4     0     4.2    ATI Radeon HD 7600D/G/M
+ATI Technologies Inc. AMD Radeon HD 7660G                                                                supported      4     0     4.2    ATI Radeon HD 7600D/G/M
+ATI Technologies Inc. AMD Radeon HD 7660G + 6400M Dual Graphics                                          supported      4     0     4.2    ATI Radeon HD 7600D/G/M
+ATI Technologies Inc. AMD Radeon HD 7660G + 7400M Dual Graphics                                          supported      4     0     4.2    ATI Radeon HD 7600D/G/M
+ATI Technologies Inc. AMD Radeon HD 7660G + 7470M Dual Graphics                                          supported      4     0     4.2    ATI Radeon HD 7600D/G/M
+ATI Technologies Inc. AMD Radeon HD 7660G + 7500/7600 Dual Graphics                                      supported      4     0     4.2    ATI Radeon HD 7600D/G/M
+ATI Technologies Inc. AMD Radeon HD 7660G + 7600M Dual Graphics                                          supported      4     0     4.2    ATI Radeon HD 7600D/G/M
+ATI Technologies Inc. AMD Radeon HD 7660G + 7610M Dual Graphics                                          supported      4     0     4.2    ATI Radeon HD 7600D/G/M
+ATI Technologies Inc. AMD Radeon HD 7660G + 7670M Dual Graphics                                          supported      4     0     4.2    ATI Radeon HD 7600D/G/M
+ATI Technologies Inc. AMD Radeon HD 7660G + 7700M Dual Graphics                                          supported      4     0     4.2    ATI Radeon HD 7600D/G/M
+ATI Technologies Inc. AMD Radeon HD 7670                                                                 supported      3     0     4.2    ATI Radeon HD 7600
+ATI Technologies Inc. AMD Radeon HD 7670M                                                                supported      4     0     4.2    ATI Radeon HD 7600D/G/M
+ATI Technologies Inc. AMD Radeon HD 7690M                                                                supported      4     0     4.2    ATI Radeon HD 7600D/G/M
+ATI Technologies Inc. AMD Radeon HD 7700 Series                                                          supported      4     1     4.2    ATI Radeon HD 7700
+ATI Technologies Inc. AMD Radeon HD 7700 Series (Microsoft Corporation - WDDM v1.3)                      supported      4     1     4.2    ATI Radeon HD 7700
+ATI Technologies Inc. AMD Radeon HD 7700M Series                                                         supported      4     0     4.2    ATI Radeon HD 7700D/G/M
+ATI Technologies Inc. AMD Radeon HD 7730M                                                                supported      4     0     4.2    ATI Radeon HD 7700D/G/M
+ATI Technologies Inc. AMD Radeon HD 7770                                                                 supported      4     1     4.2    ATI Radeon HD 7700
+ATI Technologies Inc. AMD Radeon HD 7770 GHz Edition                                                     supported      4     1     4.2    ATI Radeon HD 7700
+ATI Technologies Inc. AMD Radeon HD 7800 Series                                                          supported      5     1     4.2    ATI Radeon HD 7800
+ATI Technologies Inc. AMD Radeon HD 7800 Series (Engineering Sample - WDDM v1.20)                        supported      5     1     4.2    ATI Radeon HD 7800
+ATI Technologies Inc. AMD Radeon HD 7800 Series (Microsoft Corporation - WDDM v1.20)                     supported      5     1     4.2    ATI Radeon HD 7800
+ATI Technologies Inc. AMD Radeon HD 7800 Series (Microsoft Corporation - WDDM v1.3)                      supported      5     1     4.2    ATI Radeon HD 7800
+ATI Technologies Inc. AMD Radeon HD 7800M Series                                                         supported      4     0     4.2    ATI Radeon HD 7800D/G/M
+ATI Technologies Inc. AMD Radeon HD 7870                                                                 supported      5     1     4.2    ATI Radeon HD 7800
+ATI Technologies Inc. AMD Radeon HD 7870M                                                                supported      4     0     4.2    ATI Radeon HD 7800D/G/M
+ATI Technologies Inc. AMD Radeon HD 7900 Series                                                          supported      5     1     4.2    ATI Radeon HD 7900
+ATI Technologies Inc. AMD Radeon HD 7900 Series (Microsoft Corporation - WDDM v1.3)                      supported      5     1     4.2    ATI Radeon HD 7900
+ATI Technologies Inc. AMD Radeon HD 7950                                                                 supported      5     1     4.2    ATI Radeon HD 7900
+ATI Technologies Inc. AMD Radeon HD 7970                                                                 supported      5     1     4.2    ATI Radeon HD 7900
+ATI Technologies Inc. AMD Radeon HD 7970M                                                                supported      4     0     4.2    ATI Radeon HD 7900D/G/M
+ATI Technologies Inc. AMD Radeon HD 8210                                                                 supported      2     0     4.2    ATI Radeon HD 8200
+ATI Technologies Inc. AMD Radeon HD 8240                                                                 supported      2     0     4.2    ATI Radeon HD 8200
+ATI Technologies Inc. AMD Radeon HD 8250                                                                 supported      2     0     4.2    ATI Radeon HD 8200
+ATI Technologies Inc. AMD Radeon HD 8280G                                                                supported      3     0     4.2    ATI Radeon HD 8200D/G/M
+ATI Technologies Inc. AMD Radeon HD 8330                                                                 supported      2     0     4.2    ATI Radeon HD 8300 (OEM)
+ATI Technologies Inc. AMD Radeon HD 8350                                                                 supported      2     0     4.2    ATI Radeon HD 8300 (OEM)
+ATI Technologies Inc. AMD Radeon HD 8350G                                                                supported      3     0     4.2    ATI Radeon HD 8300D/G/M
+ATI Technologies Inc. AMD Radeon HD 8400                                                                 supported      2     0     4.2    ATI Radeon HD 8400 (OEM)
+ATI Technologies Inc. AMD Radeon HD 8450                                                                 supported      2     0     4.2    ATI Radeon HD 8400 (OEM)
+ATI Technologies Inc. AMD Radeon HD 8450G                                                                supported      4     0     4.2    ATI Radeon HD 8400D/G/M
+ATI Technologies Inc. AMD Radeon HD 8470                                                                 supported      2     0     4.2    ATI Radeon HD 8400 (OEM)
+ATI Technologies Inc. AMD Radeon HD 8470D                                                                supported      4     0     4.2    ATI Radeon HD 8400D/G/M
+ATI Technologies Inc. AMD Radeon HD 8550G                                                                supported      4     0     4.2    ATI Radeon HD 8500D/G/M
+ATI Technologies Inc. AMD Radeon HD 8570                                                                 supported      3     1     4.2    ATI Radeon HD 8500 (OEM)
+ATI Technologies Inc. AMD Radeon HD 8570D                                                                supported      4     0     4.2    ATI Radeon HD 8500D/G/M
+ATI Technologies Inc. AMD Radeon HD 8610G                                                                supported      4     0     4.2    ATI Radeon HD 8600D/G/M
+ATI Technologies Inc. AMD Radeon HD 8650G                                                                supported      4     0     4.2    ATI Radeon HD 8600D/G/M
+ATI Technologies Inc. AMD Radeon HD 8670D                                                                supported      4     0     4.2    ATI Radeon HD 8600D/G/M
+ATI Technologies Inc. AMD Radeon HD 8670D + 6670 Dual Graphics                                           supported      4     0     4.2    ATI Radeon HD 8600D/G/M
+ATI Technologies Inc. AMD Radeon HD 8700M Series                                                         supported      4     0     4.2    ATI Radeon HD 8700D/G/M
+ATI Technologies Inc. AMD Radeon HD 8730M                                                                supported      4     0     4.2    ATI Radeon HD 8700D/G/M
+ATI Technologies Inc. AMD Radeon HD 8750M                                                                supported      4     0     4.2    ATI Radeon HD 8700D/G/M
+ATI Technologies Inc. AMD Radeon HD 8760                                                                 supported      4     1     4.2    ATI Radeon HD 8700 (OEM)
+ATI Technologies Inc. AMD Radeon HD 8800M Series                                                         supported      4     0     4.2    ATI Radeon HD 8800D/G/M
+ATI Technologies Inc. AMD Radeon HD 8900 Series (OEM)                                                    supported      5     1     4.2    ATI Radeon HD 8900 (OEM)
+ATI Technologies Inc. AMD Radeon HD 8950                                                                 supported      5     1     4.2    ATI Radeon HD 8900 (OEM)
+ATI Technologies Inc. AMD Radeon HD HD7850M                                                              supported      4     0     4.2    ATI Radeon HD 7800D/G/M
+ATI Technologies Inc. AMD Radeon HD6370D Graphics                                                        supported      3     1     4.2    ATI Radeon HD 6300D/G/M
+ATI Technologies Inc. AMD Radeon HD7610M                                                                 supported      4     0     4.2    ATI Radeon HD 7600D/G/M
+ATI Technologies Inc. AMD Radeon HD7700 Series                                                           supported      4     1     4.2    ATI Radeon HD 7700
+ATI Technologies Inc. AMD Radeon HD7770                                                                  supported      4     1     4.2    ATI Radeon HD 7700
+ATI Technologies Inc. AMD Radeon HD7770 GHz Edition                                                      supported      4     1     4.2    ATI Radeon HD 7700
+ATI Technologies Inc. AMD Radeon HD8350                                                                  supported      2     0     4.2    ATI Radeon HD 8300 (OEM)
+ATI Technologies Inc. AMD Radeon(TM) HD 6380G                                                            supported      3     1     4.2    ATI Radeon HD 6300D/G/M
+ATI Technologies Inc. AMD Radeon(TM) HD 6470M                                                            supported      3     0     4.2    ATI Radeon HD 6400D/G/M
+ATI Technologies Inc. AMD Radeon(TM) HD 6480G                                                            supported      3     0     4.2    ATI Radeon HD 6400D/G/M
+ATI Technologies Inc. AMD Radeon(TM) HD 6480G (Microsoft Corporation - WDDM v1.20)                       supported      3     0     4.2    ATI Radeon HD 6400D/G/M
+ATI Technologies Inc. AMD Radeon(TM) HD 6520G                                                            supported      4     1     4.2    ATI Radeon HD 6500D/G/M
+ATI Technologies Inc. AMD Radeon(TM) HD 6620G                                                            supported      4     0     4.2    ATI Radeon HD 6600D/G/M
+ATI Technologies Inc. AMD Radeon(TM) HD 6630M                                                            supported      4     0     4.2    ATI Radeon HD 6600D/G/M
+ATI Technologies Inc. AMD Radeon(TM) HD 6650M                                                            supported      4     0     4.2    ATI Radeon HD 6600D/G/M
+ATI Technologies Inc. AMD Radeon(TM) HD 7450                                                             supported      2     0     4.2    ATI Radeon HD 7400
+ATI Technologies Inc. AMD Radeon(TM) HD 7450A Graphics                                                   supported      2     0     4.2    ATI Radeon HD 7400
+ATI Technologies Inc. AMD Radeon(TM) HD 7650A Graphics                                                   supported      3     0     4.2    ATI Radeon HD 7600
+ATI Technologies Inc. AMD Radeon(TM) HD 7670A Graphics                                                   supported      3     0     4.2    ATI Radeon HD 7600
+ATI Technologies Inc. AMD Radeon(TM) HD 7670M                                                            supported      4     0     4.2    ATI Radeon HD 7600D/G/M
+ATI Technologies Inc. AMD Radeon(TM) HD 8350                                                             supported      2     0     4.2    ATI Radeon HD 8300 (OEM)
+ATI Technologies Inc. AMD Radeon(TM) HD8490                                                              supported      2     0     4.2    ATI Radeon HD 8400 (OEM)
+ATI Technologies Inc. AMD Radeon. HD 7350                                                                supported      2     0     4.2    ATI Radeon HD 7300
+ATI Technologies Inc. AMD Radeon. HD 7670M                                                               supported      4     0     4.2    ATI Radeon HD 7600D/G/M
+ATI Technologies Inc. AMD Radeon. HD 7730M                                                               supported      4     0     4.2    ATI Radeon HD 7700D/G/M
+ATI Technologies Inc. ASUS AH3450 Series                                                                 supported      1     1     4      ATI Radeon HD 3400
+ATI Technologies Inc. ASUS AH3650 Series                                                                 supported      3     1     4      ATI Radeon HD 3600
+ATI Technologies Inc. ASUS AH4650 Series                                                                 supported      3     1     4      ATI Radeon HD 4600
+ATI Technologies Inc. ASUS ARES                                                                          unsupported    0     0     0      ATI ARES
+ATI Technologies Inc. ASUS ARES2                                                                         unsupported    0     0     0      ATI ARES
+ATI Technologies Inc. ASUS EAH2400 Series                                                                supported      1     1     4      ATI Radeon HD 2400
+ATI Technologies Inc. ASUS EAH2600 Series                                                                supported      2     1     4      ATI Radeon HD 2600
+ATI Technologies Inc. ASUS EAH3450 Series                                                                supported      1     1     4      ATI Radeon HD 3400
+ATI Technologies Inc. ASUS EAH3650 Series                                                                supported      3     1     4      ATI Radeon HD 3600
+ATI Technologies Inc. ASUS EAH3850 Series                                                                supported      3     1     4      ATI Radeon HD 3800
+ATI Technologies Inc. ASUS EAH3870 Series                                                                supported      3     1     4      ATI Radeon HD 3800
+ATI Technologies Inc. ASUS EAH4350 series                                                                supported      2     1     4      ATI Radeon HD 4300
+ATI Technologies Inc. ASUS EAH4550 series                                                                supported      2     1     3.3    ATI Radeon HD 4500
+ATI Technologies Inc. ASUS EAH4650 series                                                                supported      3     1     4      ATI Radeon HD 4600
+ATI Technologies Inc. ASUS EAH4670 series                                                                supported      3     1     4      ATI Radeon HD 4600
+ATI Technologies Inc. ASUS EAH4770 Series                                                                supported      3     1     3.3    ATI Radeon HD 4700
+ATI Technologies Inc. ASUS EAH4770 series                                                                supported      3     1     3.3    ATI Radeon HD 4700
+ATI Technologies Inc. ASUS EAH4850 series                                                                supported      3     1     4      ATI Radeon HD 4800
+ATI Technologies Inc. ASUS EAH4870 series                                                                supported      3     1     4      ATI Radeon HD 4800
+ATI Technologies Inc. ASUS EAH4870x2                                                                     supported      3     1     4      ATI Radeon HD 4800
+ATI Technologies Inc. ASUS EAH4890                                                                       supported      3     1     4      ATI Radeon HD 4800
+ATI Technologies Inc. ASUS EAH5450 Series                                                                supported      3     1     4.2    ATI Radeon HD 5400
+ATI Technologies Inc. ASUS EAH5550 Series                                                                supported      3     1     4.2    ATI Radeon HD 5500
+ATI Technologies Inc. ASUS EAH5570 series                                                                supported      3     1     4.2    ATI Radeon HD 5500
+ATI Technologies Inc. ASUS EAH5670 Series                                                                supported      3     1     4.2    ATI Radeon HD 5600
+ATI Technologies Inc. ASUS EAH5750 Series                                                                supported      3     1     4.2    ATI Radeon HD 5700
+ATI Technologies Inc. ASUS EAH5770 Series                                                                supported      3     1     4.2    ATI Radeon HD 5700
+ATI Technologies Inc. ASUS EAH5830 Series                                                                supported      4     1     4.2    ATI Radeon HD 5800
+ATI Technologies Inc. ASUS EAH5850 Series                                                                supported      4     1     4.2    ATI Radeon HD 5800
+ATI Technologies Inc. ASUS EAH5870 Series                                                                supported      4     1     4.2    ATI Radeon HD 5800
+ATI Technologies Inc. ASUS EAH6450 Series                                                                supported      3     1     4.2    ATI Radeon HD 6400
+ATI Technologies Inc. ASUS EAH6570 Series                                                                supported      3     1     4.2    ATI Radeon HD 6500
+ATI Technologies Inc. ASUS EAH6670 Series                                                                supported      3     1     4.2    ATI Radeon HD 6600
+ATI Technologies Inc. ASUS EAH6750 Series                                                                supported      3     1     4.2    ATI Radeon HD 6700
+ATI Technologies Inc. ASUS EAH6770 Series                                                                supported      3     1     4.2    ATI Radeon HD 6700
+ATI Technologies Inc. ASUS EAH6850 Series                                                                supported      4     1     4.2    ATI Radeon HD 6800
+ATI Technologies Inc. ASUS EAH6870 Series                                                                supported      4     1     4.2    ATI Radeon HD 6800
+ATI Technologies Inc. ASUS EAH6950 Series                                                                supported      5     1     4.2    ATI Radeon HD 6900
+ATI Technologies Inc. ASUS EAH6970 Series                                                                supported      5     1     4.2    ATI Radeon HD 6900
+ATI Technologies Inc. ASUS Extreme AX300 Series                                                          supported      2     1     4      ATI Radeon HD 4300
+ATI Technologies Inc. ASUS Extreme AX300SE/T                                                             supported      2     1     4      ATI Radeon HD 4300
+ATI Technologies Inc. ASUS Extreme AX550 Series                                                          supported      3     1     4.2    ATI Radeon HD 5500
+ATI Technologies Inc. ASUS Extreme AX550 Series x86/SSE2                                                 supported      3     1     4.2    ATI Radeon HD 5500
+ATI Technologies Inc. ASUS Extreme AX600 Series                                                          supported      1     1     2.1    ATI Radeon X600
+ATI Technologies Inc. ASUS HD 7350                                                                       supported      2     0     4.2    ATI Radeon HD 7300
+ATI Technologies Inc. ASUS HD7470 Series                                                                 supported      2     0     4.2    ATI Radeon HD 7400
+ATI Technologies Inc. ASUS HD7670 Series                                                                 supported      3     0     4.2    ATI Radeon HD 7600
+ATI Technologies Inc. ASUS HD7750 Series                                                                 supported      4     1     4.2    ATI Radeon HD 7700
+ATI Technologies Inc. ASUS HD7770 Series                                                                 supported      4     1     4.2    ATI Radeon HD 7700
+ATI Technologies Inc. ASUS HD7790 Series                                                                 supported      4     1     4.2    ATI Radeon HD 7700
+ATI Technologies Inc. ASUS HD7850 Series                                                                 supported      5     1     4.2    ATI Radeon HD 7800
+ATI Technologies Inc. ASUS HD7870 Series                                                                 supported      5     1     4.2    ATI Radeon HD 7800
+ATI Technologies Inc. ASUS HD7950 Series                                                                 supported      5     1     4.2    ATI Radeon HD 7900
+ATI Technologies Inc. ASUS HD7970 Series                                                                 supported      5     1     4.2    ATI Radeon HD 7900
+ATI Technologies Inc. ASUS X1300 Series                                                                  supported      2     1     2.1    ATI Radeon X1300
+ATI Technologies Inc. ASUS X1300 Series x86/MMX/3DNow!/SSE2                                              supported      2     1     2.1    ATI Radeon X1300
+ATI Technologies Inc. ASUS X1300 Series x86/SSE2                                                         supported      2     1     2.1    ATI Radeon X1300
+ATI Technologies Inc. ASUS X1300 x86/SSE2                                                                supported      2     1     2.1    ATI Radeon X1300
+ATI Technologies Inc. ASUS X1550 Series                                                                  supported      2     1     2.1    ATI Radeon X1500
+ATI Technologies Inc. ASUS X1550 Series x86/MMX/3DNow!/SSE2                                              supported      2     1     2.1    ATI Radeon X1500
+ATI Technologies Inc. ASUS X1550 Series x86/SSE2                                                         supported      2     1     2.1    ATI Radeon X1500
+ATI Technologies Inc. ASUS X1600 Series                                                                  supported      2     1     2.1    ATI Radeon X1600
+ATI Technologies Inc. ASUS X1600 Series x86                                                              supported      2     1     2.1    ATI Radeon X1600
+ATI Technologies Inc. ASUS X1600 Series x86/MMX/3DNow!/SSE2                                              supported      2     1     2.1    ATI Radeon X1600
+ATI Technologies Inc. ASUS X1600 Series x86/SSE2                                                         supported      2     1     2.1    ATI Radeon X1600
+ATI Technologies Inc. ASUS X1650 Series                                                                  supported      2     1     2.1    ATI Radeon X1600
+ATI Technologies Inc. ASUS X1650 Series x86/MMX/3DNow!/SSE2                                              supported      2     1     2.1    ATI Radeon X1600
+ATI Technologies Inc. ASUS X1650 Series x86/SSE2                                                         supported      2     1     2.1    ATI Radeon X1600
+ATI Technologies Inc. ASUS X1950 Series x86/MMX/3DNow!/SSE2                                              supported      2     1     2.1    ATI Radeon X1900
+ATI Technologies Inc. ATI  Radeon HD 5000 Series                                                         supported      3     1     4.2    ATI Radeon HD 5000
+ATI Technologies Inc. ATI  Radeon HD 6350                                                                supported      1     1     4.2    ATI Radeon HD 6300
+ATI Technologies Inc. ATI All-in-Wonder HD                                                               supported      1     1     3.3    ATI All-in-Wonder HD
+ATI Technologies Inc. ATI Display Adapter                                                                supported      1     1     4.1    ATI Display Adapter
+ATI Technologies Inc. ATI FireGL V3100                                                                   supported      4     1     4.2    ATI FireGL
+ATI Technologies Inc. ATI FireGL V3200 Pentium 4 (SSE2)                                                  supported      4     1     4.2    ATI FireGL
+ATI Technologies Inc. ATI FireGL V3300                                                                   supported      4     1     4.2    ATI FireGL
+ATI Technologies Inc. ATI FireGL V3350                                                                   supported      4     1     4.2    ATI FireGL
+ATI Technologies Inc. ATI FireGL V3350 Pentium 4 (SSE2)                                                  supported      4     1     4.2    ATI FireGL
+ATI Technologies Inc. ATI FireGL V3400 (Microsoft Corporation - WDDM)                                    supported      4     1     4.2    ATI FireGL
+ATI Technologies Inc. ATI FireGL V3400 Pentium 4 (SSE2)                                                  supported      4     1     4.2    ATI FireGL
+ATI Technologies Inc. ATI FireGL V3600                                                                   supported      4     1     4.2    ATI FireGL
+ATI Technologies Inc. ATI FireGL V5200 (Microsoft Corporation - WDDM)                                    supported      1     1     2.1    ATI FireGL 5200
+ATI Technologies Inc. ATI FireGL V5200 Pentium 4 (SSE2)                                                  supported      1     1     2.1    ATI FireGL 5200
+ATI Technologies Inc. ATI FireGL V5600                                                                   supported      2     1     3.3    ATI FireGL 5xxx
+ATI Technologies Inc. ATI FireGL V7200                                                                   supported      4     1     4.2    ATI FireGL
+ATI Technologies Inc. ATI FireGL V7200 Pentium 4 (SSE2)                                                  supported      4     1     4.2    ATI FireGL
+ATI Technologies Inc. ATI FireGL V7600                                                                   supported      4     1     4.2    ATI FireGL
+ATI Technologies Inc. ATI FireGL V7700                                                                   supported      4     1     4.2    ATI FireGL
+ATI Technologies Inc. ATI FireMV 2250                                                                    supported      0     1     3.2    ATI FireMV
+ATI Technologies Inc. ATI FireMV 2250 x86/SSE2                                                           supported      0     1     3.2    ATI FireMV
+ATI Technologies Inc. ATI FirePro 2260                                                                   supported      2     1     4.2    ATI FirePro 2000
+ATI Technologies Inc. ATI FirePro 2450                                                                   supported      2     1     4.2    ATI FirePro 2000
+ATI Technologies Inc. ATI FirePro 3800 (FireGL) Graphics Adapter                                         supported      4     1     4.2    ATI FireGL
+ATI Technologies Inc. ATI FirePro M5800                                                                  supported      3     0     0      ATI FirePro M5800
+ATI Technologies Inc. ATI FirePro M7740                                                                  supported      3     0     0      ATI FirePro M7740
+ATI Technologies Inc. ATI FirePro M7820                                                                  supported      5     1     4.2    ATI FirePro M7820
+ATI Technologies Inc. ATI FirePro M7820 (FireGL)                                                         supported      4     1     4.2    ATI FireGL
+ATI Technologies Inc. ATI FirePro V3700 (FireGL)                                                         supported      4     1     4.2    ATI FireGL
+ATI Technologies Inc. ATI FirePro V3800                                                                  supported      2     0     0      ATI FirePro 3000
+ATI Technologies Inc. ATI FirePro V3800 (FireGL V)                                                       supported      4     1     4.2    ATI FireGL
+ATI Technologies Inc. ATI FirePro V3800 (FireGL V) Graphics Adapter                                      supported      4     1     4.2    ATI FireGL
+ATI Technologies Inc. ATI FirePro V3800 (FireGL)                                                         supported      4     1     4.2    ATI FireGL
+ATI Technologies Inc. ATI FirePro V4800                                                                  supported      2     0     4.1    ATI FirePro 4000
+ATI Technologies Inc. ATI FirePro V4800 (FireGL V)                                                       supported      4     1     4.2    ATI FireGL
+ATI Technologies Inc. ATI FirePro V4800 (FireGL)                                                         supported      4     1     4.2    ATI FireGL
+ATI Technologies Inc. ATI FirePro V5700 (FireGL)                                                         supported      4     1     4.2    ATI FireGL
+ATI Technologies Inc. ATI FirePro V5800 (FireGL V)                                                       supported      4     1     4.2    ATI FireGL
+ATI Technologies Inc. ATI FirePro V5800 (FireGL)                                                         supported      4     1     4.2    ATI FireGL
+ATI Technologies Inc. ATI FirePro V7800 (FireGL V)                                                       supported      4     1     4.2    ATI FireGL
+ATI Technologies Inc. ATI FirePro V7800 (FireGL)                                                         supported      4     1     4.2    ATI FireGL
+ATI Technologies Inc. ATI FirePro V8700 (FireGL)                                                         supported      4     1     4.2    ATI FireGL
+ATI Technologies Inc. ATI FirePro V9800 (FireGL V)                                                       supported      4     1     4.2    ATI FireGL
+ATI Technologies Inc. ATI MOBILITY FIRE GL T2/T2e                                                        supported      4     1     4.2    ATI FireGL
+ATI Technologies Inc. ATI MOBILITY FireGL V3200                                                          supported      4     1     4.2    ATI FireGL
+ATI Technologies Inc. ATI MOBILITY FireGL V5000 Pentium 4 (SSE2)                                         supported      2     1     3.3    ATI FireGL 5xxx
+ATI Technologies Inc. ATI MOBILITY FireGL V5200                                                          supported      1     1     2.1    ATI FireGL 5200
+ATI Technologies Inc. ATI MOBILITY FireGL V5200 Pentium 4 (SSE2)                                         supported      1     1     2.1    ATI FireGL 5200
+ATI Technologies Inc. ATI MOBILITY FireGL V5250                                                          supported      1     1     2.1    ATI FireGL 5200
+ATI Technologies Inc. ATI MOBILITY RADEON 9600 Series                                                    supported      1     1     2.1    ATI Mobility Radeon 9600
+ATI Technologies Inc. ATI MOBILITY RADEON 9600/9700                                                      supported      1     1     2.1    ATI Mobility Radeon 9600
+ATI Technologies Inc. ATI MOBILITY RADEON 9600/9700 Series                                               supported      1     1     2.1    ATI Mobility Radeon 9600
+ATI Technologies Inc. ATI MOBILITY RADEON 9600/9700 Series (Omega 3                                      supported      1     1     2.1    ATI Mobility Radeon 9600
+ATI Technologies Inc. ATI MOBILITY RADEON HD 2300                                                        supported      0     1     2.1    ATI Mobility Radeon HD 2300
+ATI Technologies Inc. ATI MOBILITY RADEON HD 2400                                                        supported      1     1     3.3    ATI Mobility Radeon HD 2400
+ATI Technologies Inc. ATI MOBILITY RADEON HD 2600                                                        supported      1     1     3.3    ATI Mobility Radeon HD 2600
+ATI Technologies Inc. ATI MOBILITY RADEON HD 3430                                                        supported      1     1     4      ATI Mobility Radeon HD 3400
+ATI Technologies Inc. ATI MOBILITY RADEON HD 3450                                                        supported      1     1     4      ATI Mobility Radeon HD 3400
+ATI Technologies Inc. ATI MOBILITY RADEON HD 3650                                                        supported      1     1     4      ATI Mobility Radeon HD 3600
+ATI Technologies Inc. ATI MOBILITY RADEON HD 4530 / 4570                                                 supported      1     1     4      ATI Mobility Radeon HD 4500
+ATI Technologies Inc. ATI MOBILITY RADEON X1300                                                          supported      2     1     2.1    ATI Radeon X1300
+ATI Technologies Inc. ATI MOBILITY RADEON X1350                                                          supported      2     1     2.1    ATI Radeon X1300
+ATI Technologies Inc. ATI MOBILITY RADEON X1400                                                          supported      2     1     2.1    ATI Radeon X1400
+ATI Technologies Inc. ATI MOBILITY RADEON X1600                                                          supported      2     1     2.1    ATI Radeon X1600
+ATI Technologies Inc. ATI MOBILITY RADEON X1700                                                          supported      2     1     2.1    ATI Radeon X1700
+ATI Technologies Inc. ATI MOBILITY RADEON X1800                                                          supported      3     1     2.1    ATI Radeon X1800
+ATI Technologies Inc. ATI MOBILITY RADEON X1900                                                          supported      2     1     2.1    ATI Radeon X1900
+ATI Technologies Inc. ATI MOBILITY RADEON X2300                                                          supported      2     0     2.1    ATI Mobility Radeon X2300
+ATI Technologies Inc. ATI MOBILITY RADEON X2300 x86/MMX/3DNow!/SSE2                                      supported      2     0     2.1    ATI Mobility Radeon X2300
+ATI Technologies Inc. ATI MOBILITY RADEON X300                                                           supported      1     1     2.1    ATI Radeon X300
+ATI Technologies Inc. ATI MOBILITY RADEON X300 x86/SSE2                                                  supported      1     1     2.1    ATI Radeon X300
+ATI Technologies Inc. ATI MOBILITY RADEON X600                                                           supported      1     1     2.1    ATI Radeon X600
+ATI Technologies Inc. ATI MOBILITY RADEON X600 SE                                                        supported      1     1     2.1    ATI Radeon X600
+ATI Technologies Inc. ATI MOBILITY RADEON X700                                                           supported      2     1     2.1    ATI Radeon X700
+ATI Technologies Inc. ATI MOBILITY RADEON XPRESS 200                                                     supported      0     1     2.1    ATI Radeon Xpress
+ATI Technologies Inc. ATI MOBILITY RADEON XPRESS 200 x86/MMX/3DNow!/SSE2                                 supported      0     1     2.1    ATI Radeon Xpress
+ATI Technologies Inc. ATI MOBILITY Radeon HD 4650                                                        supported      2     1     3.3    ATI Mobility Radeon HD 4600
+ATI Technologies Inc. ATI Mobility FireGL V5700                                                          supported      2     1     3.3    ATI FireGL 5xxx
+ATI Technologies Inc. ATI Mobility FireGL V5725                                                          supported      2     1     3.3    ATI FireGL 5xxx
+ATI Technologies Inc. ATI Mobility Radeon 4100                                                           supported      1     1     3.3    ATI Mobility Radeon 4100
+ATI Technologies Inc. ATI Mobility Radeon Graphics                                                                                         NO MATCH
+ATI Technologies Inc. ATI Mobility Radeon HD 2300                                                        supported      0     1     2.1    ATI Mobility Radeon HD 2300
+ATI Technologies Inc. ATI Mobility Radeon HD 2300 x86/SSE2                                               supported      0     1     2.1    ATI Mobility Radeon HD 2300
+ATI Technologies Inc. ATI Mobility Radeon HD 2400                                                        supported      1     1     3.3    ATI Mobility Radeon HD 2400
+ATI Technologies Inc. ATI Mobility Radeon HD 2400 (Omega 3.8.442)                                        supported      1     1     3.3    ATI Mobility Radeon HD 2400
+ATI Technologies Inc. ATI Mobility Radeon HD 2400 XT                                                     supported      1     1     3.3    ATI Mobility Radeon HD 2400
+ATI Technologies Inc. ATI Mobility Radeon HD 2600                                                        supported      1     1     3.3    ATI Mobility Radeon HD 2600
+ATI Technologies Inc. ATI Mobility Radeon HD 2600 XT                                                     supported      1     1     3.3    ATI Mobility Radeon HD 2600
+ATI Technologies Inc. ATI Mobility Radeon HD 2600 XT (Microsoft Corporation WDDM 1.1)                    supported      1     1     3.3    ATI Mobility Radeon HD 2600
+ATI Technologies Inc. ATI Mobility Radeon HD 2700                                                        supported      3     0     0      ATI Mobility Radeon HD 2700
+ATI Technologies Inc. ATI Mobility Radeon HD 3400 Series                                                 supported      1     1     4      ATI Mobility Radeon HD 3400
+ATI Technologies Inc. ATI Mobility Radeon HD 3400 Series (Microsoft Corporation WDDM 1.1)                supported      1     1     4      ATI Mobility Radeon HD 3400
+ATI Technologies Inc. ATI Mobility Radeon HD 3400 Series (Microsoft Corporation- WDDM v1.1)              supported      1     1     4      ATI Mobility Radeon HD 3400
+ATI Technologies Inc. ATI Mobility Radeon HD 3410                                                        supported      1     1     4      ATI Mobility Radeon HD 3400
+ATI Technologies Inc. ATI Mobility Radeon HD 3430                                                        supported      1     1     4      ATI Mobility Radeon HD 3400
+ATI Technologies Inc. ATI Mobility Radeon HD 3430 (Microsoft Corporation- WDDM v1.1)                     supported      1     1     4      ATI Mobility Radeon HD 3400
+ATI Technologies Inc. ATI Mobility Radeon HD 3450                                                        supported      1     1     4      ATI Mobility Radeon HD 3400
+ATI Technologies Inc. ATI Mobility Radeon HD 3470                                                        supported      1     1     4      ATI Mobility Radeon HD 3400
+ATI Technologies Inc. ATI Mobility Radeon HD 3470 Hybrid X2                                              supported      1     1     4      ATI Mobility Radeon HD 3400
+ATI Technologies Inc. ATI Mobility Radeon HD 3470 Series                                                 supported      1     1     4      ATI Mobility Radeon HD 3400
+ATI Technologies Inc. ATI Mobility Radeon HD 3650                                                        supported      1     1     4      ATI Mobility Radeon HD 3600
+ATI Technologies Inc. ATI Mobility Radeon HD 3670                                                        supported      1     1     4      ATI Mobility Radeon HD 3600
+ATI Technologies Inc. ATI Mobility Radeon HD 3850                                                        supported      3     1     3.3    ATI Mobility Radeon HD 3800
+ATI Technologies Inc. ATI Mobility Radeon HD 3870                                                        supported      3     1     3.3    ATI Mobility Radeon HD 3800
+ATI Technologies Inc. ATI Mobility Radeon HD 3870 X2                                                     supported      3     1     3.3    ATI Mobility Radeon HD 3800
+ATI Technologies Inc. ATI Mobility Radeon HD 4200                                                        supported      1     1     4      ATI Mobility Radeon HD 4200
+ATI Technologies Inc. ATI Mobility Radeon HD 4200 Series                                                 supported      1     1     4      ATI Mobility Radeon HD 4200
+ATI Technologies Inc. ATI Mobility Radeon HD 4200 Series (Microsoft Corporation - WDDM v1.1)             supported      1     1     4      ATI Mobility Radeon HD 4200
+ATI Technologies Inc. ATI Mobility Radeon HD 4225                                                        supported      1     1     4      ATI Mobility Radeon HD 4200
+ATI Technologies Inc. ATI Mobility Radeon HD 4225 Series                                                 supported      1     1     4      ATI Mobility Radeon HD 4200
+ATI Technologies Inc. ATI Mobility Radeon HD 4250                                                        supported      1     1     4      ATI Mobility Radeon HD 4200
+ATI Technologies Inc. ATI Mobility Radeon HD 4250 Graphics                                               supported      1     1     4      ATI Mobility Radeon HD 4200
+ATI Technologies Inc. ATI Mobility Radeon HD 4250 Series                                                 supported      1     1     4      ATI Mobility Radeon HD 4200
+ATI Technologies Inc. ATI Mobility Radeon HD 4270                                                        supported      1     1     4      ATI Mobility Radeon HD 4200
+ATI Technologies Inc. ATI Mobility Radeon HD 4270 Series                                                 supported      1     1     4      ATI Mobility Radeon HD 4200
+ATI Technologies Inc. ATI Mobility Radeon HD 4300 Series                                                 supported      1     1     4      ATI Mobility Radeon HD 4300
+ATI Technologies Inc. ATI Mobility Radeon HD 4300/4500 Series                                            supported      1     1     4      ATI Mobility Radeon HD 4300
+ATI Technologies Inc. ATI Mobility Radeon HD 4330                                                        supported      1     1     4      ATI Mobility Radeon HD 4300
+ATI Technologies Inc. ATI Mobility Radeon HD 4330 Series                                                 supported      1     1     4      ATI Mobility Radeon HD 4300
+ATI Technologies Inc. ATI Mobility Radeon HD 4350                                                        supported      1     1     4      ATI Mobility Radeon HD 4300
+ATI Technologies Inc. ATI Mobility Radeon HD 4350 Series                                                 supported      1     1     4      ATI Mobility Radeon HD 4300
+ATI Technologies Inc. ATI Mobility Radeon HD 4500 Series                                                 supported      1     1     4      ATI Mobility Radeon HD 4500
+ATI Technologies Inc. ATI Mobility Radeon HD 4500 Series (Microsoft Corporation - WDDM v1.1)             supported      1     1     4      ATI Mobility Radeon HD 4500
+ATI Technologies Inc. ATI Mobility Radeon HD 4500 Series (Microsoft Corporation WDDM 1.1)                supported      1     1     4      ATI Mobility Radeon HD 4500
+ATI Technologies Inc. ATI Mobility Radeon HD 4500/5100 Series                                            supported      1     1     4      ATI Mobility Radeon HD 4500
+ATI Technologies Inc. ATI Mobility Radeon HD 4530                                                        supported      1     1     4      ATI Mobility Radeon HD 4500
+ATI Technologies Inc. ATI Mobility Radeon HD 4530 Series                                                 supported      1     1     4      ATI Mobility Radeon HD 4500
+ATI Technologies Inc. ATI Mobility Radeon HD 4550                                                        supported      1     1     4      ATI Mobility Radeon HD 4500
+ATI Technologies Inc. ATI Mobility Radeon HD 4570                                                        supported      1     1     4      ATI Mobility Radeon HD 4500
+ATI Technologies Inc. ATI Mobility Radeon HD 4600 Series                                                 supported      2     1     3.3    ATI Mobility Radeon HD 4600
+ATI Technologies Inc. ATI Mobility Radeon HD 4650                                                        supported      2     1     3.3    ATI Mobility Radeon HD 4600
+ATI Technologies Inc. ATI Mobility Radeon HD 4650 (Microsoft Corporation - WDDM v1.1)                    supported      2     1     3.3    ATI Mobility Radeon HD 4600
+ATI Technologies Inc. ATI Mobility Radeon HD 4650 (Microsoft Corporation- WDDM v1.1)                     supported      2     1     3.3    ATI Mobility Radeon HD 4600
+ATI Technologies Inc. ATI Mobility Radeon HD 4650 Series                                                 supported      2     1     3.3    ATI Mobility Radeon HD 4600
+ATI Technologies Inc. ATI Mobility Radeon HD 4670                                                        supported      2     1     3.3    ATI Mobility Radeon HD 4600
+ATI Technologies Inc. ATI Mobility Radeon HD 4670 (Microsoft Corporation - WDDM v1.1)                    supported      2     1     3.3    ATI Mobility Radeon HD 4600
+ATI Technologies Inc. ATI Mobility Radeon HD 4830                                                        supported      3     1     3.3    ATI Mobility Radeon HD 4800
+ATI Technologies Inc. ATI Mobility Radeon HD 4830 Series                                                 supported      3     1     3.3    ATI Mobility Radeon HD 4800
+ATI Technologies Inc. ATI Mobility Radeon HD 4850                                                        supported      3     1     3.3    ATI Mobility Radeon HD 4800
+ATI Technologies Inc. ATI Mobility Radeon HD 4870                                                        supported      3     1     3.3    ATI Mobility Radeon HD 4800
+ATI Technologies Inc. ATI Mobility Radeon HD 5000                                                        supported      1     1     4.2    ATI Mobility Radeon 5000
+ATI Technologies Inc. ATI Mobility Radeon HD 5000 Series                                                 supported      1     1     4.2    ATI Mobility Radeon 5000
+ATI Technologies Inc. ATI Mobility Radeon HD 5000 Series (Engineering Sample - WDDM v1.20)               supported      1     1     4.2    ATI Mobility Radeon 5000
+ATI Technologies Inc. ATI Mobility Radeon HD 5000 Series (Microsoft Corporation - WDDM v1.2)             supported      1     1     4.2    ATI Mobility Radeon 5000
+ATI Technologies Inc. ATI Mobility Radeon HD 5000 Series (Microsoft Corporation - WDDM v1.20)            supported      1     1     4.2    ATI Mobility Radeon 5000
+ATI Technologies Inc. ATI Mobility Radeon HD 5100                                                        supported      3     1     3.2    ATI Mobility Radeon HD 5100
+ATI Technologies Inc. ATI Mobility Radeon HD 5145                                                        supported      3     1     3.2    ATI Mobility Radeon HD 5100
+ATI Technologies Inc. ATI Mobility Radeon HD 5165                                                        supported      3     1     3.2    ATI Mobility Radeon HD 5100
+ATI Technologies Inc. ATI Mobility Radeon HD 530v                                                        supported      1     1     3.3    ATI Mobility Radeon HD 530v
+ATI Technologies Inc. ATI Mobility Radeon HD 5400                                                        supported      2     1     4.2    ATI Mobility Radeon HD 5400
+ATI Technologies Inc. ATI Mobility Radeon HD 5400 Series                                                 supported      2     1     4.2    ATI Mobility Radeon HD 5400
+ATI Technologies Inc. ATI Mobility Radeon HD 540v                                                        supported      1     1     3.3    ATI Mobility Radeon HD 540v
+ATI Technologies Inc. ATI Mobility Radeon HD 5430                                                        supported      2     1     4.2    ATI Mobility Radeon HD 5400
+ATI Technologies Inc. ATI Mobility Radeon HD 5450                                                        supported      2     1     4.2    ATI Mobility Radeon HD 5400
+ATI Technologies Inc. ATI Mobility Radeon HD 5450 Series                                                 supported      2     1     4.2    ATI Mobility Radeon HD 5400
+ATI Technologies Inc. ATI Mobility Radeon HD 545v                                                        supported      2     1     4      ATI Mobility Radeon HD 545v
+ATI Technologies Inc. ATI Mobility Radeon HD 5470                                                        supported      2     1     4.2    ATI Mobility Radeon HD 5400
+ATI Technologies Inc. ATI Mobility Radeon HD 550v                                                        supported      3     1     4      ATI Mobility Radeon HD 550v
+ATI Technologies Inc. ATI Mobility Radeon HD 5570                                                        supported      3     0     4.2    ATI Mobility Radeon HD 5500
+ATI Technologies Inc. ATI Mobility Radeon HD 5600/5700 Series                                            supported      3     1     4.2    ATI Mobility Radeon HD 5600
+ATI Technologies Inc. ATI Mobility Radeon HD 560v                                                        supported      3     1     3.2    ATI Mobility Radeon HD 560v
+ATI Technologies Inc. ATI Mobility Radeon HD 5650                                                        supported      3     1     4.2    ATI Mobility Radeon HD 5600
+ATI Technologies Inc. ATI Mobility Radeon HD 565v                                                        supported      3     1     3.3    ATI Mobility Radeon HD 565v
+ATI Technologies Inc. ATI Mobility Radeon HD 5700 Series                                                 supported      3     1     4.1    ATI Mobility Radeon HD 5700
+ATI Technologies Inc. ATI Mobility Radeon HD 5730                                                        supported      3     1     4.1    ATI Mobility Radeon HD 5700
+ATI Technologies Inc. ATI Mobility Radeon HD 5800 Series                                                 supported      4     1     4.2    ATI Radeon HD 5800
+ATI Technologies Inc. ATI Mobility Radeon HD 5800 Series (Microsoft Corporation - WDDM v1.20)            supported      4     1     4.2    ATI Radeon HD 5800
+ATI Technologies Inc. ATI Mobility Radeon HD 5830 Series                                                 supported      4     1     4.2    ATI Radeon HD 5800
+ATI Technologies Inc. ATI Mobility Radeon HD 5850                                                        supported      4     1     4.2    ATI Radeon HD 5800
+ATI Technologies Inc. ATI Mobility Radeon HD 5870                                                        supported      4     1     4.2    ATI Radeon HD 5800
+ATI Technologies Inc. ATI Mobility Radeon HD 6370                                                        supported      1     1     4.2    ATI Radeon HD 6300
+ATI Technologies Inc. ATI Mobility Radeon HD 6550                                                        supported      3     1     4.2    ATI Radeon HD 6500
+ATI Technologies Inc. ATI Mobility Radeon HD 6570                                                        supported      3     1     4.2    ATI Radeon HD 6500
+ATI Technologies Inc. ATI Mobility Radeon X1300                                                          supported      2     1     2.1    ATI Radeon X1300
+ATI Technologies Inc. ATI Mobility Radeon X1300 (Omega 3.8.252) x86/SSE2                                 supported      2     1     2.1    ATI Radeon X1300
+ATI Technologies Inc. ATI Mobility Radeon X1300 x86/MMX/3DNow!/SSE2                                      supported      2     1     2.1    ATI Radeon X1300
+ATI Technologies Inc. ATI Mobility Radeon X1300 x86/SSE2                                                 supported      2     1     2.1    ATI Radeon X1300
+ATI Technologies Inc. ATI Mobility Radeon X1350                                                          supported      2     1     2.1    ATI Radeon X1300
+ATI Technologies Inc. ATI Mobility Radeon X1350 x86/SSE2                                                 supported      2     1     2.1    ATI Radeon X1300
+ATI Technologies Inc. ATI Mobility Radeon X1400                                                          supported      2     1     2.1    ATI Radeon X1400
+ATI Technologies Inc. ATI Mobility Radeon X1400 (Omega 3.8.442)                                          supported      2     1     2.1    ATI Radeon X1400
+ATI Technologies Inc. ATI Mobility Radeon X1400 x86                                                      supported      2     1     2.1    ATI Radeon X1400
+ATI Technologies Inc. ATI Mobility Radeon X1400 x86/SSE2                                                 supported      2     1     2.1    ATI Radeon X1400
+ATI Technologies Inc. ATI Mobility Radeon X1450 x86/SSE2                                                 supported      2     1     2.1    ATI Radeon X1400
+ATI Technologies Inc. ATI Mobility Radeon X1600                                                          supported      2     1     2.1    ATI Radeon X1600
+ATI Technologies Inc. ATI Mobility Radeon X1600 x86/MMX/3DNow!/SSE2                                      supported      2     1     2.1    ATI Radeon X1600
+ATI Technologies Inc. ATI Mobility Radeon X1600 x86/SSE2                                                 supported      2     1     2.1    ATI Radeon X1600
+ATI Technologies Inc. ATI Mobility Radeon X1700                                                          supported      2     1     2.1    ATI Radeon X1700
+ATI Technologies Inc. ATI Mobility Radeon X1700 x86                                                      supported      2     1     2.1    ATI Radeon X1700
+ATI Technologies Inc. ATI Mobility Radeon X1700 x86/SSE2                                                 supported      2     1     2.1    ATI Radeon X1700
+ATI Technologies Inc. ATI Mobility Radeon X1800 x86/SSE2                                                 supported      3     1     2.1    ATI Radeon X1800
+ATI Technologies Inc. ATI Mobility Radeon X1900                                                          supported      2     1     2.1    ATI Radeon X1900
+ATI Technologies Inc. ATI Mobility Radeon X2300                                                          supported      2     0     2.1    ATI Mobility Radeon X2300
+ATI Technologies Inc. ATI Mobility Radeon X2300 x86/MMX/3DNow!                                           supported      2     0     2.1    ATI Mobility Radeon X2300
+ATI Technologies Inc. ATI Mobility Radeon X2300 x86/MMX/3DNow!/SSE2                                      supported      2     0     2.1    ATI Mobility Radeon X2300
+ATI Technologies Inc. ATI Mobility Radeon X2300 x86/SSE2                                                 supported      2     0     2.1    ATI Mobility Radeon X2300
+ATI Technologies Inc. ATI Mobility Radeon X2500                                                          supported      2     0     2.1    ATI Mobility Radeon X2500
+ATI Technologies Inc. ATI Mobility Radeon. HD 530v                                                       supported      1     1     3.3    ATI Mobility Radeon HD 530v
+ATI Technologies Inc. ATI Mobility Radeon. HD 5470                                                       supported      2     1     4.2    ATI Mobility Radeon HD 5400
+ATI Technologies Inc. ATI RADEON 9600 Series                                                             supported      0     1     2.1    ATI Radeon 9600
+ATI Technologies Inc. ATI RADEON 9600/X1050 Series                                                       supported      0     1     2.1    ATI Radeon 9600
+ATI Technologies Inc. ATI RADEON E4690                                                                   supported      3     1     4      ATI RADEON E4690
+ATI Technologies Inc. ATI RADEON HD 3200 Graphics                                                        supported      1     1     4      ATI Radeon HD 3200
+ATI Technologies Inc. ATI RADEON XPRESS 1100                                                             supported      0     1     2.1    ATI Radeon Xpress
+ATI Technologies Inc. ATI RADEON XPRESS 1100 Series                                                      supported      0     1     2.1    ATI Radeon Xpress
+ATI Technologies Inc. ATI RADEON XPRESS 1100 x86/SSE2                                                    supported      0     1     2.1    ATI Radeon Xpress
+ATI Technologies Inc. ATI RADEON XPRESS 1200 Series                                                      supported      0     1     2.1    ATI Radeon Xpress
+ATI Technologies Inc. ATI RADEON XPRESS 200                                                              supported      0     1     2.1    ATI Radeon Xpress
+ATI Technologies Inc. ATI RADEON XPRESS 200 Series                                                       supported      0     1     2.1    ATI Radeon Xpress
+ATI Technologies Inc. ATI RADEON XPRESS 200 Series x86/SSE2                                              supported      0     1     2.1    ATI Radeon Xpress
+ATI Technologies Inc. ATI RADEON XPRESS 200 x86/MMX/3DNow!/SSE2                                          supported      0     1     2.1    ATI Radeon Xpress
+ATI Technologies Inc. ATI RADEON XPRESS 200M SERIES                                                      supported      0     1     2.1    ATI Radeon Xpress
+ATI Technologies Inc. ATI RADEON XPRESS 200M Series                                                      supported      0     1     2.1    ATI Radeon Xpress
+ATI Technologies Inc. ATI RADEON XPRESS 200M Series (Microsoft Corporation)                              supported      0     1     2.1    ATI Radeon Xpress
+ATI Technologies Inc. ATI RADEON XPRESS 200M Series (Omega 3.8.421) x86/SSE2                             supported      0     1     2.1    ATI Radeon Xpress
+ATI Technologies Inc. ATI RADEON XPRESS 200M Series x86/SSE2                                             supported      0     1     2.1    ATI Radeon Xpress
+ATI Technologies Inc. ATI Radeon 2100                                                                    supported      0     1     2.1    ATI Radeon 2100
+ATI Technologies Inc. ATI Radeon 2100 (Microsoft Corporation - WDDM)                                     supported      0     1     2.1    ATI Radeon 2100
+ATI Technologies Inc. ATI Radeon 2100 Graphics                                                           supported      0     1     2.1    ATI Radeon 2100
+ATI Technologies Inc. ATI Radeon 3000                                                                    supported      1     1     4      ATI Radeon 3000
+ATI Technologies Inc. ATI Radeon 3000 Graphics                                                           supported      1     1     4      ATI Radeon 3000
+ATI Technologies Inc. ATI Radeon 3000 Graphics (Engineering Sample - WDDM v1.1)                          supported      1     1     4      ATI Radeon 3000
+ATI Technologies Inc. ATI Radeon 3000 Series Graphics                                                    supported      1     1     4      ATI Radeon 3000
+ATI Technologies Inc. ATI Radeon 3100 Graphics                                                           supported      0     1     3.3    ATI Radeon 3100
+ATI Technologies Inc. ATI Radeon 3100 Graphics (Microsoft Corporation WDDM 1.1)                          supported      0     1     3.3    ATI Radeon 3100
+ATI Technologies Inc. ATI Radeon 3100 Series Graphics                                                    supported      0     1     3.3    ATI Radeon 3100
+ATI Technologies Inc. ATI Radeon 9550 / X1050                                                            supported      0     1     2.1    ATI Radeon 9500
+ATI Technologies Inc. ATI Radeon 9550 / X1050 Series                                                     supported      0     1     2.1    ATI Radeon 9500
+ATI Technologies Inc. ATI Radeon 9550 / X1050 Series x86/SSE2                                            supported      0     1     2.1    ATI Radeon 9500
+ATI Technologies Inc. ATI Radeon 9550 / X1050 Series(Microsoft Corporation - WDDM)                       supported      0     1     2.1    ATI Radeon 9500
+ATI Technologies Inc. ATI Radeon 9600 / X1050 Series                                                     supported      0     1     2.1    ATI Radeon 9600
+ATI Technologies Inc. ATI Radeon 9600 / X1050 Series x86/SSE2                                            supported      0     1     2.1    ATI Radeon 9600
+ATI Technologies Inc. ATI Radeon 9600/9550/X1050 Series                                                  supported      0     1     2.1    ATI Radeon 9600
+ATI Technologies Inc. ATI Radeon BA Prototype OpenGL Engine                                              supported      3     1     2.1    AMD BA (HD 6800)
+ATI Technologies Inc. ATI Radeon Barts PRO Prototype OpenGL Engine                                       supported      3     1     2.1    AMD BARTS (HD 6800)
+ATI Technologies Inc. ATI Radeon Barts XT Prototype OpenGL Engine                                        supported      3     1     2.1    AMD BARTS (HD 6800)
+ATI Technologies Inc. ATI Radeon Caicos PRO Prototype OpenGL Engine                                      supported      3     0     0      AMD CAICOS (HD 6400)
+ATI Technologies Inc. ATI Radeon Caicos Unknown Prototype OpenGL Engine                                  supported      3     0     0      AMD CAICOS (HD 6400)
+ATI Technologies Inc. ATI Radeon Cedar PRO Prototype OpenGL Engine                                       supported      2     0     2.1    AMD CEDAR (HD 5450)
+ATI Technologies Inc. ATI Radeon Graphics Processor                                                                                        NO MATCH
+ATI Technologies Inc. ATI Radeon HD 2350                                                                 supported      0     1     3.3    ATI Radeon HD 2300
+ATI Technologies Inc. ATI Radeon HD 2400                                                                 supported      1     1     4      ATI Radeon HD 2400
+ATI Technologies Inc. ATI Radeon HD 2400 OpenGL Engine                                                   supported      1     1     4      ATI Radeon HD 2400
+ATI Technologies Inc. ATI Radeon HD 2400 PCI                                                             supported      1     1     4      ATI Radeon HD 2400
+ATI Technologies Inc. ATI Radeon HD 2400 PRO                                                             supported      1     1     4      ATI Radeon HD 2400
+ATI Technologies Inc. ATI Radeon HD 2400 PRO AGP                                                         supported      1     1     4      ATI Radeon HD 2400
+ATI Technologies Inc. ATI Radeon HD 2400 Pro                                                             supported      1     1     4      ATI Radeon HD 2400
+ATI Technologies Inc. ATI Radeon HD 2400 Series                                                          supported      1     1     4      ATI Radeon HD 2400
+ATI Technologies Inc. ATI Radeon HD 2400 Series AGP                                                      supported      1     1     4      ATI Radeon HD 2400
+ATI Technologies Inc. ATI Radeon HD 2400 XT                                                              supported      1     1     4      ATI Radeon HD 2400
+ATI Technologies Inc. ATI Radeon HD 2400 XT OpenGL Engine                                                supported      1     1     4      ATI Radeon HD 2400
+ATI Technologies Inc. ATI Radeon HD 2600 OpenGL Engine                                                   supported      2     1     4      ATI Radeon HD 2600
+ATI Technologies Inc. ATI Radeon HD 2600 PRO                                                             supported      2     1     4      ATI Radeon HD 2600
+ATI Technologies Inc. ATI Radeon HD 2600 PRO OpenGL Engine                                               supported      2     1     4      ATI Radeon HD 2600
+ATI Technologies Inc. ATI Radeon HD 2600 Pro                                                             supported      2     1     4      ATI Radeon HD 2600
+ATI Technologies Inc. ATI Radeon HD 2600 Pro AGP                                                         supported      2     1     4      ATI Radeon HD 2600
+ATI Technologies Inc. ATI Radeon HD 2600 Series                                                          supported      2     1     4      ATI Radeon HD 2600
+ATI Technologies Inc. ATI Radeon HD 2600 Series AGP                                                      supported      2     1     4      ATI Radeon HD 2600
+ATI Technologies Inc. ATI Radeon HD 2600 XT                                                              supported      2     1     4      ATI Radeon HD 2600
+ATI Technologies Inc. ATI Radeon HD 2600/3600 Series                                                     supported      2     1     4      ATI Radeon HD 2600
+ATI Technologies Inc. ATI Radeon HD 2900 GT                                                              supported      3     1     3.3    ATI Radeon HD 2900
+ATI Technologies Inc. ATI Radeon HD 2900 PRO                                                             supported      3     1     3.3    ATI Radeon HD 2900
+ATI Technologies Inc. ATI Radeon HD 2900 XT                                                              supported      3     1     3.3    ATI Radeon HD 2900
+ATI Technologies Inc. ATI Radeon HD 3200 Graphics                                                        supported      1     1     4      ATI Radeon HD 3200
+ATI Technologies Inc. ATI Radeon HD 3200 Graphics (Microsoft Corporation - WDDM v1.1)                    supported      1     1     4      ATI Radeon HD 3200
+ATI Technologies Inc. ATI Radeon HD 3200 Graphics (Microsoft Corporation WDDM 1.1)                       supported      1     1     4      ATI Radeon HD 3200
+ATI Technologies Inc. ATI Radeon HD 3300 Graphics                                                        supported      1     1     3.3    ATI Radeon HD 3300
+ATI Technologies Inc. ATI Radeon HD 3400 Series                                                          supported      1     1     4      ATI Radeon HD 3400
+ATI Technologies Inc. ATI Radeon HD 3450                                                                 supported      1     1     4      ATI Radeon HD 3400
+ATI Technologies Inc. ATI Radeon HD 3450 - Dell Optiplex                                                 supported      1     1     4      ATI Radeon HD 3400
+ATI Technologies Inc. ATI Radeon HD 3450 AGP                                                             supported      1     1     4      ATI Radeon HD 3400
+ATI Technologies Inc. ATI Radeon HD 3470                                                                 supported      1     1     4      ATI Radeon HD 3400
+ATI Technologies Inc. ATI Radeon HD 3470 - Dell Optiplex                                                 supported      1     1     4      ATI Radeon HD 3400
+ATI Technologies Inc. ATI Radeon HD 3600 Series                                                          supported      3     1     4      ATI Radeon HD 3600
+ATI Technologies Inc. ATI Radeon HD 3600 Series (Microsoft Corporation - WDDM v1.1)                      supported      3     1     4      ATI Radeon HD 3600
+ATI Technologies Inc. ATI Radeon HD 3600 Series (Microsoft Corporation WDDM 1.1)                         supported      3     1     4      ATI Radeon HD 3600
+ATI Technologies Inc. ATI Radeon HD 3650                                                                 supported      3     1     4      ATI Radeon HD 3600
+ATI Technologies Inc. ATI Radeon HD 3650 AGP                                                             supported      3     1     4      ATI Radeon HD 3600
+ATI Technologies Inc. ATI Radeon HD 3800 Series                                                          supported      3     1     4      ATI Radeon HD 3800
+ATI Technologies Inc. ATI Radeon HD 3850                                                                 supported      3     1     4      ATI Radeon HD 3800
+ATI Technologies Inc. ATI Radeon HD 3850 (Microsoft Corporation - WDDM v1.1)                             supported      3     1     4      ATI Radeon HD 3800
+ATI Technologies Inc. ATI Radeon HD 3850 AGP                                                             supported      3     1     4      ATI Radeon HD 3800
+ATI Technologies Inc. ATI Radeon HD 3870                                                                 supported      3     1     4      ATI Radeon HD 3800
+ATI Technologies Inc. ATI Radeon HD 3870 (Engineering Sample - WDDM v1.1)                                supported      3     1     4      ATI Radeon HD 3800
+ATI Technologies Inc. ATI Radeon HD 3870 (Microsoft Corporation - WDDM v1.1)                             supported      3     1     4      ATI Radeon HD 3800
+ATI Technologies Inc. ATI Radeon HD 3870 OpenGL Engine                                                   supported      3     1     4      ATI Radeon HD 3800
+ATI Technologies Inc. ATI Radeon HD 3870 X2                                                              supported      3     1     4      ATI Radeon HD 3800
+ATI Technologies Inc. ATI Radeon HD 4200                                                                 supported      1     1     4      ATI Radeon HD 4200
+ATI Technologies Inc. ATI Radeon HD 4200 (Microsoft Corporation - WDDM v1.1)                             supported      1     1     4      ATI Radeon HD 4200
+ATI Technologies Inc. ATI Radeon HD 4250                                                                 supported      1     1     4      ATI Radeon HD 4200
+ATI Technologies Inc. ATI Radeon HD 4250 (Engineering Sample - WDDM v1.1)                                supported      1     1     4      ATI Radeon HD 4200
+ATI Technologies Inc. ATI Radeon HD 4250 (Microsoft Corporation - WDDM v1.1)                             supported      1     1     4      ATI Radeon HD 4200
+ATI Technologies Inc. ATI Radeon HD 4250 Graphics                                                        supported      1     1     4      ATI Radeon HD 4200
+ATI Technologies Inc. ATI Radeon HD 4270                                                                 supported      1     1     4      ATI Radeon HD 4200
+ATI Technologies Inc. ATI Radeon HD 4290                                                                 supported      1     1     4      ATI Radeon HD 4200
+ATI Technologies Inc. ATI Radeon HD 4300 Series                                                          supported      2     1     4      ATI Radeon HD 4300
+ATI Technologies Inc. ATI Radeon HD 4300/4500 Series                                                     supported      2     1     4      ATI Radeon HD 4300
+ATI Technologies Inc. ATI Radeon HD 4300/4500 Series (Microsoft Corporation - WDDM v1.1)                 supported      2     1     4      ATI Radeon HD 4300
+ATI Technologies Inc. ATI Radeon HD 4300/4500 Series (Microsoft Corporation- WDDM v1.1)                  supported      2     1     4      ATI Radeon HD 4300
+ATI Technologies Inc. ATI Radeon HD 4350                                                                 supported      2     1     4      ATI Radeon HD 4300
+ATI Technologies Inc. ATI Radeon HD 4350 (Microsoft Corporation WDDM 1.1)                                supported      2     1     4      ATI Radeon HD 4300
+ATI Technologies Inc. ATI Radeon HD 4450                                                                 supported      2     0     0      ATI Radeon HD 4400
+ATI Technologies Inc. ATI Radeon HD 4500 Series                                                          supported      2     1     3.3    ATI Radeon HD 4500
+ATI Technologies Inc. ATI Radeon HD 4520                                                                 supported      2     1     3.3    ATI Radeon HD 4500
+ATI Technologies Inc. ATI Radeon HD 4550                                                                 supported      2     1     3.3    ATI Radeon HD 4500
+ATI Technologies Inc. ATI Radeon HD 4550 (Microsoft Corporation - WDDM v1.1)                             supported      2     1     3.3    ATI Radeon HD 4500
+ATI Technologies Inc. ATI Radeon HD 4570                                                                 supported      2     1     3.3    ATI Radeon HD 4500
+ATI Technologies Inc. ATI Radeon HD 4580                                                                 supported      2     1     3.3    ATI Radeon HD 4500
+ATI Technologies Inc. ATI Radeon HD 4590                                                                 supported      2     1     3.3    ATI Radeon HD 4500
+ATI Technologies Inc. ATI Radeon HD 4600 Series                                                          supported      3     1     4      ATI Radeon HD 4600
+ATI Technologies Inc. ATI Radeon HD 4600 Series (Engineering Sample - WDDM v1.1)                         supported      3     1     4      ATI Radeon HD 4600
+ATI Technologies Inc. ATI Radeon HD 4600 Series (Microsoft Corporation - WDDM v1.1)                      supported      3     1     4      ATI Radeon HD 4600
+ATI Technologies Inc. ATI Radeon HD 4600-serie (Microsoft Corporation - WDDM v1.1)                       supported      3     1     4      ATI Radeon HD 4600
+ATI Technologies Inc. ATI Radeon HD 4650                                                                 supported      3     1     4      ATI Radeon HD 4600
+ATI Technologies Inc. ATI Radeon HD 4650 (Microsoft Corporation WDDM 1.1)                                supported      3     1     4      ATI Radeon HD 4600
+ATI Technologies Inc. ATI Radeon HD 4670                                                                 supported      3     1     4      ATI Radeon HD 4600
+ATI Technologies Inc. ATI Radeon HD 4670 OpenGL Engine                                                   supported      3     1     4      ATI Radeon HD 4600
+ATI Technologies Inc. ATI Radeon HD 4700                                                                 supported      3     1     3.3    ATI Radeon HD 4700
+ATI Technologies Inc. ATI Radeon HD 4700 Series                                                          supported      3     1     3.3    ATI Radeon HD 4700
+ATI Technologies Inc. ATI Radeon HD 4720                                                                 supported      3     1     3.3    ATI Radeon HD 4700
+ATI Technologies Inc. ATI Radeon HD 4730                                                                 supported      3     1     3.3    ATI Radeon HD 4700
+ATI Technologies Inc. ATI Radeon HD 4730 Series                                                          supported      3     1     3.3    ATI Radeon HD 4700
+ATI Technologies Inc. ATI Radeon HD 4770                                                                 supported      3     1     3.3    ATI Radeon HD 4700
+ATI Technologies Inc. ATI Radeon HD 4800                                                                 supported      3     1     4      ATI Radeon HD 4800
+ATI Technologies Inc. ATI Radeon HD 4800 Series                                                          supported      3     1     4      ATI Radeon HD 4800
+ATI Technologies Inc. ATI Radeon HD 4800 Series (Microsoft Corporation - WDDM v1.1)                      supported      3     1     4      ATI Radeon HD 4800
+ATI Technologies Inc. ATI Radeon HD 4810 series                                                          supported      3     1     4      ATI Radeon HD 4800
+ATI Technologies Inc. ATI Radeon HD 4830                                                                 supported      3     1     4      ATI Radeon HD 4800
+ATI Technologies Inc. ATI Radeon HD 4850                                                                 supported      3     1     4      ATI Radeon HD 4800
+ATI Technologies Inc. ATI Radeon HD 4850 OpenGL Engine                                                   supported      3     1     4      ATI Radeon HD 4800
+ATI Technologies Inc. ATI Radeon HD 4850 PRO OpenGL Engine                                               supported      3     1     4      ATI Radeon HD 4800
+ATI Technologies Inc. ATI Radeon HD 4850 Series                                                          supported      3     1     4      ATI Radeon HD 4800
+ATI Technologies Inc. ATI Radeon HD 4850 X2                                                              supported      3     1     4      ATI Radeon HD 4800
+ATI Technologies Inc. ATI Radeon HD 4870                                                                 supported      3     1     4      ATI Radeon HD 4800
+ATI Technologies Inc. ATI Radeon HD 4870 OpenGL Engine                                                   supported      3     1     4      ATI Radeon HD 4800
+ATI Technologies Inc. ATI Radeon HD 4870 Series                                                          supported      3     1     4      ATI Radeon HD 4800
+ATI Technologies Inc. ATI Radeon HD 4870 X2                                                              supported      3     1     4      ATI Radeon HD 4800
+ATI Technologies Inc. ATI Radeon HD 5400 Series                                                          supported      3     1     4.2    ATI Radeon HD 5400
+ATI Technologies Inc. ATI Radeon HD 5450                                                                 supported      3     1     4.2    ATI Radeon HD 5400
+ATI Technologies Inc. ATI Radeon HD 5450 (Microsoft Corporation - WDDM v1.20)                            supported      3     1     4.2    ATI Radeon HD 5400
+ATI Technologies Inc. ATI Radeon HD 5470                                                                 supported      3     1     4.2    ATI Radeon HD 5400
+ATI Technologies Inc. ATI Radeon HD 5500                                                                 supported      3     1     4.2    ATI Radeon HD 5500
+ATI Technologies Inc. ATI Radeon HD 5500 Series                                                          supported      3     1     4.2    ATI Radeon HD 5500
+ATI Technologies Inc. ATI Radeon HD 5530                                                                 supported      3     1     4.2    ATI Radeon HD 5500
+ATI Technologies Inc. ATI Radeon HD 5570                                                                 supported      3     1     4.2    ATI Radeon HD 5500
+ATI Technologies Inc. ATI Radeon HD 5600 Series                                                          supported      3     1     4.2    ATI Radeon HD 5600
+ATI Technologies Inc. ATI Radeon HD 5600/5700                                                            supported      3     1     4.2    ATI Radeon HD 5600
+ATI Technologies Inc. ATI Radeon HD 5630                                                                 supported      3     1     4.2    ATI Radeon HD 5600
+ATI Technologies Inc. ATI Radeon HD 5670                                                                 supported      3     1     4.2    ATI Radeon HD 5600
+ATI Technologies Inc. ATI Radeon HD 5670 OpenGL Engine                                                   supported      3     1     4.2    ATI Radeon HD 5600
+ATI Technologies Inc. ATI Radeon HD 5700 Series                                                          supported      3     1     4.2    ATI Radeon HD 5700
+ATI Technologies Inc. ATI Radeon HD 5700 Series (Microsoft Corporation - WDDM v1.2)                      supported      3     1     4.2    ATI Radeon HD 5700
+ATI Technologies Inc. ATI Radeon HD 5700 Series (Microsoft Corporation - WDDM v1.20)                     supported      3     1     4.2    ATI Radeon HD 5700
+ATI Technologies Inc. ATI Radeon HD 5750                                                                 supported      3     1     4.2    ATI Radeon HD 5700
+ATI Technologies Inc. ATI Radeon HD 5750 OpenGL Engine                                                   supported      3     1     4.2    ATI Radeon HD 5700
+ATI Technologies Inc. ATI Radeon HD 5750 Series                                                          supported      3     1     4.2    ATI Radeon HD 5700
+ATI Technologies Inc. ATI Radeon HD 5770                                                                 supported      3     1     4.2    ATI Radeon HD 5700
+ATI Technologies Inc. ATI Radeon HD 5770 OpenGL Engine                                                   supported      3     1     4.2    ATI Radeon HD 5700
+ATI Technologies Inc. ATI Radeon HD 5800 Series                                                          supported      4     1     4.2    ATI Radeon HD 5800
+ATI Technologies Inc. ATI Radeon HD 5850                                                                 supported      4     1     4.2    ATI Radeon HD 5800
+ATI Technologies Inc. ATI Radeon HD 5870                                                                 supported      4     1     4.2    ATI Radeon HD 5800
+ATI Technologies Inc. ATI Radeon HD 5870 OpenGL Engine                                                   supported      4     1     4.2    ATI Radeon HD 5800
+ATI Technologies Inc. ATI Radeon HD 5900 Series                                                          supported      4     1     4.2    ATI Radeon HD 5900
+ATI Technologies Inc. ATI Radeon HD 5970                                                                 supported      4     1     4.2    ATI Radeon HD 5900
+ATI Technologies Inc. ATI Radeon HD 6230                                                                 supported      0     1     4.2    ATI Radeon HD 6200
+ATI Technologies Inc. ATI Radeon HD 6290                                                                 supported      0     1     4.2    ATI Radeon HD 6200
+ATI Technologies Inc. ATI Radeon HD 6350                                                                 supported      1     1     4.2    ATI Radeon HD 6300
+ATI Technologies Inc. ATI Radeon HD 6390                                                                 supported      1     1     4.2    ATI Radeon HD 6300
+ATI Technologies Inc. ATI Radeon HD 6490                                                                 supported      3     1     4.2    ATI Radeon HD 6400
+ATI Technologies Inc. ATI Radeon HD 6490M OpenGL Engine                                                  supported      3     1     4.2    ATI Radeon HD 6400
+ATI Technologies Inc. ATI Radeon HD 6510                                                                 supported      3     1     4.2    ATI Radeon HD 6500
+ATI Technologies Inc. ATI Radeon HD 6570M                                                                supported      3     1     4.2    ATI Radeon HD 6500
+ATI Technologies Inc. ATI Radeon HD 6630M OpenGL Engine                                                  supported      3     1     4.2    ATI Radeon HD 6600
+ATI Technologies Inc. ATI Radeon HD 6750M OpenGL Engine                                                  supported      3     1     4.2    ATI Radeon HD 6700
+ATI Technologies Inc. ATI Radeon HD 6770                                                                 supported      3     1     4.2    ATI Radeon HD 6700
+ATI Technologies Inc. ATI Radeon HD 6770M OpenGL Engine                                                  supported      3     1     4.2    ATI Radeon HD 6700
+ATI Technologies Inc. ATI Radeon HD 6970M OpenGL Engine                                                  supported      5     1     4.2    ATI Radeon HD 6900
+ATI Technologies Inc. ATI Radeon HD 7350                                                                 supported      2     0     4.2    ATI Radeon HD 7300
+ATI Technologies Inc. ATI Radeon HD 7950 OpenGL Engine                                                   supported      5     1     4.2    ATI Radeon HD 7900
+ATI Technologies Inc. ATI Radeon HD Pitcairn XT Prototype OpenGL Engine                                  supported      3     0     2.1    AMD PITCAIRN (HD 7870)
+ATI Technologies Inc. ATI Radeon HD Tahiti XT Prototype OpenGL Engine                                    supported      3     0     2.1    AMD TAHITI (HD 7000)
+ATI Technologies Inc. ATI Radeon HD Verde XT Prototype OpenGL Engine                                     unsupported    0     0     0      ATI Radeon VE
+ATI Technologies Inc. ATI Radeon HD3750                                                                  supported      3     0     3.3    ATI Radeon HD 3700
+ATI Technologies Inc. ATI Radeon HD4300/HD4500 series                                                    supported      2     1     4      ATI Radeon HD 4300
+ATI Technologies Inc. ATI Radeon HD4650                                                                  supported      3     1     4      ATI Radeon HD 4600
+ATI Technologies Inc. ATI Radeon HD4670                                                                  supported      3     1     4      ATI Radeon HD 4600
+ATI Technologies Inc. ATI Radeon RV730 Prototype OpenGL Engine                                           supported      3     0     1.4    AMD RV730 (HD 4600)
+ATI Technologies Inc. ATI Radeon RV790 Prototype OpenGL Engine                                           supported      3     0     0      AMD RV790 (HD 4800)
+ATI Technologies Inc. ATI Radeon Redwood XT Prototype OpenGL Engine                                      supported      3     0     1.4    AMD REDWOOD (HD 5500/5600)
+ATI Technologies Inc. ATI Radeon Turks PRO Prototype OpenGL Engine                                       supported      3     0     2.1    AMD TURKS (HD 6500/6600)
+ATI Technologies Inc. ATI Radeon Turks XT Prototype OpenGL Engine                                        supported      3     0     2.1    AMD TURKS (HD 6500/6600)
+ATI Technologies Inc. ATI Radeon X1050                                                                   supported      2     0     2.1    ATI Radeon X1000
+ATI Technologies Inc. ATI Radeon X1050 Series                                                            supported      2     0     2.1    ATI Radeon X1000
+ATI Technologies Inc. ATI Radeon X1050 x86/MMX/3DNow!/SSE2                                               supported      2     0     2.1    ATI Radeon X1000
+ATI Technologies Inc. ATI Radeon X1050 x86/SSE2                                                          supported      2     0     2.1    ATI Radeon X1000
+ATI Technologies Inc. ATI Radeon X1200                                                                   supported      2     0     2.1    ATI Radeon X1200
+ATI Technologies Inc. ATI Radeon X1200 Series                                                            supported      2     0     2.1    ATI Radeon X1200
+ATI Technologies Inc. ATI Radeon X1200 Series (Microsoft Corporation - WDDM)                             supported      2     0     2.1    ATI Radeon X1200
+ATI Technologies Inc. ATI Radeon X1200 Series x86/MMX/3DNow!/SSE2                                        supported      2     0     2.1    ATI Radeon X1200
+ATI Technologies Inc. ATI Radeon X1200 x86/MMX/3DNow!/SSE2                                               supported      2     0     2.1    ATI Radeon X1200
+ATI Technologies Inc. ATI Radeon X1250                                                                   supported      2     0     2.1    ATI Radeon X1200
+ATI Technologies Inc. ATI Radeon X1250 x86/MMX/3DNow!/SSE2                                               supported      2     0     2.1    ATI Radeon X1200
+ATI Technologies Inc. ATI Radeon X1270                                                                   supported      2     0     2.1    ATI Radeon X1200
+ATI Technologies Inc. ATI Radeon X1270 x86/MMX/3DNow!/SSE2                                               supported      2     0     2.1    ATI Radeon X1200
+ATI Technologies Inc. ATI Radeon X1300 / X1550 Series                                                    supported      2     1     2.1    ATI Radeon X1300
+ATI Technologies Inc. ATI Radeon X1300/X1550 Series                                                      supported      2     1     2.1    ATI Radeon X1300
+ATI Technologies Inc. ATI Radeon X1550                                                                   supported      2     1     2.1    ATI Radeon X1500
+ATI Technologies Inc. ATI Radeon X1550 Series                                                            supported      2     1     2.1    ATI Radeon X1500
+ATI Technologies Inc. ATI Radeon X1550 Series x86/MMX/3DNow!/SSE2                                        supported      2     1     2.1    ATI Radeon X1500
+ATI Technologies Inc. ATI Radeon X1550 Series x86/SSE2                                                   supported      2     1     2.1    ATI Radeon X1500
+ATI Technologies Inc. ATI Radeon X1550 x86/MMX/3DNow!/SSE2                                               supported      2     1     2.1    ATI Radeon X1500
+ATI Technologies Inc. ATI Radeon X1550 x86/SSE2                                                          supported      2     1     2.1    ATI Radeon X1500
+ATI Technologies Inc. ATI Radeon X1600 OpenGL Engine                                                     supported      2     1     2.1    ATI Radeon X1600
+ATI Technologies Inc. ATI Radeon X1900 OpenGL Engine                                                     supported      2     1     2.1    ATI Radeon X1900
+ATI Technologies Inc. ATI Radeon X1950 GT                                                                supported      2     1     2.1    ATI Radeon X1900
+ATI Technologies Inc. ATI Radeon X1950 GT x86/MMX/3DNow!/SSE2                                            supported      2     1     2.1    ATI Radeon X1900
+ATI Technologies Inc. ATI Radeon X1950 GT x86/SSE2                                                       supported      2     1     2.1    ATI Radeon X1900
+ATI Technologies Inc. ATI Radeon X300/X550/X1050 Series                                                  supported      1     1     2.1    ATI Radeon X300
+ATI Technologies Inc. ATI Radeon X600/X550/X1050 Series                                                  supported      1     1     2.1    ATI Radeon X600
+ATI Technologies Inc. ATI Radeon Xpress 1100                                                             supported      0     1     2.1    ATI Radeon Xpress
+ATI Technologies Inc. ATI Radeon Xpress 1100 x86/SSE2                                                    supported      0     1     2.1    ATI Radeon Xpress
+ATI Technologies Inc. ATI Radeon Xpress 1150                                                             supported      0     1     2.1    ATI Radeon Xpress
+ATI Technologies Inc. ATI Radeon Xpress 1150 Series                                                      supported      0     1     2.1    ATI Radeon Xpress
+ATI Technologies Inc. ATI Radeon Xpress 1150 x86/MMX/3DNow!/SSE2                                         supported      0     1     2.1    ATI Radeon Xpress
+ATI Technologies Inc. ATI Radeon Xpress 1200 Series                                                      supported      0     1     2.1    ATI Radeon Xpress
+ATI Technologies Inc. ATI Radeon Xpress 1200 Series (Microsoft Corporation - WDDM)                       supported      0     1     2.1    ATI Radeon Xpress
+ATI Technologies Inc. ATI Radeon Xpress 1200 Series x86/MMX/3DNow!/SSE2                                  supported      0     1     2.1    ATI Radeon Xpress
+ATI Technologies Inc. ATI Radeon Xpress 1200 x86/MMX/3DNow!/SSE2                                         supported      0     1     2.1    ATI Radeon Xpress
+ATI Technologies Inc. ATI Radeon Xpress 1250                                                             supported      0     1     2.1    ATI Radeon Xpress
+ATI Technologies Inc. ATI Radeon Xpress 1250 x86/MMX/3DNow!/SSE2                                         supported      0     1     2.1    ATI Radeon Xpress
+ATI Technologies Inc. ATI Radeon Xpress 1250 x86/SSE2                                                    supported      0     1     2.1    ATI Radeon Xpress
+ATI Technologies Inc. ATI Radeon Xpress 1270 x86/MMX/3DNow!/SSE2                                         supported      0     1     2.1    ATI Radeon Xpress
+ATI Technologies Inc. ATI Radeon Xpress Series                                                           supported      0     1     2.1    ATI Radeon Xpress
+ATI Technologies Inc. ATI Radeon Xpress Series x86/MMX/3DNow!/SSE2                                       supported      0     1     2.1    ATI Radeon Xpress
+ATI Technologies Inc. All-in-Wonder 2006 PCI-E Edition                                                   supported      1     0     0      ATI All-in-Wonder PCI-E
+ATI Technologies Inc. All-in-Wonder 2006 PCI-E Edition x86/MMX/3DNow!/SSE2                               supported      1     0     0      ATI All-in-Wonder PCI-E
+ATI Technologies Inc. Diamond Radeon X1550                                                               supported      2     1     2.1    ATI Radeon X1500
+ATI Technologies Inc. Diamond Radeon X1550 Series                                                        supported      2     1     2.1    ATI Radeon X1500
+ATI Technologies Inc. Diamond Radeon X1550 Series x86/SSE2                                               supported      2     1     2.1    ATI Radeon X1500
+ATI Technologies Inc. Diamond Radeon X1550 x86/SSE2                                                      supported      2     1     2.1    ATI Radeon X1500
+ATI Technologies Inc. Diamond X1600 PRO 512MB PCI-E x86/MMX/3DNow!/SSE2                                  supported      2     1     2.1    ATI Radeon X1600
+ATI Technologies Inc. FireGL V3100 Pentium 4 (SSE2)                                                      supported      4     1     4.2    ATI FireGL
+ATI Technologies Inc. FireGL V3200 Pentium 4 (SSE2)                                                      supported      4     1     4.2    ATI FireGL
+ATI Technologies Inc. FireGL X1-128                                                                      supported      4     1     4.2    ATI FireGL
+ATI Technologies Inc. FireMV 2400 PCI DDR x86                                                            supported      0     1     3.2    ATI FireMV
+ATI Technologies Inc. FireMV 2400 PCI DDR x86/SSE2                                                       supported      0     1     3.2    ATI FireMV
+ATI Technologies Inc. FirePro M3900 Mobility Professional Graphics                                       supported      2     0     4.1    ATI FirePro M3900
+ATI Technologies Inc. GIGABYTE RADEON 9600 PRO                                                           supported      0     1     2.1    ATI Radeon 9600
+ATI Technologies Inc. GIGABYTE Radeon X1300 Pro                                                          supported      2     1     2.1    ATI Radeon X1300
+ATI Technologies Inc. GIGABYTE Radeon X1300 Series                                                       supported      2     1     2.1    ATI Radeon X1300
+ATI Technologies Inc. GIGABYTE Radeon X1600 PRO                                                          supported      2     1     2.1    ATI Radeon X1600
+ATI Technologies Inc. GeCube RADEON 9600XT                                                               supported      0     1     2.1    ATI Radeon 9600
+ATI Technologies Inc. GeCube RADEON X550 x86/SSE2                                                        supported      1     1     2.1    ATI Radeon X500
+ATI Technologies Inc. GeCube RADEON X700 Series                                                          supported      2     1     2.1    ATI Radeon X700
+ATI Technologies Inc. GeCube Radeon X1550                                                                supported      2     1     2.1    ATI Radeon X1500
+ATI Technologies Inc. GeCube Radeon X1550 Series                                                         supported      2     1     2.1    ATI Radeon X1500
+ATI Technologies Inc. GeForce 9600 GT x86/SSE2                                                           unsupported    0     0     0      ATI GeForce Lulz
+ATI Technologies Inc. GigaByte Radeon X1050                                                              supported      2     0     2.1    ATI Radeon X1000
+ATI Technologies Inc. Gigabyte RADEON X300                                                               supported      1     1     2.1    ATI Radeon X300
+ATI Technologies Inc. Gigabyte RADEON X300 SE                                                            supported      1     1     2.1    ATI Radeon X300
+ATI Technologies Inc. Gigabyte RADEON X300 x86/SSE2                                                      supported      1     1     2.1    ATI Radeon X300
+ATI Technologies Inc. HD3730                                                                             supported      3     0     3.3    ATI HD3700
+ATI Technologies Inc. HIGHTECH EXCALIBUR RADEON 9550SE Series                                            supported      0     1     2.1    ATI Radeon 9500
+ATI Technologies Inc. HIGHTECH EXCALIBUR RADEON 9550SE Series x86/SSE2                                   supported      0     1     2.1    ATI Radeon 9500
+ATI Technologies Inc. HIGHTECH RADEON 9600XT                                                             supported      0     1     2.1    ATI Radeon 9600
+ATI Technologies Inc. HIS Radeon X1550 x86/SSE2                                                          supported      2     1     2.1    ATI Radeon X1500
+ATI Technologies Inc. M52 x86                                                                            supported      1     0     0      ATI M52
+ATI Technologies Inc. M72-M                                                                              supported      1     0     0      ATI M72
+ATI Technologies Inc. MEDION RADEON 9600 TX                                                              supported      0     1     2.1    ATI Radeon 9600
+ATI Technologies Inc. MEDION RADEON X740XL x86/SSE2                                                      supported      2     1     2.1    ATI Radeon X700
+ATI Technologies Inc. MOBILITY FIREGL T2 Pentium 4 (SSE2)                                                supported      4     1     4.2    ATI FireGL
+ATI Technologies Inc. MOBILITY RADEON 7000 IGP DDR x86/SSE2                                              supported      0     1     1.3    ATI Mobility Radeon 7xxx
+ATI Technologies Inc. MOBILITY RADEON 7500 DDR x86/SSE2                                                  supported      0     1     1.3    ATI Mobility Radeon 7xxx
+ATI Technologies Inc. MOBILITY RADEON 9000 DDR x86                                                       supported      0     1     1.3    ATI Radeon 9000
+ATI Technologies Inc. MOBILITY RADEON 9000 DDR x86/SSE2                                                  supported      0     1     1.3    ATI Radeon 9000
+ATI Technologies Inc. MOBILITY RADEON 9000 IGPRADEON 9100 IGP DDR x86                                    supported      0     1     1.3    ATI Radeon 9000
+ATI Technologies Inc. MOBILITY RADEON 9000 IGPRADEON 9100 IGP DDR x86/SSE2                               supported      0     1     1.3    ATI Radeon 9000
+ATI Technologies Inc. MOBILITY RADEON 9000/9100 IGP Series DDR x86/SSE2                                  supported      0     1     1.3    ATI Radeon 9000
+ATI Technologies Inc. MOBILITY RADEON 9000/9100 PRO IGP Series DDR x86/SSE2                              supported      0     1     1.3    ATI Radeon 9000
+ATI Technologies Inc. MOBILITY RADEON 9200 DDR x86/SSE2                                                  supported      0     1     1.3    ATI Radeon 9200
+ATI Technologies Inc. MOBILITY RADEON 9600 x86                                                           supported      1     1     2.1    ATI Mobility Radeon 9600
+ATI Technologies Inc. MOBILITY RADEON 9600 x86/MMX/3DNow!/SSE2                                           supported      1     1     2.1    ATI Mobility Radeon 9600
+ATI Technologies Inc. MOBILITY RADEON 9600 x86/SSE2                                                      supported      1     1     2.1    ATI Mobility Radeon 9600
+ATI Technologies Inc. MOBILITY RADEON 9700 x86                                                           supported      0     1     2.1    ATI Mobility Radeon 9700
+ATI Technologies Inc. MOBILITY RADEON 9700 x86/MMX/3DNow!/SSE2                                           supported      0     1     2.1    ATI Mobility Radeon 9700
+ATI Technologies Inc. MOBILITY RADEON 9700 x86/SSE2                                                      supported      0     1     2.1    ATI Mobility Radeon 9700
+ATI Technologies Inc. MOBILITY RADEON 9800 x86/SSE2                                                      supported      1     0     0      ATI Mobility Radeon 9800
+ATI Technologies Inc. MOBILITY RADEON X300 x86                                                           supported      1     1     2.1    ATI Radeon X300
+ATI Technologies Inc. MOBILITY RADEON X300 x86/SSE2                                                      supported      1     1     2.1    ATI Radeon X300
+ATI Technologies Inc. MOBILITY RADEON X600 SE x86/SSE2                                                   supported      1     1     2.1    ATI Radeon X600
+ATI Technologies Inc. MOBILITY RADEON X600 x86                                                           supported      1     1     2.1    ATI Radeon X600
+ATI Technologies Inc. MOBILITY RADEON X600 x86/SSE2                                                      supported      1     1     2.1    ATI Radeon X600
+ATI Technologies Inc. MOBILITY RADEON X700 SE x86/SSE2                                                   supported      2     1     2.1    ATI Radeon X700
+ATI Technologies Inc. MOBILITY RADEON X700 x86/MMX/3DNow!/SSE2                                           supported      2     1     2.1    ATI Radeon X700
+ATI Technologies Inc. MOBILITY RADEON X700 x86/SSE2                                                      supported      2     1     2.1    ATI Radeon X700
+ATI Technologies Inc. MOBILITY RADEON Xpress 200 Series SW TCL x86/MMX/3DNow!/SSE2                       supported      0     1     2.1    ATI Radeon Xpress
+ATI Technologies Inc. MOBILITY/RADEON 9000 DDR x86/MMX/3DNow!/SSE2                                       supported      0     1     1.3    ATI Radeon 9000
+ATI Technologies Inc. MOBILITY/RADEON 9000 DDR x86/SSE2                                                  supported      0     1     1.3    ATI Radeon 9000
+ATI Technologies Inc. MOBILITY/RADEON 9250/9200 Series DDR x86/MMX/3DNow!/SSE2                           supported      0     1     1.3    ATI Radeon 9200
+ATI Technologies Inc. MOBILITY/RADEON 9250/9200 Series DDR x86/SSE2                                      supported      0     1     1.3    ATI Radeon 9200
+ATI Technologies Inc. MSI RX9550SE x86/MMX/3DNow!/SSE                                                    supported      1     0     0      ATI Radeon RX9550
+ATI Technologies Inc. MSI Radeon X1550                                                                   supported      2     1     2.1    ATI Radeon X1500
+ATI Technologies Inc. Mobility Radeon X2300 HD                                                           supported      2     0     2.1    ATI Mobility Radeon X2300
+ATI Technologies Inc. Mobility Radeon X2300 HD x86/SSE2                                                  supported      2     0     2.1    ATI Mobility Radeon X2300
+ATI Technologies Inc. RADEON 7000 DDR x86/MMX/3DNow!/SSE2                                                supported      0     1     2      ATI Radeon 7xxx
+ATI Technologies Inc. RADEON 7000 DDR x86/SSE2                                                           supported      0     1     2      ATI Radeon 7xxx
+ATI Technologies Inc. RADEON 7000 SDR x86                                                                supported      0     1     2      ATI Radeon 7xxx
+ATI Technologies Inc. RADEON 7000 SW TCL x86/SSE2                                                        supported      0     1     2      ATI Radeon 7xxx
+ATI Technologies Inc. RADEON 7200 DDR x86/MMX/3DNow!/SSE2                                                supported      0     1     2      ATI Radeon 7xxx
+ATI Technologies Inc. RADEON 7200 DDR x86/SSE2                                                           supported      0     1     2      ATI Radeon 7xxx
+ATI Technologies Inc. RADEON 7200 SDR x86/SSE2                                                           supported      0     1     2      ATI Radeon 7xxx
+ATI Technologies Inc. RADEON 7500 DDR x86/SSE2                                                           supported      0     1     2      ATI Radeon 7xxx
+ATI Technologies Inc. RADEON 8500 DDR x86/MMX/3DNow!/SSE2                                                supported      0     0     0      ATI Radeon 8xxx
+ATI Technologies Inc. RADEON 8500 DDR x86/SSE2                                                           supported      0     0     0      ATI Radeon 8xxx
+ATI Technologies Inc. RADEON 9000 DDR x86/MMX/3DNow!/SSE2                                                supported      0     1     1.3    ATI Radeon 9000
+ATI Technologies Inc. RADEON 9000 DDR x86/SSE2                                                           supported      0     1     1.3    ATI Radeon 9000
+ATI Technologies Inc. RADEON 9000 PRO DDR x86/SSE2                                                       supported      0     1     1.3    ATI Radeon 9000
+ATI Technologies Inc. RADEON 9000 XT IGPRADEON 9100 XT IGP DDR x86/SSE2                                  supported      0     1     1.3    ATI Radeon 9000
+ATI Technologies Inc. RADEON 9100 DDR x86/MMX/3DNow!/SSE2                                                supported      0     0     0      ATI Radeon 9100
+ATI Technologies Inc. RADEON 9100 DDR x86/SSE2                                                           supported      0     0     0      ATI Radeon 9100
+ATI Technologies Inc. RADEON 9100 IGP DDR x86                                                            supported      0     0     0      ATI Radeon 9100
+ATI Technologies Inc. RADEON 9100 IGP DDR x86/SSE2                                                       supported      0     0     0      ATI Radeon 9100
+ATI Technologies Inc. RADEON 9200 DDR x86/MMX/3DNow!/SSE2                                                supported      0     1     1.3    ATI Radeon 9200
+ATI Technologies Inc. RADEON 9200 DDR x86/SSE2                                                           supported      0     1     1.3    ATI Radeon 9200
+ATI Technologies Inc. RADEON 9200 LE DDR x86/SSE2                                                        supported      0     1     1.3    ATI Radeon 9200
+ATI Technologies Inc. RADEON 9200 PRO DDR x86/SSE2                                                       supported      0     1     1.3    ATI Radeon 9200
+ATI Technologies Inc. RADEON 9200 Series DDR x86                                                         supported      0     1     1.3    ATI Radeon 9200
+ATI Technologies Inc. RADEON 9200 Series DDR x86/MMX/3DNow!                                              supported      0     1     1.3    ATI Radeon 9200
+ATI Technologies Inc. RADEON 9200 Series DDR x86/MMX/3DNow!/SSE2                                         supported      0     1     1.3    ATI Radeon 9200
+ATI Technologies Inc. RADEON 9200 Series DDR x86/SSE2                                                    supported      0     1     1.3    ATI Radeon 9200
+ATI Technologies Inc. RADEON 9200SE DDR x86/MMX/3DNow!/SSE2                                              supported      0     1     1.3    ATI Radeon 9200
+ATI Technologies Inc. RADEON 9200SE DDR x86/SSE2                                                         supported      0     1     1.3    ATI Radeon 9200
+ATI Technologies Inc. RADEON 9250/9000 Series DDR x86/MMX/3DNow!/SSE2                                    supported      0     1     1.3    ATI Radeon 9200
+ATI Technologies Inc. RADEON 9250/9200 Series DDR x86/MMX/3DNow!/SSE2                                    supported      0     1     1.3    ATI Radeon 9200
+ATI Technologies Inc. RADEON 9250/9200 Series DDR x86/SSE2                                               supported      0     1     1.3    ATI Radeon 9200
+ATI Technologies Inc. RADEON 9500                                                                        supported      0     1     2.1    ATI Radeon 9500
+ATI Technologies Inc. RADEON 9500 PRO / 9700                                                             supported      0     1     2.1    ATI Radeon 9500
+ATI Technologies Inc. RADEON 9550                                                                        supported      0     1     2.1    ATI Radeon 9500
+ATI Technologies Inc. RADEON 9550 x86/MMX/3DNow!/SSE2                                                    supported      0     1     2.1    ATI Radeon 9500
+ATI Technologies Inc. RADEON 9550 x86/SSE2                                                               supported      0     1     2.1    ATI Radeon 9500
+ATI Technologies Inc. RADEON 9600 SERIES                                                                 supported      0     1     2.1    ATI Radeon 9600
+ATI Technologies Inc. RADEON 9600 TX                                                                     supported      0     1     2.1    ATI Radeon 9600
+ATI Technologies Inc. RADEON 9600 TX x86/SSE2                                                            supported      0     1     2.1    ATI Radeon 9600
+ATI Technologies Inc. RADEON 9600 XT x86/MMX/3DNow!/SSE2                                                 supported      0     1     2.1    ATI Radeon 9600
+ATI Technologies Inc. RADEON 9600 XT x86/SSE2                                                            supported      0     1     2.1    ATI Radeon 9600
+ATI Technologies Inc. RADEON 9600 x86/MMX/3DNow!/SSE2                                                    supported      0     1     2.1    ATI Radeon 9600
+ATI Technologies Inc. RADEON 9600 x86/SSE2                                                               supported      0     1     2.1    ATI Radeon 9600
+ATI Technologies Inc. RADEON 9600SE x86/MMX/3DNow!/SSE2                                                  supported      0     1     2.1    ATI Radeon 9600
+ATI Technologies Inc. RADEON 9600SE x86/SSE2                                                             supported      0     1     2.1    ATI Radeon 9600
+ATI Technologies Inc. RADEON 9700 PRO                                                                    supported      1     0     0      ATI Radeon 9700
+ATI Technologies Inc. RADEON 9800 PRO                                                                    supported      1     1     2.1    ATI Radeon 9800
+ATI Technologies Inc. RADEON 9800 PRO (Microsoft Corporation - WDDM)                                     supported      1     1     2.1    ATI Radeon 9800
+ATI Technologies Inc. RADEON 9800 PRO - Secondary                                                        supported      1     1     2.1    ATI Radeon 9800
+ATI Technologies Inc. RADEON 9800 Pro x86/SSE2                                                           supported      1     1     2.1    ATI Radeon 9800
+ATI Technologies Inc. RADEON 9800 SERIES                                                                 supported      1     1     2.1    ATI Radeon 9800
+ATI Technologies Inc. RADEON 9800 XT                                                                     supported      1     1     2.1    ATI Radeon 9800
+ATI Technologies Inc. RADEON 9800 XT x86/SSE2                                                            supported      1     1     2.1    ATI Radeon 9800
+ATI Technologies Inc. RADEON 9800 x86/SSE2                                                               supported      1     1     2.1    ATI Radeon 9800
+ATI Technologies Inc. RADEON IGP 340M DDR x86/SSE2                                                       unsupported    0     0     1.3    ATI IGP 340M
+ATI Technologies Inc. RADEON Radeon X300/X550/X1050 Series x86/SSE2                                      supported      1     1     2.1    ATI Radeon X300
+ATI Technologies Inc. RADEON X1600 Series x86/MMX/3DNow!/SSE2                                            supported      2     1     2.1    ATI Radeon X1600
+ATI Technologies Inc. RADEON X1600 Series x86/SSE2                                                       supported      2     1     2.1    ATI Radeon X1600
+ATI Technologies Inc. RADEON X300 SE 128MB HyperMemory x86/SSE2                                          supported      1     1     2.1    ATI Radeon X300
+ATI Technologies Inc. RADEON X300 SE x86/MMX/3DNow!/SSE2                                                 supported      1     1     2.1    ATI Radeon X300
+ATI Technologies Inc. RADEON X300 Series                                                                 supported      1     1     2.1    ATI Radeon X300
+ATI Technologies Inc. RADEON X300 Series x86/SSE2                                                        supported      1     1     2.1    ATI Radeon X300
+ATI Technologies Inc. RADEON X300 x86/MMX/3DNow!/SSE2                                                    supported      1     1     2.1    ATI Radeon X300
+ATI Technologies Inc. RADEON X300 x86/SSE2                                                               supported      1     1     2.1    ATI Radeon X300
+ATI Technologies Inc. RADEON X300/X550 Series x86                                                        supported      1     1     2.1    ATI Radeon X300
+ATI Technologies Inc. RADEON X300/X550 Series x86/MMX/3DNow!/SSE2                                        supported      1     1     2.1    ATI Radeon X300
+ATI Technologies Inc. RADEON X300/X550 Series x86/SSE2                                                   supported      1     1     2.1    ATI Radeon X300
+ATI Technologies Inc. RADEON X550 x86/MMX/3DNow!                                                         supported      1     1     2.1    ATI Radeon X500
+ATI Technologies Inc. RADEON X550 x86/MMX/3DNow!/SSE2                                                    supported      1     1     2.1    ATI Radeon X500
+ATI Technologies Inc. RADEON X550 x86/SSE2                                                               supported      1     1     2.1    ATI Radeon X500
+ATI Technologies Inc. RADEON X550XT                                                                      supported      1     1     2.1    ATI Radeon X500
+ATI Technologies Inc. RADEON X600 256MB HyperMemory x86/SSE2                                             supported      1     1     2.1    ATI Radeon X600
+ATI Technologies Inc. RADEON X600 PRO x86/MMX/3DNow!/SSE2                                                supported      1     1     2.1    ATI Radeon X600
+ATI Technologies Inc. RADEON X600 PRO x86/SSE2                                                           supported      1     1     2.1    ATI Radeon X600
+ATI Technologies Inc. RADEON X600 SE x86/SSE2                                                            supported      1     1     2.1    ATI Radeon X600
+ATI Technologies Inc. RADEON X600 Series                                                                 supported      1     1     2.1    ATI Radeon X600
+ATI Technologies Inc. RADEON X600 x86/MMX/3DNow!/SSE2                                                    supported      1     1     2.1    ATI Radeon X600
+ATI Technologies Inc. RADEON X600 x86/SSE2                                                               supported      1     1     2.1    ATI Radeon X600
+ATI Technologies Inc. RADEON X600/X550 Series                                                            supported      1     1     2.1    ATI Radeon X600
+ATI Technologies Inc. RADEON X600/X550 Series (Microsoft Corporation - WDDM)                             supported      1     1     2.1    ATI Radeon X600
+ATI Technologies Inc. RADEON X600/X550 Series Secondary                                                  supported      1     1     2.1    ATI Radeon X600
+ATI Technologies Inc. RADEON X600/X550 Series x86/SSE2                                                   supported      1     1     2.1    ATI Radeon X600
+ATI Technologies Inc. RADEON X700 PRO x86/MMX/3DNow!/SSE2                                                supported      2     1     2.1    ATI Radeon X700
+ATI Technologies Inc. RADEON X700 PRO x86/SSE2                                                           supported      2     1     2.1    ATI Radeon X700
+ATI Technologies Inc. RADEON X700 SE                                                                     supported      2     1     2.1    ATI Radeon X700
+ATI Technologies Inc. RADEON X700 SE x86/MMX/3DNow!/SSE2                                                 supported      2     1     2.1    ATI Radeon X700
+ATI Technologies Inc. RADEON X700 SE x86/SSE2                                                            supported      2     1     2.1    ATI Radeon X700
+ATI Technologies Inc. RADEON X700 Series                                                                 supported      2     1     2.1    ATI Radeon X700
+ATI Technologies Inc. RADEON X700 Series x86/MMX/3DNow!/SSE2                                             supported      2     1     2.1    ATI Radeon X700
+ATI Technologies Inc. RADEON X700 Series x86/SSE2                                                        supported      2     1     2.1    ATI Radeon X700
+ATI Technologies Inc. RADEON X700 x86/SSE2                                                               supported      2     1     2.1    ATI Radeon X700
+ATI Technologies Inc. RADEON X700/X550 Series x86/SSE2                                                   supported      2     1     2.1    ATI Radeon X700
+ATI Technologies Inc. RADEON X800 GT x86/MMX/3DNow!/SSE2                                                 supported      1     1     2.1    ATI Radeon X800
+ATI Technologies Inc. RADEON X800 GTO                                                                    supported      1     1     2.1    ATI Radeon X800
+ATI Technologies Inc. RADEON X800 GTO x86/MMX/3DNow!/SSE2                                                supported      1     1     2.1    ATI Radeon X800
+ATI Technologies Inc. RADEON X800 GTO x86/SSE2                                                           supported      1     1     2.1    ATI Radeon X800
+ATI Technologies Inc. RADEON X800 PRO/GTO                                                                supported      1     1     2.1    ATI Radeon X800
+ATI Technologies Inc. RADEON X800 SE x86/MMX/3DNow!/SSE2                                                 supported      1     1     2.1    ATI Radeon X800
+ATI Technologies Inc. RADEON X800 SE x86/SSE2                                                            supported      1     1     2.1    ATI Radeon X800
+ATI Technologies Inc. RADEON X800 Series                                                                 supported      1     1     2.1    ATI Radeon X800
+ATI Technologies Inc. RADEON X800 XL x86/MMX/3DNow!/SSE2                                                 supported      1     1     2.1    ATI Radeon X800
+ATI Technologies Inc. RADEON X800 XL x86/SSE2                                                            supported      1     1     2.1    ATI Radeon X800
+ATI Technologies Inc. RADEON X800 XT                                                                     supported      1     1     2.1    ATI Radeon X800
+ATI Technologies Inc. RADEON X800 XT (Microsoft Corporation - WDDM)                                      supported      1     1     2.1    ATI Radeon X800
+ATI Technologies Inc. RADEON X800 XT x86/SSE2                                                            supported      1     1     2.1    ATI Radeon X800
+ATI Technologies Inc. RADEON X800/X850 Series                                                            supported      1     1     2.1    ATI Radeon X800
+ATI Technologies Inc. RADEON X800GT                                                                      supported      1     1     2.1    ATI Radeon X800
+ATI Technologies Inc. RADEON X850 Series                                                                 supported      1     1     2.1    ATI Radeon X800
+ATI Technologies Inc. RADEON X850 XT Platinum Edition (Microsoft Corporation - WDDM)                     supported      1     1     2.1    ATI Radeon X800
+ATI Technologies Inc. RADEON X850 XT Platinum Edition x86/SSE2                                           supported      1     1     2.1    ATI Radeon X800
+ATI Technologies Inc. RADEON X850 XT x86/SSE2                                                            supported      1     1     2.1    ATI Radeon X800
+ATI Technologies Inc. RADEON XPRESS 200 Series SW TCL x86                                                supported      0     1     2.1    ATI Radeon Xpress
+ATI Technologies Inc. RADEON XPRESS 200 Series SW TCL x86/MMX/3DNow!                                     supported      0     1     2.1    ATI Radeon Xpress
+ATI Technologies Inc. RADEON XPRESS 200 Series SW TCL x86/MMX/3DNow!/SSE2                                supported      0     1     2.1    ATI Radeon Xpress
+ATI Technologies Inc. RADEON XPRESS 200 Series SW TCL x86/SSE2                                           supported      0     1     2.1    ATI Radeon Xpress
+ATI Technologies Inc. RADEON XPRESS 200 Series x86/MMX/3DNow!/SSE2                                       supported      0     1     2.1    ATI Radeon Xpress
+ATI Technologies Inc. RADEON XPRESS 200 Series x86/SSE2                                                  supported      0     1     2.1    ATI Radeon Xpress
+ATI Technologies Inc. RADEON XPRESS 200M Series (Microsoft Corporation - WDDM)                           supported      0     1     2.1    ATI Radeon Xpress
+ATI Technologies Inc. RADEON XPRESS 200M Series SW TCL x86                                               supported      0     1     2.1    ATI Radeon Xpress
+ATI Technologies Inc. RADEON XPRESS 200M Series SW TCL x86/MMX/3DNow!                                    supported      0     1     2.1    ATI Radeon Xpress
+ATI Technologies Inc. RADEON XPRESS 200M Series SW TCL x86/MMX/3DNow!/SSE2                               supported      0     1     2.1    ATI Radeon Xpress
+ATI Technologies Inc. RADEON XPRESS 200M Series SW TCL x86/SSE2                                          supported      0     1     2.1    ATI Radeon Xpress
+ATI Technologies Inc. RADEON XPRESS 200M Series x86/MMX/3DNow!                                           supported      0     1     2.1    ATI Radeon Xpress
+ATI Technologies Inc. RADEON XPRESS 200M Series x86/MMX/3DNow!/SSE2                                      supported      0     1     2.1    ATI Radeon Xpress
+ATI Technologies Inc. RADEON XPRESS 200M Series x86/SSE2                                                 supported      0     1     2.1    ATI Radeon Xpress
+ATI Technologies Inc. RADEON XPRESS Series x86/MMX/3DNow!/SSE2                                           supported      0     1     2.1    ATI Radeon Xpress
+ATI Technologies Inc. RADEON XPRESS Series x86/SSE2                                                      supported      0     1     2.1    ATI Radeon Xpress
+ATI Technologies Inc. RADEON Xpress 200 Series SW TCL x86/MMX/3DNow!/SSE2                                supported      0     1     2.1    ATI Radeon Xpress
+ATI Technologies Inc. RADEON Xpress 200G Series SW TCL x86/MMX/3DNow!/SSE2                               supported      0     1     2.1    ATI Radeon Xpress
+ATI Technologies Inc. ROBSON CE                                                                          supported      3     0     4      ATI ROBSON
+ATI Technologies Inc. ROBSON LE                                                                          supported      3     0     4      ATI ROBSON
+ATI Technologies Inc. RS780M                                                                             supported      0     1     2.1    AMD RS780 (HD 3200)
+ATI Technologies Inc. RS880                                                                              supported      0     1     3.2    AMD RS880 (HD 4200)
+ATI Technologies Inc. RV250 DDR x86/SSE2                                                                 supported      0     0     0      ATI Radeon RV250
+ATI Technologies Inc. Radeon  X1300XT/X1600 Pro Series                                                   supported      2     1     2.1    ATI Radeon X1300
+ATI Technologies Inc. Radeon  X1300XT/X1600Pro/X1650 Series                                              supported      2     1     2.1    ATI Radeon X1300
+ATI Technologies Inc. Radeon (TM)  HD 7670M                                                              supported      3     0     4.2    ATI Radeon HD 7600
+ATI Technologies Inc. Radeon (TM) HD 6370M                                                               supported      1     1     4.2    ATI Radeon HD 6300
+ATI Technologies Inc. Radeon (TM) HD 6470M                                                               supported      3     1     4.2    ATI Radeon HD 6400
+ATI Technologies Inc. Radeon (TM) HD 6490M                                                               supported      3     1     4.2    ATI Radeon HD 6400
+ATI Technologies Inc. Radeon (TM) HD 6630M                                                               supported      3     1     4.2    ATI Radeon HD 6600
+ATI Technologies Inc. Radeon (TM) HD 6750M                                                               supported      3     1     4.2    ATI Radeon HD 6700
+ATI Technologies Inc. Radeon (TM) HD 6770M                                                               supported      3     1     4.2    ATI Radeon HD 6700
+ATI Technologies Inc. Radeon (TM) HD 6850M                                                               supported      4     1     4.2    ATI Radeon HD 6800
+ATI Technologies Inc. Radeon (TM) HD 7450M                                                               supported      2     0     4.2    ATI Radeon HD 7400
+ATI Technologies Inc. Radeon (TM) HD 7470M                                                               supported      2     0     4.2    ATI Radeon HD 7400
+ATI Technologies Inc. Radeon (TM) HD 7670M                                                               supported      3     0     4.2    ATI Radeon HD 7600
+ATI Technologies Inc. Radeon (TM) HD 7690M XT                                                            supported      3     0     4.2    ATI Radeon HD 7600
+ATI Technologies Inc. Radeon (TM) HD 7750M                                                               supported      4     1     4.2    ATI Radeon HD 7700
+ATI Technologies Inc. Radeon (TM) HD 7850M                                                               supported      5     1     4.2    ATI Radeon HD 7800
+ATI Technologies Inc. Radeon (TM) HD 8750M                                                               supported      4     1     4.2    ATI Radeon HD 8700 (OEM)
+ATI Technologies Inc. Radeon 7000 DDR x86/SSE2                                                           supported      0     1     2      ATI Radeon 7xxx
+ATI Technologies Inc. Radeon 7500 DDR x86                                                                supported      0     1     2      ATI Radeon 7xxx
+ATI Technologies Inc. Radeon 7500 DDR x86/SSE2                                                           supported      0     1     2      ATI Radeon 7xxx
+ATI Technologies Inc. Radeon 9100 DDR x86/MMX/3DNow!/SSE2                                                supported      0     0     0      ATI Radeon 9100
+ATI Technologies Inc. Radeon 9200 DDR x86/SSE2                                                           supported      0     1     1.3    ATI Radeon 9200
+ATI Technologies Inc. Radeon HD 2600 PRO (Omega 3.8.442)                                                 supported      2     1     4      ATI Radeon HD 2600
+ATI Technologies Inc. Radeon HD 6470M                                                                    supported      3     1     4.2    ATI Radeon HD 6400
+ATI Technologies Inc. Radeon HD 6490M                                                                    supported      3     1     4.2    ATI Radeon HD 6400
+ATI Technologies Inc. Radeon HD 6800 Series                                                              supported      4     1     4.2    ATI Radeon HD 6800
+ATI Technologies Inc. Radeon Radeon X300/X550/X1050 Series x86/SSE2                                      supported      1     1     2.1    ATI Radeon X300
+ATI Technologies Inc. Radeon X1050                                                                       supported      2     0     2.1    ATI Radeon X1000
+ATI Technologies Inc. Radeon X1050 Series (Omega 3.8.442)                                                supported      2     0     2.1    ATI Radeon X1000
+ATI Technologies Inc. Radeon X1200 Series (Omega 3.8.442)                                                supported      2     0     2.1    ATI Radeon X1200
+ATI Technologies Inc. Radeon X1300 / X1550 Series                                                        supported      2     1     2.1    ATI Radeon X1300
+ATI Technologies Inc. Radeon X1300 / X1550 Series  (Microsoft Corporation - WDDM)                        supported      2     1     2.1    ATI Radeon X1300
+ATI Technologies Inc. Radeon X1300 / X1550 Series (Microsoft Corporation - WDDM)                         supported      2     1     2.1    ATI Radeon X1300
+ATI Technologies Inc. Radeon X1300 / X1600 Series                                                        supported      2     1     2.1    ATI Radeon X1300
+ATI Technologies Inc. Radeon X1300 Series                                                                supported      2     1     2.1    ATI Radeon X1300
+ATI Technologies Inc. Radeon X1300 Series x86/MMX/3DNow!/SSE2                                            supported      2     1     2.1    ATI Radeon X1300
+ATI Technologies Inc. Radeon X1300 Series x86/SSE2                                                       supported      2     1     2.1    ATI Radeon X1300
+ATI Technologies Inc. Radeon X1300/X1550 Series                                                          supported      2     1     2.1    ATI Radeon X1300
+ATI Technologies Inc. Radeon X1300/X1550 Series  (Microsoft Corporation - WDDM)                          supported      2     1     2.1    ATI Radeon X1300
+ATI Technologies Inc. Radeon X1300/X1550 Series (Microsoft Corporation - WDDM)                           supported      2     1     2.1    ATI Radeon X1300
+ATI Technologies Inc. Radeon X1300/X1550 Series (Omega 3.8.442)                                          supported      2     1     2.1    ATI Radeon X1300
+ATI Technologies Inc. Radeon X1300/X1550 Series x86/MMX/3DNow!/SSE2                                      supported      2     1     2.1    ATI Radeon X1300
+ATI Technologies Inc. Radeon X1300/X1550 Series x86/SSE2                                                 supported      2     1     2.1    ATI Radeon X1300
+ATI Technologies Inc. Radeon X1550 64-bit (Microsoft Corporation - WDDM)                                 supported      2     1     2.1    ATI Radeon X1500
+ATI Technologies Inc. Radeon X1550 64-bit x86/SSE2                                                       supported      2     1     2.1    ATI Radeon X1500
+ATI Technologies Inc. Radeon X1550 Series                                                                supported      2     1     2.1    ATI Radeon X1500
+ATI Technologies Inc. Radeon X1550 Series (Microsoft Corporation - WDDM)                                 supported      2     1     2.1    ATI Radeon X1500
+ATI Technologies Inc. Radeon X1550 Series x86/MMX/3DNow!/SSE2                                            supported      2     1     2.1    ATI Radeon X1500
+ATI Technologies Inc. Radeon X1550 Series x86/SSE2                                                       supported      2     1     2.1    ATI Radeon X1500
+ATI Technologies Inc. Radeon X1600                                                                       supported      2     1     2.1    ATI Radeon X1600
+ATI Technologies Inc. Radeon X1600 Pro / X1300XT                                                         supported      2     1     2.1    ATI Radeon X1600
+ATI Technologies Inc. Radeon X1600 Pro / X1300XT x86/SSE2                                                supported      2     1     2.1    ATI Radeon X1600
+ATI Technologies Inc. Radeon X1600 Series                                                                supported      2     1     2.1    ATI Radeon X1600
+ATI Technologies Inc. Radeon X1600 Series (Microsoft Corporation - WDDM)                                 supported      2     1     2.1    ATI Radeon X1600
+ATI Technologies Inc. Radeon X1600 Series (Omega 3.8.442)                                                supported      2     1     2.1    ATI Radeon X1600
+ATI Technologies Inc. Radeon X1600 Series x86/MMX/3DNow!/SSE2                                            supported      2     1     2.1    ATI Radeon X1600
+ATI Technologies Inc. Radeon X1600 Series x86/SSE2                                                       supported      2     1     2.1    ATI Radeon X1600
+ATI Technologies Inc. Radeon X1600 x86/SSE2                                                              supported      2     1     2.1    ATI Radeon X1600
+ATI Technologies Inc. Radeon X1600/1650 Series                                                           supported      2     1     2.1    ATI Radeon X1600
+ATI Technologies Inc. Radeon X1600/X1650 Series                                                          supported      2     1     2.1    ATI Radeon X1600
+ATI Technologies Inc. Radeon X1600/X1650 Series x86/SSE2                                                 supported      2     1     2.1    ATI Radeon X1600
+ATI Technologies Inc. Radeon X1650 GTO                                                                   supported      2     1     2.1    ATI Radeon X1600
+ATI Technologies Inc. Radeon X1650 SE                                                                    supported      2     1     2.1    ATI Radeon X1600
+ATI Technologies Inc. Radeon X1650 SE x86/SSE2                                                           supported      2     1     2.1    ATI Radeon X1600
+ATI Technologies Inc. Radeon X1650 Series                                                                supported      2     1     2.1    ATI Radeon X1600
+ATI Technologies Inc. Radeon X1650 Series  (Microsoft Corporation - WDDM)                                supported      2     1     2.1    ATI Radeon X1600
+ATI Technologies Inc. Radeon X1650 Series (Microsoft Corporation - WDDM)                                 supported      2     1     2.1    ATI Radeon X1600
+ATI Technologies Inc. Radeon X1650 Series (Omega 3.8.442)                                                supported      2     1     2.1    ATI Radeon X1600
+ATI Technologies Inc. Radeon X1650 Series x86/MMX/3DNow!/SSE2                                            supported      2     1     2.1    ATI Radeon X1600
+ATI Technologies Inc. Radeon X1650 Series x86/SSE2                                                       supported      2     1     2.1    ATI Radeon X1600
+ATI Technologies Inc. Radeon X1650/X1700 Series (Omega 3.8.442)                                          supported      2     1     2.1    ATI Radeon X1600
+ATI Technologies Inc. Radeon X1700 FSC                                                                   supported      2     1     2.1    ATI Radeon X1700
+ATI Technologies Inc. Radeon X1800 CrossFire Edition                                                     supported      3     1     2.1    ATI Radeon X1800
+ATI Technologies Inc. Radeon X1800 Series                                                                supported      3     1     2.1    ATI Radeon X1800
+ATI Technologies Inc. Radeon X1800 Series x86/MMX/3DNow!/SSE2                                            supported      3     1     2.1    ATI Radeon X1800
+ATI Technologies Inc. Radeon X1900 CrossFire Edition                                                     supported      2     1     2.1    ATI Radeon X1900
+ATI Technologies Inc. Radeon X1900 GT                                                                    supported      2     1     2.1    ATI Radeon X1900
+ATI Technologies Inc. Radeon X1900 GT x86/SSE2                                                           supported      2     1     2.1    ATI Radeon X1900
+ATI Technologies Inc. Radeon X1900 Series                                                                supported      2     1     2.1    ATI Radeon X1900
+ATI Technologies Inc. Radeon X1900 Series (Microsoft Corporation - WDDM)                                 supported      2     1     2.1    ATI Radeon X1900
+ATI Technologies Inc. Radeon X1900 Series x86/MMX/3DNow!/SSE2                                            supported      2     1     2.1    ATI Radeon X1900
+ATI Technologies Inc. Radeon X1900 Series x86/SSE2                                                       supported      2     1     2.1    ATI Radeon X1900
+ATI Technologies Inc. Radeon X1950 CrossFire Edition                                                     supported      2     1     2.1    ATI Radeon X1900
+ATI Technologies Inc. Radeon X1950 Pro                                                                   supported      2     1     2.1    ATI Radeon X1900
+ATI Technologies Inc. Radeon X1950 Pro (Omega 3.8.442)                                                   supported      2     1     2.1    ATI Radeon X1900
+ATI Technologies Inc. Radeon X1950 Pro x86/MMX/3DNow!/SSE2                                               supported      2     1     2.1    ATI Radeon X1900
+ATI Technologies Inc. Radeon X1950 Pro x86/SSE2                                                          supported      2     1     2.1    ATI Radeon X1900
+ATI Technologies Inc. Radeon X1950 Series                                                                supported      2     1     2.1    ATI Radeon X1900
+ATI Technologies Inc. Radeon X1950 Series  (Microsoft Corporation - WDDM)                                supported      2     1     2.1    ATI Radeon X1900
+ATI Technologies Inc. Radeon X1950 Series (Microsoft Corporation - WDDM)                                 supported      2     1     2.1    ATI Radeon X1900
+ATI Technologies Inc. Radeon X1950 Series x86/MMX/3DNow!/SSE2                                            supported      2     1     2.1    ATI Radeon X1900
+ATI Technologies Inc. Radeon X1950 Series x86/SSE2                                                       supported      2     1     2.1    ATI Radeon X1900
+ATI Technologies Inc. Radeon X300/X550/X1050 Series                                                      supported      1     1     2.1    ATI Radeon X300
+ATI Technologies Inc. Radeon X300/X550/X1050 Series  (Microsoft Corporation - WDDM)                      supported      1     1     2.1    ATI Radeon X300
+ATI Technologies Inc. Radeon X300/X550/X1050 Series (Microsoft Corporation - WDDM)                       supported      1     1     2.1    ATI Radeon X300
+ATI Technologies Inc. Radeon X300/X550/X1050 Series (Omega 3.8.442)                                      supported      1     1     2.1    ATI Radeon X300
+ATI Technologies Inc. Radeon X300/X550/X1050 Series x86/SSE2                                             supported      1     1     2.1    ATI Radeon X300
+ATI Technologies Inc. Radeon X550/X700 Series                                                            supported      1     1     2.1    ATI Radeon X500
+ATI Technologies Inc. Radeon X550XTX                                                                     supported      1     1     2.1    ATI Radeon X500
+ATI Technologies Inc. Radeon Xpress 200 Series (Omega 3.8.442) x86/SSE2                                  supported      0     1     2.1    ATI Radeon Xpress
+ATI Technologies Inc. Radeon Xpress 200M Series (Omega 3.8.442)                                          supported      0     1     2.1    ATI Radeon Xpress
+ATI Technologies Inc. SAPPHIRE RADEON 9600 ATLANTIS                                                      supported      0     1     2.1    ATI Radeon 9600
+ATI Technologies Inc. SAPPHIRE RADEON X300SE                                                             supported      1     1     2.1    ATI Radeon X300
+ATI Technologies Inc. SAPPHIRE Radeon X1550                                                              supported      2     1     2.1    ATI Radeon X1500
+ATI Technologies Inc. SAPPHIRE Radeon X1550 Series                                                       supported      2     1     2.1    ATI Radeon X1500
+ATI Technologies Inc. SAPPHIRE Radeon X1550 Series x86/SSE2                                              supported      2     1     2.1    ATI Radeon X1500
+ATI Technologies Inc. SUMO 9640                                                                          supported      3     1     4.1    AMD SUMO
+ATI Technologies Inc. SUMO 964A                                                                          supported      3     1     4.1    AMD SUMO
+ATI Technologies Inc. Sapphire RADEON X1600 PRO                                                          supported      2     1     2.1    ATI Radeon X1600
+ATI Technologies Inc. Sapphire RADEON X1600 PRO x86/SSE2                                                 supported      2     1     2.1    ATI Radeon X1600
+ATI Technologies Inc. Sapphire RADEON X1600 XT                                                           supported      2     1     2.1    ATI Radeon X1600
+ATI Technologies Inc. Tul Corporation, RADEON  X1300 Series                                              supported      2     1     2.1    ATI Radeon X1300
+ATI Technologies Inc. Tul Corporation, RADEON  X300SE                                                    supported      1     1     2.1    ATI RADEON X300SE
+ATI Technologies Inc. VisionTek Radeon 4350                                                              supported      2     1     4      ATI Radeon HD 4300
+ATI Technologies Inc. VisionTek Radeon HD 2400 PCI                                                       supported      1     1     4      ATI Radeon HD 2400
+ATI Technologies Inc. VisionTek Radeon HD 2600 XT AGP                                                    supported      2     1     4      ATI Radeon HD 2600
+ATI Technologies Inc. VisionTek Radeon HD 5450                                                           supported      3     1     4.2    ATI Radeon HD 5400
+ATI Technologies Inc. VisionTek Radeon HD2400 Pro AGP                                                    supported      1     1     4      ATI Radeon HD 2400
+ATI Technologies Inc. VisionTek Radeon HD2400 Pro PCI                                                    supported      1     1     4      ATI Radeon HD 2400
+ATI Technologies Inc. VisionTek Radeon X1300                                                             supported      2     1     2.1    ATI Radeon X1300
+ATI Technologies Inc. VisionTek Radeon X1300 Series                                                      supported      2     1     2.1    ATI Radeon X1300
+ATI Technologies Inc. VisionTek Radeon X1300 XGE                                                         supported      2     1     2.1    ATI Radeon X1300
+ATI Technologies Inc. VisionTek Radeon X1550 Series                                                      supported      2     1     2.1    ATI Radeon X1500
+ATI Technologies Inc. WRESTLER 9802                                                                      supported      3     1     4      AMD WRESTLER
+ATI Technologies Inc. XFX Radeon HD 4570                                                                 supported      2     1     3.3    ATI Radeon HD 4500
+Advanced Micro Devices, Inc. Mesa DRI R600 (RS880 9712) 20090101 x86/MMX+/3DNow!+/SSE2 TCL DRI2          supported      0     1     3.2    AMD RS880 (HD 4200)
+Alex Mohr GL Hijacker!                                                                                   unsupported    0     0     0      Hijacker
+Brian Paul Mesa X11                                                                                      unsupported    1     1     3      Mesa
+Gallium                                                                                                  supported      1     1     2.1    Gallium
+Humper                                                                                                   supported      0     1     2.1    Humper
+Humper Chromium                                                                                          supported      0     1     2.1    Humper
+Imagination Technologies 3D-Analyze v2.3 - http://www.tommti-systems.com                                 unsupported    0     0     0      ATI 3D-Analyze
+Imagination Technologies PowerVR SGX545                                                                  supported      1     1     3      PowerVR SGX545
+Intel                                                                                                                                      NO MATCH
+Intel 3D-Analyze v2.3 - http://www.tommti-systems.com                                                    supported      2     0     0      Intel 3D-Analyze
+Intel 4 Series Internal                                                                                  supported      1     1     2.1    Intel 4 Series Internal
+Intel 845G                                                                                               unsupported    0     1     1.4    Intel 845G
+Intel 855GM                                                                                              unsupported    0     1     1.4    Intel 855GM
+Intel 865G                                                                                               unsupported    0     1     1.4    Intel 865G
+Intel 915G                                                                                               unsupported    0     1     1.4    Intel 915G
+Intel 915GM                                                                                              unsupported    0     1     1.4    Intel 915GM
+Intel 945G                                                                                               supported      0     1     1.4    Intel 945G
+Intel 945GM                                                                                              supported      0     1     1.4    Intel 945GM
+Intel 950                                                                                                supported      0     1     1.4    Intel 950
+Intel 965                                                                                                supported      0     1     2.1    Intel 965
+Intel Bear Lake                                                                                          unsupported    1     1     1.4    Intel Bear Lake
+Intel Broadwater                                                                                         unsupported    0     1     1.4    Intel Broadwater
+Intel Brookdale                                                                                          unsupported    0     1     1.3    Intel Brookdale
+Intel Cantiga                                                                                            unsupported    0     1     2      Intel Cantiga
+Intel Corporation Intel(R) Graphics Media Accelerator 3600 Series                                        supported      0     1     3      Intel GMA 3600
+Intel Eaglelake                                                                                          supported      1     1     2      Intel Eaglelake
+Intel G33                                                                                                unsupported    1     1     1.4    Intel G33
+Intel G41                                                                                                supported      1     1     2.1    Intel G41
+Intel G45                                                                                                supported      1     1     2.1    Intel G45
+Intel Graphics Media HD                                                                                  supported      1     1     2.1    Intel Graphics Media HD
+Intel HD Graphics                                                                                        supported      2     1     4      Intel HD Graphics
+Intel HD Graphics 2000                                                                                   supported      2     0     3.1    Intel HD Graphics 2000
+Intel HD Graphics 3000                                                                                   supported      3     1     3.1    Intel HD Graphics 3000
+Intel HD Graphics 4000                                                                                   supported      3     1     4.2    Intel HD Graphics 4000
+Intel Inc. Intel GMA 950 OpenGL Engine                                                                   supported      0     1     1.4    Intel 950
+Intel Inc. Intel GMA X3100 OpenGL Engine                                                                 supported      1     1     2.1    Intel X3100
+Intel Inc. Intel HD Graphics 3000 OpenGL Engine                                                          supported      3     1     3.1    Intel HD Graphics 3000
+Intel Inc. Intel HD Graphics 4000 OpenGL Engine                                                          supported      3     1     4.2    Intel HD Graphics 4000
+Intel Inc. Intel HD Graphics 5000 OpenGL Engine                                                          supported      4     0     4      Intel HD Graphics 5000
+Intel Inc. Intel HD Graphics OpenGL Engine                                                               supported      2     1     4      Intel HD Graphics
+Intel Intel 845G                                                                                         unsupported    0     1     1.4    Intel 845G
+Intel Intel 855GM                                                                                        unsupported    0     1     1.4    Intel 855GM
+Intel Intel 865G                                                                                         unsupported    0     1     1.4    Intel 865G
+Intel Intel 915G                                                                                         unsupported    0     1     1.4    Intel 915G
+Intel Intel 915GM                                                                                        unsupported    0     1     1.4    Intel 915GM
+Intel Intel 945G                                                                                         supported      0     1     1.4    Intel 945G
+Intel Intel 945GM                                                                                        supported      0     1     1.4    Intel 945GM
+Intel Intel 965/963 Graphics Media Accelerator                                                           supported      0     1     2.1    Intel 965
+Intel Intel Bear Lake B                                                                                  unsupported    1     1     1.4    Intel Bear Lake
+Intel Intel Broadwater G                                                                                 unsupported    0     1     1.4    Intel Broadwater
+Intel Intel Brookdale-G                                                                                  unsupported    0     1     1.3    Intel Brookdale
+Intel Intel Cantiga                                                                                      unsupported    0     1     2      Intel Cantiga
+Intel Intel Eaglelake                                                                                    supported      1     1     2      Intel Eaglelake
+Intel Intel Grantsdale-G                                                                                 supported      1     0     0      Intel Grantsdale
+Intel Intel Iris Pro Graphics 5200                                                                       supported      4     0     4      Intel Intel Iris Pro Graphics 5200
+Intel Intel Montara-GM                                                                                   unsupported    0     1     1.3    Intel Montara
+Intel Intel Pineview Platform                                                                            supported      0     1     1.4    Intel Pineview
+Intel Intel Springdale-G                                                                                 unsupported    0     1     1.3    Intel Springdale
+Intel Intel(R)  HD Graphics Family                                                                       supported      2     1     4      Intel HD Graphics
+Intel Intel(R) 4 Series Internal Chipset                                                                 supported      1     1     2.1    Intel 4 Series Internal
+Intel Intel(R) B43 Express Chipset                                                                       supported      1     1     2.1    Intel B45/B43
+Intel Intel(R) G41 Express Chipset                                                                       supported      1     1     2.1    Intel G41
+Intel Intel(R) G41 Express Chipset (Microsoft Corporation - WDDM 1.1)                                    supported      1     1     2.1    Intel G41
+Intel Intel(R) G41 Express Chipset v2                                                                    supported      1     1     2.1    Intel G41
+Intel Intel(R) G45/G43 Express Chipset                                                                   supported      1     1     2.1    Intel G45
+Intel Intel(R) G45/G43/G41 Express Chipset                                                               supported      1     1     2.1    Intel G41
+Intel Intel(R) Graphics Media Accelerator HD                                                             supported      1     1     2.1    Intel Graphics Media HD
+Intel Intel(R) HD Graphics                                                                               supported      2     1     4      Intel HD Graphics
+Intel Intel(R) HD Graphics 100                                                                           supported      2     1     4      Intel HD Graphics
+Intel Intel(R) HD Graphics 2000                                                                          supported      2     0     3.1    Intel HD Graphics 2000
+Intel Intel(R) HD Graphics 2500                                                                          supported      2     0     4.2    Intel HD Graphics 2500
+Intel Intel(R) HD Graphics 3000                                                                          supported      3     1     3.1    Intel HD Graphics 3000
+Intel Intel(R) HD Graphics 4000                                                                          supported      3     1     4.2    Intel HD Graphics 4000
+Intel Intel(R) HD Graphics 4400                                                                          supported      3     0     4.2    Intel HD Graphics 4400
+Intel Intel(R) HD Graphics 4600                                                                          supported      3     0     4.2    Intel HD Graphics 4600
+Intel Intel(R) HD Graphics 5000                                                                          supported      4     0     4      Intel HD Graphics 5000
+Intel Intel(R) HD Graphics BR-1004-01Y1                                                                  supported      2     1     4      Intel HD Graphics
+Intel Intel(R) HD Graphics Family                                                                        supported      2     1     4      Intel HD Graphics
+Intel Intel(R) HD Graphics P3000                                                                         supported      2     1     4      Intel HD Graphics
+Intel Intel(R) HD Graphics P4000                                                                         supported      2     1     4      Intel HD Graphics
+Intel Intel(R) Q45/Q43 Express Chipset                                                                   supported      1     1     2.1    Intel Q45/Q43
+Intel Iris OpenGL Graphics Engine                                                                        supported      4     0     4      Intel Intel Iris OpenGL Engine
+Intel Mobile 4 Series                                                                                    supported      0     1     2.1    Intel Mobile 4 Series
+Intel Mobile Intel(R) 4 Series Express Chipset Family                                                    supported      0     1     2.1    Intel Mobile 4 Series
+Intel Mobile Intel(R) 4 Series Express Chipset Family v2                                                 supported      0     1     2.1    Intel Mobile 4 Series
+Intel Mobile Intel(R) 45 Express Chipset Family (Microsoft Corporation - WDDM 1.1)                       supported      0     0     2.1    Intel Mobile 45 Express
+Intel Mobile Intel(R) HD Graphics                                                                        supported      2     1     4      Intel HD Graphics
+Intel Montara                                                                                            unsupported    0     1     1.3    Intel Montara
+Intel Open Source Technology Center Mesa DRI Intel(R) 852GM/855GM x86/MMX/SSE2                           unsupported    0     1     1.4    Intel 855GM
+Intel Open Source Technology Center Mesa DRI Intel(R) 915G                                               unsupported    0     1     1.4    Intel 915G
+Intel Open Source Technology Center Mesa DRI Intel(R) 915G x86/MMX/SSE2                                  unsupported    0     1     1.4    Intel 915G
+Intel Open Source Technology Center Mesa DRI Intel(R) 915GM x86/MMX/SSE2                                 unsupported    0     1     1.4    Intel 915GM
+Intel Open Source Technology Center Mesa DRI Intel(R) 945G                                               supported      0     1     1.4    Intel 945G
+Intel Open Source Technology Center Mesa DRI Intel(R) 945G x86/MMX/SSE2                                  supported      0     1     1.4    Intel 945G
+Intel Open Source Technology Center Mesa DRI Intel(R) 945GM                                              supported      0     1     1.4    Intel 945GM
+Intel Open Source Technology Center Mesa DRI Intel(R) 945GM x86/MMX/SSE2                                 supported      0     1     1.4    Intel 945GM
+Intel Open Source Technology Center Mesa DRI Intel(R) 945GME x86/MMX/SSE2                                supported      0     1     1.4    Intel 945GM
+Intel Open Source Technology Center Mesa DRI Intel(R) 965G x86/MMX/SSE2                                  supported      0     1     2.1    Intel 965
+Intel Open Source Technology Center Mesa DRI Intel(R) 965GM                                              supported      0     1     2.1    Intel 965
+Intel Open Source Technology Center Mesa DRI Intel(R) 965GM x86/MMX/SSE2                                 supported      0     1     2.1    Intel 965
+Intel Open Source Technology Center Mesa DRI Intel(R) 965GME/GLE                                         supported      0     1     2.1    Intel 965
+Intel Open Source Technology Center Mesa DRI Intel(R) 965Q                                               supported      0     1     2.1    Intel 965
+Intel Open Source Technology Center Mesa DRI Intel(R) 965Q x86/MMX/SSE2                                  supported      0     1     2.1    Intel 965
+Intel Open Source Technology Center Mesa DRI Intel(R) G33 x86/MMX/SSE2                                   unsupported    1     1     1.4    Intel G33
+Intel Open Source Technology Center Mesa DRI Intel(R) G41 x86/MMX/SSE2                                   supported      1     1     2.1    Intel G41
+Intel Open Source Technology Center Mesa DRI Intel(R) G45/G43                                            supported      1     1     2.1    Intel G45
+Intel Open Source Technology Center Mesa DRI Intel(R) G45/G43 x86/MMX/SSE2                               supported      1     1     2.1    Intel G45
+Intel Open Source Technology Center Mesa DRI Intel(R) IGD                                                unsupported    1     1     3      Mesa
+Intel Open Source Technology Center Mesa DRI Intel(R) IGD x86/MMX/SSE2                                   unsupported    1     1     3      Mesa
+Intel Open Source Technology Center Mesa DRI Intel(R) Ironlake Desktop x86/MMX/SSE2                      unsupported    1     1     3      Mesa
+Intel Open Source Technology Center Mesa DRI Intel(R) Ironlake Mobile                                    unsupported    1     1     3      Mesa
+Intel Open Source Technology Center Mesa DRI Intel(R) Ironlake Mobile x86/MMX/SSE2                       unsupported    1     1     3      Mesa
+Intel Open Source Technology Center Mesa DRI Intel(R) Ivybridge Desktop                                  unsupported    1     1     3      Mesa
+Intel Open Source Technology Center Mesa DRI Intel(R) Ivybridge Desktop x86/MMX/SSE2                     unsupported    1     1     3      Mesa
+Intel Open Source Technology Center Mesa DRI Intel(R) Ivybridge Mobile                                   unsupported    1     1     3      Mesa
+Intel Open Source Technology Center Mesa DRI Intel(R) Ivybridge Mobile x86/MMX/SSE2                      unsupported    1     1     3      Mesa
+Intel Open Source Technology Center Mesa DRI Intel(R) Q35                                                unsupported    1     1     3      Mesa
+Intel Open Source Technology Center Mesa DRI Intel(R) Q35 x86/MMX/SSE2                                   unsupported    1     1     3      Mesa
+Intel Open Source Technology Center Mesa DRI Intel(R) Q45/Q43                                            supported      1     1     2.1    Intel Q45/Q43
+Intel Open Source Technology Center Mesa DRI Intel(R) Q45/Q43 x86/MMX/SSE2                               supported      1     1     2.1    Intel Q45/Q43
+Intel Open Source Technology Center Mesa DRI Intel(R) Sandybridge Desktop                                unsupported    1     1     3      Mesa
+Intel Open Source Technology Center Mesa DRI Intel(R) Sandybridge Desktop x86/MMX/SSE2                   unsupported    1     1     3      Mesa
+Intel Open Source Technology Center Mesa DRI Intel(R) Sandybridge Mobile                                 unsupported    1     1     3      Mesa
+Intel Open Source Technology Center Mesa DRI Intel(R) Sandybridge Mobile x86/MMX/SSE2                    unsupported    1     1     3      Mesa
+Intel Open Source Technology Center Mesa DRI Mobile Intelå¨ GM45 Express Chipset                         unsupported    1     1     3      Mesa
+Intel Open Source Technology Center Mesa DRI Mobile Intelå¨ GM45 Express Chipset x86/MMX/SSE2            unsupported    1     1     3      Mesa
+Intel Pineview                                                                                           supported      0     1     1.4    Intel Pineview
+Intel Q45/Q43                                                                                            supported      1     1     2.1    Intel Q45/Q43
+Intel Royal BNA Driver                                                                                   unsupported    0     0     0      Intel Royal BNA
+Intel Springdale                                                                                         unsupported    0     1     1.3    Intel Springdale
+Intel X3100                                                                                              supported      1     1     2.1    Intel X3100
+Matrox Graphics Inc.  Matrox ICD for M-Series                                                            unsupported    0     0     0      Matrox
+Matrox Graphics Inc. Matrox G400                                                                         unsupported    0     0     0      Matrox
+Matrox Graphics Inc. Matrox ICD for Parhelia                                                             unsupported    0     0     0      Matrox
+Mesa                                                                                                     unsupported    1     1     3      Mesa
+Mesa Project Software Rasterizer                                                                         unsupported    1     1     3      Mesa
+Mesa project: www.mesa3d.org Mesa GLX Indirect                                                           unsupported    1     1     3      Mesa
+NVIDIA 205                                                                                               supported      3     1     3.3    NVIDIA 205
+NVIDIA 210                                                                                               supported      3     1     3.3    NVIDIA 210
+NVIDIA 310                                                                                               supported      3     1     3.3    NVIDIA 310
+NVIDIA 310M                                                                                              supported      2     0     3.3    NVIDIA 310M
+NVIDIA 315                                                                                               supported      3     1     3.3    NVIDIA 315
+NVIDIA 315M                                                                                              supported      2     0     3.3    NVIDIA 310M
+NVIDIA 320M                                                                                              supported      2     0     3.3    NVIDIA 320M
+NVIDIA 405                                                                                               supported      3     0     3.3    NVIDIA 405
+NVIDIA 410                                                                                               supported      3     0     3.3    NVIDIA 410
+NVIDIA 510                                                                                               supported      3     0     0      NVIDIA 510
+NVIDIA 610M                                                                                              supported      3     1     4.3    NVIDIA 610M
+NVIDIA Corporation /PCI/SSE2                                                                                                               NO MATCH
+NVIDIA Corporation 3D-Analyze v2.3 - http://www.tommti-systems.com                                       unsupported    0     0     0      ATI 3D-Analyze
+NVIDIA Corporation C51/PCI/SSE2/3DNOW!                                                                   supported      0     1     2      NVIDIA C51
+NVIDIA Corporation C51G/PCI/SSE2/3DNOW!                                                                  supported      0     1     2      NVIDIA C51
+NVIDIA Corporation D10P1-25/PCI/SSE2/3DNOW!                                                              unsupported    0     0     0      NVIDIA D1xP1
+NVIDIA Corporation D14P1-30/PCIe/SSE2                                                                    unsupported    0     0     0      NVIDIA D1xP1
+NVIDIA Corporation D9M-20/PCI/SSE2                                                                       supported      1     0     0      NVIDIA D9M
+NVIDIA Corporation D9M-20/PCI/SSE2/3DNOW!                                                                supported      1     0     0      NVIDIA D9M
+NVIDIA Corporation G72/PCI/SSE2/3DNOW!                                                                   supported      1     0     0      NVIDIA G72
+NVIDIA Corporation G73/AGP/SSE2/3DNOW!                                                                   supported      1     0     0      NVIDIA G73
+NVIDIA Corporation G73/PCI/SSE2/3DNOW!                                                                   supported      1     0     0      NVIDIA G73
+NVIDIA Corporation G84-50/PCI/SSE2                                                                       supported      2     0     0      NVIDIA G84
+NVIDIA Corporation G92-100/PCI/SSE2/3DNOW!                                                               supported      3     0     0      NVIDIA G92
+NVIDIA Corporation GK106/PCIe/SSE2                                                                       supported      5     0     4.3    NVIDIA GK106
+NVIDIA Corporation GRID K2/PCIe/SSE2                                                                     unsupported    0     0     1.5    NVIDIA GRID
+NVIDIA Corporation GeForce  GTX 555/PCI/SSE2                                                             supported      5     1     4.3    NVIDIA GTX 550
+NVIDIA Corporation GeForce  GTX 555/PCIe/SSE2                                                            supported      5     1     4.3    NVIDIA GTX 550
+NVIDIA Corporation GeForce 205/PCI/SSE2                                                                  supported      3     1     3.3    NVIDIA 205
+NVIDIA Corporation GeForce 210/PCI/SSE2                                                                  supported      3     1     3.3    NVIDIA GeForce 210
+NVIDIA Corporation GeForce 210/PCI/SSE2/3DNOW!                                                           supported      3     1     3.3    NVIDIA GeForce 210
+NVIDIA Corporation GeForce 210/PCIe/SSE2                                                                 supported      3     1     3.3    NVIDIA GeForce 210
+NVIDIA Corporation GeForce 210/PCIe/SSE2/3DNOW!                                                          supported      3     1     3.3    NVIDIA GeForce 210
+NVIDIA Corporation GeForce 310/PCI/SSE2                                                                  supported      3     1     3.3    NVIDIA 310
+NVIDIA Corporation GeForce 310/PCI/SSE2/3DNOW!                                                           supported      3     1     3.3    NVIDIA 310
+NVIDIA Corporation GeForce 310/PCIe/SSE2                                                                 supported      3     1     3.3    NVIDIA 310
+NVIDIA Corporation GeForce 310/PCIe/SSE2/3DNOW!                                                          supported      3     1     3.3    NVIDIA 310
+NVIDIA Corporation GeForce 310M/PCI/SSE2                                                                 supported      2     0     3.3    NVIDIA 310M
+NVIDIA Corporation GeForce 310M/PCIe/SSE2                                                                supported      2     0     3.3    NVIDIA 310M
+NVIDIA Corporation GeForce 315/PCI/SSE2                                                                  supported      3     1     3.3    NVIDIA 315
+NVIDIA Corporation GeForce 315/PCI/SSE2/3DNOW!                                                           supported      3     1     3.3    NVIDIA 315
+NVIDIA Corporation GeForce 315/PCIe/SSE2                                                                 supported      3     1     3.3    NVIDIA 315
+NVIDIA Corporation GeForce 315/PCIe/SSE2/3DNOW!                                                          supported      3     1     3.3    NVIDIA 315
+NVIDIA Corporation GeForce 315M/PCI/SSE2                                                                 supported      2     0     3.3    NVIDIA 310M
+NVIDIA Corporation GeForce 315M/PCIe/SSE2                                                                supported      2     0     3.3    NVIDIA 310M
+NVIDIA Corporation GeForce 320M/PCI/SSE2                                                                 supported      2     0     3.3    NVIDIA 320M
+NVIDIA Corporation GeForce 320M/integrated/SSE2                                                          supported      2     0     3.3    NVIDIA 320M
+NVIDIA Corporation GeForce 405/PCI/SSE2                                                                  supported      3     0     3.3    NVIDIA 405
+NVIDIA Corporation GeForce 405/PCI/SSE2/3DNOW!                                                           supported      3     0     3.3    NVIDIA 405
+NVIDIA Corporation GeForce 405/PCIe/SSE2                                                                 supported      3     0     3.3    NVIDIA 405
+NVIDIA Corporation GeForce 405/PCIe/SSE2/3DNOW!                                                          supported      3     0     3.3    NVIDIA 405
+NVIDIA Corporation GeForce 410M/PCI/SSE2                                                                 supported      3     0     0      NVIDIA 410M
+NVIDIA Corporation GeForce 410M/PCIe/SSE2                                                                supported      3     0     0      NVIDIA 410M
+NVIDIA Corporation GeForce 505/PCIe/SSE2                                                                 supported      3     0     0      NVIDIA 505
+NVIDIA Corporation GeForce 510/PCI/SSE2                                                                  supported      3     0     0      NVIDIA 510
+NVIDIA Corporation GeForce 510/PCIe/SSE2                                                                 supported      3     0     0      NVIDIA 510
+NVIDIA Corporation GeForce 605/PCI/SSE2                                                                  supported      3     1     4.3    NVIDIA 605
+NVIDIA Corporation GeForce 605/PCIe/SSE2                                                                 supported      3     1     4.3    NVIDIA 605
+NVIDIA Corporation GeForce 605/PCIe/SSE2/3DNOW!                                                          supported      3     1     4.3    NVIDIA 605
+NVIDIA Corporation GeForce 610/PCIe/SSE2                                                                 supported      3     1     4.2    NVIDIA GeForce 6100
+NVIDIA Corporation GeForce 6100 nForce 400/PCI/SSE2/3DNOW!                                               supported      3     1     4.2    NVIDIA GeForce 6100
+NVIDIA Corporation GeForce 6100 nForce 400/integrated/SSE2                                               supported      3     1     4.2    NVIDIA GeForce 6100
+NVIDIA Corporation GeForce 6100 nForce 400/integrated/SSE2/3DNOW!                                        supported      3     1     4.2    NVIDIA GeForce 6100
+NVIDIA Corporation GeForce 6100 nForce 405/PCI/SSE2                                                      supported      3     0     3.3    NVIDIA 405
+NVIDIA Corporation GeForce 6100 nForce 405/PCI/SSE2/3DNOW!                                               supported      3     0     3.3    NVIDIA 405
+NVIDIA Corporation GeForce 6100 nForce 405/integrated/SSE2                                               supported      3     0     3.3    NVIDIA 405
+NVIDIA Corporation GeForce 6100 nForce 405/integrated/SSE2/3DNOW!                                        supported      3     0     3.3    NVIDIA 405
+NVIDIA Corporation GeForce 6100 nForce 420/PCI/SSE2/3DNOW!                                               supported      3     1     4.2    NVIDIA GeForce 6100
+NVIDIA Corporation GeForce 6100 nForce 430/PCI/SSE2/3DNOW!                                               supported      3     1     4.2    NVIDIA GeForce 6100
+NVIDIA Corporation GeForce 6100/PCI/SSE2                                                                 supported      3     1     4.2    NVIDIA GeForce 6100
+NVIDIA Corporation GeForce 6100/PCI/SSE2/3DNOW!                                                          supported      3     1     4.2    NVIDIA GeForce 6100
+NVIDIA Corporation GeForce 6100/integrated/SSE2                                                          supported      3     1     4.2    NVIDIA GeForce 6100
+NVIDIA Corporation GeForce 6100/integrated/SSE2/3DNOW!                                                   supported      3     1     4.2    NVIDIA GeForce 6100
+NVIDIA Corporation GeForce 610M/PCI/SSE2                                                                 supported      3     1     4.3    NVIDIA 610M
+NVIDIA Corporation GeForce 610M/PCIe/SSE2                                                                supported      3     1     4.3    NVIDIA 610M
+NVIDIA Corporation GeForce 615/PCIe/SSE2                                                                 supported      3     1     4.2    NVIDIA GeForce 6100
+NVIDIA Corporation GeForce 6150 LE/PCI/SSE2                                                              supported      3     1     4.2    NVIDIA GeForce 6100
+NVIDIA Corporation GeForce 6150 LE/PCI/SSE2/3DNOW!                                                       supported      3     1     4.2    NVIDIA GeForce 6100
+NVIDIA Corporation GeForce 6150 LE/integrated/SSE2                                                       supported      3     1     4.2    NVIDIA GeForce 6100
+NVIDIA Corporation GeForce 6150 LE/integrated/SSE2/3DNOW!                                                supported      3     1     4.2    NVIDIA GeForce 6100
+NVIDIA Corporation GeForce 6150 SE/PCI/SSE2/3DNOW!                                                       supported      3     1     4.2    NVIDIA GeForce 6100
+NVIDIA Corporation GeForce 6150/PCI/SSE2/3DNOW!                                                          supported      3     1     4.2    NVIDIA GeForce 6100
+NVIDIA Corporation GeForce 6150/integrated/SSE2                                                          supported      3     1     4.2    NVIDIA GeForce 6100
+NVIDIA Corporation GeForce 6150/integrated/SSE2/3DNOW!                                                   supported      3     1     4.2    NVIDIA GeForce 6100
+NVIDIA Corporation GeForce 6150SE nForce 430/PCI/SSE2                                                    supported      3     1     4.2    NVIDIA GeForce 6100
+NVIDIA Corporation GeForce 6150SE nForce 430/PCI/SSE2/3DNOW!                                             supported      3     1     4.2    NVIDIA GeForce 6100
+NVIDIA Corporation GeForce 6150SE nForce 430/integrated/SSE2                                             supported      3     1     4.2    NVIDIA GeForce 6100
+NVIDIA Corporation GeForce 6150SE nForce 430/integrated/SSE2/3DNOW!                                      supported      3     1     4.2    NVIDIA GeForce 6100
+NVIDIA Corporation GeForce 6150SE/PCI/SSE2/3DNOW!                                                        supported      3     1     4.2    NVIDIA GeForce 6100
+NVIDIA Corporation GeForce 6200 A-LE/AGP/SSE2                                                            supported      0     1     2.1    NVIDIA GeForce 6200
+NVIDIA Corporation GeForce 6200 A-LE/AGP/SSE2/3DNOW!                                                     supported      0     1     2.1    NVIDIA GeForce 6200
+NVIDIA Corporation GeForce 6200 A-LE/PCI/SSE2                                                            supported      0     1     2.1    NVIDIA GeForce 6200
+NVIDIA Corporation GeForce 6200 A-LE/PCI/SSE2/3DNOW!                                                     supported      0     1     2.1    NVIDIA GeForce 6200
+NVIDIA Corporation GeForce 6200 LE/PCI/SSE2                                                              supported      0     1     2.1    NVIDIA GeForce 6200
+NVIDIA Corporation GeForce 6200 LE/PCI/SSE2/3DNOW!                                                       supported      0     1     2.1    NVIDIA GeForce 6200
+NVIDIA Corporation GeForce 6200 LE/PCIe/SSE2                                                             supported      0     1     2.1    NVIDIA GeForce 6200
+NVIDIA Corporation GeForce 6200 LE/PCIe/SSE2/3DNOW!                                                      supported      0     1     2.1    NVIDIA GeForce 6200
+NVIDIA Corporation GeForce 6200 TurboCache(TM)/PCI/SSE2                                                  supported      0     1     2.1    NVIDIA GeForce 6200
+NVIDIA Corporation GeForce 6200 TurboCache(TM)/PCI/SSE2/3DNOW!                                           supported      0     1     2.1    NVIDIA GeForce 6200
+NVIDIA Corporation GeForce 6200 TurboCache(TM)/PCIe/SSE2                                                 supported      0     1     2.1    NVIDIA GeForce 6200
+NVIDIA Corporation GeForce 6200 TurboCache(TM)/PCIe/SSE2/3DNOW!                                          supported      0     1     2.1    NVIDIA GeForce 6200
+NVIDIA Corporation GeForce 6200/AGP/SSE2                                                                 supported      0     1     2.1    NVIDIA GeForce 6200
+NVIDIA Corporation GeForce 6200/AGP/SSE2/3DNOW!                                                          supported      0     1     2.1    NVIDIA GeForce 6200
+NVIDIA Corporation GeForce 6200/PCI/SSE2                                                                 supported      0     1     2.1    NVIDIA GeForce 6200
+NVIDIA Corporation GeForce 6200/PCI/SSE2/3DNOW!                                                          supported      0     1     2.1    NVIDIA GeForce 6200
+NVIDIA Corporation GeForce 6200/PCIe/SSE2                                                                supported      0     1     2.1    NVIDIA GeForce 6200
+NVIDIA Corporation GeForce 6200/PCIe/SSE2/3DNOW!                                                         supported      0     1     2.1    NVIDIA GeForce 6200
+NVIDIA Corporation GeForce 6200SE TurboCache(TM)/PCI/SSE2                                                supported      0     1     2.1    NVIDIA GeForce 6200
+NVIDIA Corporation GeForce 6200SE TurboCache(TM)/PCI/SSE2/3DNOW!                                         supported      0     1     2.1    NVIDIA GeForce 6200
+NVIDIA Corporation GeForce 6200SE TurboCache(TM)/PCIe/SSE2                                               supported      0     1     2.1    NVIDIA GeForce 6200
+NVIDIA Corporation GeForce 6200SE TurboCache(TM)/PCIe/SSE2/3DNOW!                                        supported      0     1     2.1    NVIDIA GeForce 6200
+NVIDIA Corporation GeForce 6500/PCI/SSE2                                                                 supported      1     1     2.1    NVIDIA GeForce 6500
+NVIDIA Corporation GeForce 6500/PCI/SSE2/3DNOW!                                                          supported      1     1     2.1    NVIDIA GeForce 6500
+NVIDIA Corporation GeForce 6500/PCIe/SSE2                                                                supported      1     1     2.1    NVIDIA GeForce 6500
+NVIDIA Corporation GeForce 6500/PCIe/SSE2/3DNOW!                                                         supported      1     1     2.1    NVIDIA GeForce 6500
+NVIDIA Corporation GeForce 6600 GT/AGP/SSE2                                                              supported      2     1     2.1    NVIDIA GeForce 6600
+NVIDIA Corporation GeForce 6600 GT/AGP/SSE2/3DNOW!                                                       supported      2     1     2.1    NVIDIA GeForce 6600
+NVIDIA Corporation GeForce 6600 GT/PCI/SSE2                                                              supported      2     1     2.1    NVIDIA GeForce 6600
+NVIDIA Corporation GeForce 6600 GT/PCI/SSE2/3DNOW!                                                       supported      2     1     2.1    NVIDIA GeForce 6600
+NVIDIA Corporation GeForce 6600 GT/PCIe/SSE2                                                             supported      2     1     2.1    NVIDIA GeForce 6600
+NVIDIA Corporation GeForce 6600 GT/PCIe/SSE2/3DNOW!                                                      supported      2     1     2.1    NVIDIA GeForce 6600
+NVIDIA Corporation GeForce 6600 LE/AGP/SSE2/3DNOW!                                                       supported      2     1     2.1    NVIDIA GeForce 6600
+NVIDIA Corporation GeForce 6600 LE/PCI/SSE2                                                              supported      2     1     2.1    NVIDIA GeForce 6600
+NVIDIA Corporation GeForce 6600 LE/PCI/SSE2/3DNOW!                                                       supported      2     1     2.1    NVIDIA GeForce 6600
+NVIDIA Corporation GeForce 6600 LE/PCIe/SSE2                                                             supported      2     1     2.1    NVIDIA GeForce 6600
+NVIDIA Corporation GeForce 6600 LE/PCIe/SSE2/3DNOW!                                                      supported      2     1     2.1    NVIDIA GeForce 6600
+NVIDIA Corporation GeForce 6600/AGP/SSE2                                                                 supported      2     1     2.1    NVIDIA GeForce 6600
+NVIDIA Corporation GeForce 6600/AGP/SSE2/3DNOW!                                                          supported      2     1     2.1    NVIDIA GeForce 6600
+NVIDIA Corporation GeForce 6600/PCI/SSE2                                                                 supported      2     1     2.1    NVIDIA GeForce 6600
+NVIDIA Corporation GeForce 6600/PCI/SSE2/3DNOW!                                                          supported      2     1     2.1    NVIDIA GeForce 6600
+NVIDIA Corporation GeForce 6600/PCIe/SSE2                                                                supported      2     1     2.1    NVIDIA GeForce 6600
+NVIDIA Corporation GeForce 6600/PCIe/SSE2/3DNOW!                                                         supported      2     1     2.1    NVIDIA GeForce 6600
+NVIDIA Corporation GeForce 6610 XL/PCI/SSE2                                                              supported      2     1     2.1    NVIDIA GeForce 6600
+NVIDIA Corporation GeForce 6610 XL/PCIe/SSE2                                                             supported      2     1     2.1    NVIDIA GeForce 6600
+NVIDIA Corporation GeForce 6700 XL/PCI/SSE2                                                              supported      2     1     2.1    NVIDIA GeForce 6700
+NVIDIA Corporation GeForce 6700 XL/PCIe/SSE2                                                             supported      2     1     2.1    NVIDIA GeForce 6700
+NVIDIA Corporation GeForce 6800 GS/AGP/SSE2/3DNOW!                                                       supported      1     1     2.1    NVIDIA GeForce 6800
+NVIDIA Corporation GeForce 6800 GS/PCI/SSE2                                                              supported      1     1     2.1    NVIDIA GeForce 6800
+NVIDIA Corporation GeForce 6800 GS/PCIe/SSE2                                                             supported      1     1     2.1    NVIDIA GeForce 6800
+NVIDIA Corporation GeForce 6800 GS/PCIe/SSE2/3DNOW!                                                      supported      1     1     2.1    NVIDIA GeForce 6800
+NVIDIA Corporation GeForce 6800 GT/AGP/SSE2                                                              supported      1     1     2.1    NVIDIA GeForce 6800
+NVIDIA Corporation GeForce 6800 GT/AGP/SSE2/3DNOW!                                                       supported      1     1     2.1    NVIDIA GeForce 6800
+NVIDIA Corporation GeForce 6800 GT/PCIe/SSE2                                                             supported      1     1     2.1    NVIDIA GeForce 6800
+NVIDIA Corporation GeForce 6800 GT/PCIe/SSE2/3DNOW!                                                      supported      1     1     2.1    NVIDIA GeForce 6800
+NVIDIA Corporation GeForce 6800 LE/AGP/SSE2                                                              supported      1     1     2.1    NVIDIA GeForce 6800
+NVIDIA Corporation GeForce 6800 LE/AGP/SSE2/3DNOW!                                                       supported      1     1     2.1    NVIDIA GeForce 6800
+NVIDIA Corporation GeForce 6800 LE/PCI/SSE2/3DNOW!                                                       supported      1     1     2.1    NVIDIA GeForce 6800
+NVIDIA Corporation GeForce 6800 Ultra/AGP/SSE2                                                           supported      1     1     2.1    NVIDIA GeForce 6800
+NVIDIA Corporation GeForce 6800 Ultra/AGP/SSE2/3DNOW!                                                    supported      1     1     2.1    NVIDIA GeForce 6800
+NVIDIA Corporation GeForce 6800 Ultra/PCI/SSE2                                                           supported      1     1     2.1    NVIDIA GeForce 6800
+NVIDIA Corporation GeForce 6800 Ultra/PCIe/SSE2                                                          supported      1     1     2.1    NVIDIA GeForce 6800
+NVIDIA Corporation GeForce 6800 Ultra/PCIe/SSE2/3DNOW!                                                   supported      1     1     2.1    NVIDIA GeForce 6800
+NVIDIA Corporation GeForce 6800 XT/AGP/SSE2                                                              supported      1     1     2.1    NVIDIA GeForce 6800
+NVIDIA Corporation GeForce 6800 XT/AGP/SSE2/3DNOW!                                                       supported      1     1     2.1    NVIDIA GeForce 6800
+NVIDIA Corporation GeForce 6800 XT/PCI/SSE2                                                              supported      1     1     2.1    NVIDIA GeForce 6800
+NVIDIA Corporation GeForce 6800 XT/PCI/SSE2/3DNOW!                                                       supported      1     1     2.1    NVIDIA GeForce 6800
+NVIDIA Corporation GeForce 6800 XT/PCIe/SSE2                                                             supported      1     1     2.1    NVIDIA GeForce 6800
+NVIDIA Corporation GeForce 6800 XT/PCIe/SSE2/3DNOW!                                                      supported      1     1     2.1    NVIDIA GeForce 6800
+NVIDIA Corporation GeForce 6800/AGP/SSE2                                                                 supported      1     1     2.1    NVIDIA GeForce 6800
+NVIDIA Corporation GeForce 6800/AGP/SSE2/3DNOW!                                                          supported      1     1     2.1    NVIDIA GeForce 6800
+NVIDIA Corporation GeForce 6800/PCI/SSE2                                                                 supported      1     1     2.1    NVIDIA GeForce 6800
+NVIDIA Corporation GeForce 6800/PCIe/SSE2                                                                supported      1     1     2.1    NVIDIA GeForce 6800
+NVIDIA Corporation GeForce 6800/PCIe/SSE2/3DNOW!                                                         supported      1     1     2.1    NVIDIA GeForce 6800
+NVIDIA Corporation GeForce 7000M / nForce 610M/PCI/SSE2                                                  supported      3     1     4.3    NVIDIA 610M
+NVIDIA Corporation GeForce 7000M / nForce 610M/PCI/SSE2/3DNOW!                                           supported      3     1     4.3    NVIDIA 610M
+NVIDIA Corporation GeForce 7025 / NVIDIA nForce 630a/PCI/SSE2                                            supported      1     1     2.1    NVIDIA GeForce 7000
+NVIDIA Corporation GeForce 7025 / NVIDIA nForce 630a/PCI/SSE2/3DNOW!                                     supported      1     1     2.1    NVIDIA GeForce 7000
+NVIDIA Corporation GeForce 7025 / nForce 630a/PCI/SSE2                                                   supported      1     1     2.1    NVIDIA GeForce 7000
+NVIDIA Corporation GeForce 7025 / nForce 630a/PCI/SSE2/3DNOW!                                            supported      1     1     2.1    NVIDIA GeForce 7000
+NVIDIA Corporation GeForce 7025 / nForce 630a/integrated/SSE2                                            supported      1     1     2.1    NVIDIA GeForce 7000
+NVIDIA Corporation GeForce 7025 / nForce 630a/integrated/SSE2/3DNOW!                                     supported      1     1     2.1    NVIDIA GeForce 7000
+NVIDIA Corporation GeForce 7050 / NVIDIA nForce 610i/PCI/SSE2                                            supported      1     1     2.1    NVIDIA GeForce 7000
+NVIDIA Corporation GeForce 7050 / NVIDIA nForce 620i/PCI/SSE2                                            supported      1     1     2.1    NVIDIA GeForce 7000
+NVIDIA Corporation GeForce 7050 / NVIDIA nForce 630i/PCI/SSE2                                            supported      1     1     2.1    NVIDIA GeForce 7000
+NVIDIA Corporation GeForce 7050 / nForce 610i/PCI/SSE2                                                   supported      1     1     2.1    NVIDIA GeForce 7000
+NVIDIA Corporation GeForce 7050 / nForce 610i/integrated/SSE2                                            supported      1     1     2.1    NVIDIA GeForce 7000
+NVIDIA Corporation GeForce 7050 / nForce 620i/PCI/SSE2                                                   supported      1     1     2.1    NVIDIA GeForce 7000
+NVIDIA Corporation GeForce 7050 / nForce 620i/integrated/SSE2                                            supported      1     1     2.1    NVIDIA GeForce 7000
+NVIDIA Corporation GeForce 7050 / nForce 630i/PCI/SSE2                                                   supported      1     1     2.1    NVIDIA GeForce 7000
+NVIDIA Corporation GeForce 7050 / nForce 630i/integrated/SSE2                                            supported      1     1     2.1    NVIDIA GeForce 7000
+NVIDIA Corporation GeForce 7050 PV / NVIDIA nForce 630a/PCI/SSE2/3DNOW!                                  supported      1     1     2.1    NVIDIA GeForce 7000
+NVIDIA Corporation GeForce 7050 PV / nForce 630a/PCI/SSE2                                                supported      1     1     2.1    NVIDIA GeForce 7000
+NVIDIA Corporation GeForce 7050 PV / nForce 630a/PCI/SSE2/3DNOW!                                         supported      1     1     2.1    NVIDIA GeForce 7000
+NVIDIA Corporation GeForce 7050 PV / nForce 630a/integrated/SSE2                                         supported      1     1     2.1    NVIDIA GeForce 7000
+NVIDIA Corporation GeForce 7050 PV / nForce 630a/integrated/SSE2/3DNOW!                                  supported      1     1     2.1    NVIDIA GeForce 7000
+NVIDIA Corporation GeForce 7100 / NVIDIA nForce 620i/PCI/SSE2                                            supported      1     1     2.1    NVIDIA GeForce 7100
+NVIDIA Corporation GeForce 7100 / NVIDIA nForce 630i/PCI/SSE2                                            supported      1     1     2.1    NVIDIA GeForce 7100
+NVIDIA Corporation GeForce 7100 / nForce 630i/PCI/SSE2                                                   supported      1     1     2.1    NVIDIA GeForce 7100
+NVIDIA Corporation GeForce 7100 / nForce 630i/integrated/SSE2                                            supported      1     1     2.1    NVIDIA GeForce 7100
+NVIDIA Corporation GeForce 7100 GS/PCI/SSE2                                                              supported      1     1     2.1    NVIDIA GeForce 7100
+NVIDIA Corporation GeForce 7100 GS/PCI/SSE2/3DNOW!                                                       supported      1     1     2.1    NVIDIA GeForce 7100
+NVIDIA Corporation GeForce 7100 GS/PCIe/SSE2                                                             supported      1     1     2.1    NVIDIA GeForce 7100
+NVIDIA Corporation GeForce 7100 GS/PCIe/SSE2/3DNOW!                                                      supported      1     1     2.1    NVIDIA GeForce 7100
+NVIDIA Corporation GeForce 710A/PCIe/SSE2                                                                supported      1     1     2.1    NVIDIA GeForce 7100
+NVIDIA Corporation GeForce 710M/PCIe/SSE2                                                                supported      3     0     4.3    NVIDIA 710M
+NVIDIA Corporation GeForce 7150 / nForce 630i/PCI/SSE2                                                   supported      1     1     2.1    NVIDIA GeForce 7100
+NVIDIA Corporation GeForce 7150M / nForce 630M/PCI/SSE2                                                  supported      1     1     2.1    NVIDIA GeForce 7100
+NVIDIA Corporation GeForce 7150M / nForce 630M/PCI/SSE2/3DNOW!                                           supported      1     1     2.1    NVIDIA GeForce 7100
+NVIDIA Corporation GeForce 7150M / nForce 630M/integrated/SSE2/3DNOW!                                    supported      1     1     2.1    NVIDIA GeForce 7100
+NVIDIA Corporation GeForce 7300 GS/PCI/SSE2                                                              supported      1     1     2.1    NVIDIA GeForce 7300
+NVIDIA Corporation GeForce 7300 GS/PCI/SSE2/3DNOW!                                                       supported      1     1     2.1    NVIDIA GeForce 7300
+NVIDIA Corporation GeForce 7300 GS/PCIe/SSE2                                                             supported      1     1     2.1    NVIDIA GeForce 7300
+NVIDIA Corporation GeForce 7300 GS/PCIe/SSE2/3DNOW!                                                      supported      1     1     2.1    NVIDIA GeForce 7300
+NVIDIA Corporation GeForce 7300 GT/AGP/SSE2                                                              supported      1     1     2.1    NVIDIA GeForce 7300
+NVIDIA Corporation GeForce 7300 GT/AGP/SSE2/3DNOW!                                                       supported      1     1     2.1    NVIDIA GeForce 7300
+NVIDIA Corporation GeForce 7300 GT/PCI/SSE2                                                              supported      1     1     2.1    NVIDIA GeForce 7300
+NVIDIA Corporation GeForce 7300 GT/PCI/SSE2/3DNOW!                                                       supported      1     1     2.1    NVIDIA GeForce 7300
+NVIDIA Corporation GeForce 7300 GT/PCIe/SSE2                                                             supported      1     1     2.1    NVIDIA GeForce 7300
+NVIDIA Corporation GeForce 7300 GT/PCIe/SSE2/3DNOW!                                                      supported      1     1     2.1    NVIDIA GeForce 7300
+NVIDIA Corporation GeForce 7300 LE/PCI/SSE2                                                              supported      1     1     2.1    NVIDIA GeForce 7300
+NVIDIA Corporation GeForce 7300 LE/PCI/SSE2/3DNOW!                                                       supported      1     1     2.1    NVIDIA GeForce 7300
+NVIDIA Corporation GeForce 7300 LE/PCIe/SSE2                                                             supported      1     1     2.1    NVIDIA GeForce 7300
+NVIDIA Corporation GeForce 7300 LE/PCIe/SSE2/3DNOW!                                                      supported      1     1     2.1    NVIDIA GeForce 7300
+NVIDIA Corporation GeForce 7300 SE/7200 GS/PCI/SSE2                                                      supported      1     1     2.1    NVIDIA GeForce 7300
+NVIDIA Corporation GeForce 7300 SE/7200 GS/PCI/SSE2/3DNOW!                                               supported      1     1     2.1    NVIDIA GeForce 7300
+NVIDIA Corporation GeForce 7300 SE/7200 GS/PCIe/SSE2                                                     supported      1     1     2.1    NVIDIA GeForce 7300
+NVIDIA Corporation GeForce 7300 SE/7200 GS/PCIe/SSE2/3DNOW!                                              supported      1     1     2.1    NVIDIA GeForce 7300
+NVIDIA Corporation GeForce 7300 SE/PCI/SSE2                                                              supported      1     1     2.1    NVIDIA GeForce 7300
+NVIDIA Corporation GeForce 7300 SE/PCI/SSE2/3DNOW!                                                       supported      1     1     2.1    NVIDIA GeForce 7300
+NVIDIA Corporation GeForce 7300 SE/PCIe/SSE2                                                             supported      1     1     2.1    NVIDIA GeForce 7300
+NVIDIA Corporation GeForce 7350 LE/PCI/SSE2                                                              supported      1     1     2.1    NVIDIA GeForce 7300
+NVIDIA Corporation GeForce 7350 LE/PCIe/SSE2                                                             supported      1     1     2.1    NVIDIA GeForce 7300
+NVIDIA Corporation GeForce 7350 LE/PCIe/SSE2/3DNOW!                                                      supported      1     1     2.1    NVIDIA GeForce 7300
+NVIDIA Corporation GeForce 7500 LE/PCI/SSE2                                                              supported      2     1     2.1    NVIDIA GeForce 7500
+NVIDIA Corporation GeForce 7500 LE/PCI/SSE2/3DNOW!                                                       supported      2     1     2.1    NVIDIA GeForce 7500
+NVIDIA Corporation GeForce 7500 LE/PCIe/SSE2                                                             supported      2     1     2.1    NVIDIA GeForce 7500
+NVIDIA Corporation GeForce 7500 LE/PCIe/SSE2/3DNOW!                                                      supported      2     1     2.1    NVIDIA GeForce 7500
+NVIDIA Corporation GeForce 7600 GS/AGP/SSE2                                                              supported      2     1     2.1    NVIDIA GeForce 7600
+NVIDIA Corporation GeForce 7600 GS/AGP/SSE2/3DNOW!                                                       supported      2     1     2.1    NVIDIA GeForce 7600
+NVIDIA Corporation GeForce 7600 GS/PCI/SSE2                                                              supported      2     1     2.1    NVIDIA GeForce 7600
+NVIDIA Corporation GeForce 7600 GS/PCI/SSE2/3DNOW!                                                       supported      2     1     2.1    NVIDIA GeForce 7600
+NVIDIA Corporation GeForce 7600 GS/PCIe/SSE2                                                             supported      2     1     2.1    NVIDIA GeForce 7600
+NVIDIA Corporation GeForce 7600 GS/PCIe/SSE2/3DNOW!                                                      supported      2     1     2.1    NVIDIA GeForce 7600
+NVIDIA Corporation GeForce 7600 GT/AGP/SSE2                                                              supported      2     1     2.1    NVIDIA GeForce 7600
+NVIDIA Corporation GeForce 7600 GT/AGP/SSE2/3DNOW!                                                       supported      2     1     2.1    NVIDIA GeForce 7600
+NVIDIA Corporation GeForce 7600 GT/PCI/SSE2                                                              supported      2     1     2.1    NVIDIA GeForce 7600
+NVIDIA Corporation GeForce 7600 GT/PCI/SSE2/3DNOW!                                                       supported      2     1     2.1    NVIDIA GeForce 7600
+NVIDIA Corporation GeForce 7600 GT/PCIe/SSE2                                                             supported      2     1     2.1    NVIDIA GeForce 7600
+NVIDIA Corporation GeForce 7600 GT/PCIe/SSE2/3DNOW!                                                      supported      2     1     2.1    NVIDIA GeForce 7600
+NVIDIA Corporation GeForce 7600 LE/PCIe/SSE2                                                             supported      2     1     2.1    NVIDIA GeForce 7600
+NVIDIA Corporation GeForce 7650 GS/AGP/SSE2                                                              supported      2     1     2.1    NVIDIA GeForce 7600
+NVIDIA Corporation GeForce 7650 GS/PCI/SSE2                                                              supported      2     1     2.1    NVIDIA GeForce 7600
+NVIDIA Corporation GeForce 7650 GS/PCI/SSE2/3DNOW!                                                       supported      2     1     2.1    NVIDIA GeForce 7600
+NVIDIA Corporation GeForce 7650 GS/PCIe/SSE2                                                             supported      2     1     2.1    NVIDIA GeForce 7600
+NVIDIA Corporation GeForce 7800 GS/AGP/SSE2                                                              supported      2     1     2.1    NVIDIA GeForce 7800
+NVIDIA Corporation GeForce 7800 GS/AGP/SSE2/3DNOW!                                                       supported      2     1     2.1    NVIDIA GeForce 7800
+NVIDIA Corporation GeForce 7800 GS/PCI/SSE2/3DNOW!                                                       supported      2     1     2.1    NVIDIA GeForce 7800
+NVIDIA Corporation GeForce 7800 GT/PCI/SSE2                                                              supported      2     1     2.1    NVIDIA GeForce 7800
+NVIDIA Corporation GeForce 7800 GT/PCIe/SSE2                                                             supported      2     1     2.1    NVIDIA GeForce 7800
+NVIDIA Corporation GeForce 7800 GT/PCIe/SSE2/3DNOW!                                                      supported      2     1     2.1    NVIDIA GeForce 7800
+NVIDIA Corporation GeForce 7800 GTX/PCI/SSE2                                                             supported      2     1     2.1    NVIDIA GeForce 7800
+NVIDIA Corporation GeForce 7800 GTX/PCIe/SSE2                                                            supported      2     1     2.1    NVIDIA GeForce 7800
+NVIDIA Corporation GeForce 7800 GTX/PCIe/SSE2/3DNOW!                                                     supported      2     1     2.1    NVIDIA GeForce 7800
+NVIDIA Corporation GeForce 7900 GS/AGP/SSE2                                                              supported      3     1     2.1    NVIDIA GeForce 7900
+NVIDIA Corporation GeForce 7900 GS/AGP/SSE2/3DNOW!                                                       supported      3     1     2.1    NVIDIA GeForce 7900
+NVIDIA Corporation GeForce 7900 GS/PCI/SSE2                                                              supported      3     1     2.1    NVIDIA GeForce 7900
+NVIDIA Corporation GeForce 7900 GS/PCI/SSE2/3DNOW!                                                       supported      3     1     2.1    NVIDIA GeForce 7900
+NVIDIA Corporation GeForce 7900 GS/PCIe/SSE2                                                             supported      3     1     2.1    NVIDIA GeForce 7900
+NVIDIA Corporation GeForce 7900 GS/PCIe/SSE2/3DNOW!                                                      supported      3     1     2.1    NVIDIA GeForce 7900
+NVIDIA Corporation GeForce 7900 GT/GTO/PCI/SSE2/3DNOW!                                                   supported      3     1     2.1    NVIDIA GeForce 7900
+NVIDIA Corporation GeForce 7900 GT/GTO/PCIe/SSE2                                                         supported      3     1     2.1    NVIDIA GeForce 7900
+NVIDIA Corporation GeForce 7900 GT/GTO/PCIe/SSE2/3DNOW!                                                  supported      3     1     2.1    NVIDIA GeForce 7900
+NVIDIA Corporation GeForce 7900 GT/PCI/SSE2                                                              supported      3     1     2.1    NVIDIA GeForce 7900
+NVIDIA Corporation GeForce 7900 GTX/PCI/SSE2                                                             supported      3     1     2.1    NVIDIA GeForce 7900
+NVIDIA Corporation GeForce 7900 GTX/PCI/SSE2/3DNOW!                                                      supported      3     1     2.1    NVIDIA GeForce 7900
+NVIDIA Corporation GeForce 7900 GTX/PCIe/SSE2                                                            supported      3     1     2.1    NVIDIA GeForce 7900
+NVIDIA Corporation GeForce 7900 GTX/PCIe/SSE2/3DNOW!                                                     supported      3     1     2.1    NVIDIA GeForce 7900
+NVIDIA Corporation GeForce 7950 GT/AGP/SSE2                                                              supported      3     1     2.1    NVIDIA GeForce 7900
+NVIDIA Corporation GeForce 7950 GT/AGP/SSE2/3DNOW!                                                       supported      3     1     2.1    NVIDIA GeForce 7900
+NVIDIA Corporation GeForce 7950 GT/PCI/SSE2                                                              supported      3     1     2.1    NVIDIA GeForce 7900
+NVIDIA Corporation GeForce 7950 GT/PCI/SSE2/3DNOW!                                                       supported      3     1     2.1    NVIDIA GeForce 7900
+NVIDIA Corporation GeForce 7950 GT/PCIe/SSE2                                                             supported      3     1     2.1    NVIDIA GeForce 7900
+NVIDIA Corporation GeForce 7950 GT/PCIe/SSE2/3DNOW!                                                      supported      3     1     2.1    NVIDIA GeForce 7900
+NVIDIA Corporation GeForce 7950 GX2/PCI/SSE2                                                             supported      3     1     2.1    NVIDIA GeForce 7900
+NVIDIA Corporation GeForce 7950 GX2/PCIe/SSE2                                                            supported      3     1     2.1    NVIDIA GeForce 7900
+NVIDIA Corporation GeForce 7950 GX2/PCIe/SSE2/3DNOW!                                                     supported      3     1     2.1    NVIDIA GeForce 7900
+NVIDIA Corporation GeForce 8100 / nForce 720a/PCI/SSE2                                                   supported      1     0     3.3    NVIDIA GeForce 8100
+NVIDIA Corporation GeForce 8100 / nForce 720a/PCI/SSE2/3DNOW!                                            supported      1     0     3.3    NVIDIA GeForce 8100
+NVIDIA Corporation GeForce 8100 / nForce 720a/integrated/SSE2                                            supported      1     0     3.3    NVIDIA GeForce 8100
+NVIDIA Corporation GeForce 8100 / nForce 720a/integrated/SSE2/3DNOW!                                     supported      1     0     3.3    NVIDIA GeForce 8100
+NVIDIA Corporation GeForce 8200/PCI/SSE2                                                                 supported      1     0     3.3    NVIDIA GeForce 8200
+NVIDIA Corporation GeForce 8200/PCI/SSE2/3DNOW!                                                          supported      1     0     3.3    NVIDIA GeForce 8200
+NVIDIA Corporation GeForce 8200/integrated/SSE2                                                          supported      1     0     3.3    NVIDIA GeForce 8200
+NVIDIA Corporation GeForce 8200/integrated/SSE2/3DNOW!                                                   supported      1     0     3.3    NVIDIA GeForce 8200
+NVIDIA Corporation GeForce 8200M G/PCI/SSE2                                                              supported      1     0     3.3    NVIDIA GeForce 8200M
+NVIDIA Corporation GeForce 8200M G/PCI/SSE2/3DNOW!                                                       supported      1     0     3.3    NVIDIA GeForce 8200M
+NVIDIA Corporation GeForce 8200M G/integrated/SSE2                                                       supported      1     0     3.3    NVIDIA GeForce 8200M
+NVIDIA Corporation GeForce 8200M G/integrated/SSE2/3DNOW!                                                supported      1     0     3.3    NVIDIA GeForce 8200M
+NVIDIA Corporation GeForce 8200M/PCI/SSE2/3DNOW!                                                         supported      1     0     3.3    NVIDIA GeForce 8200M
+NVIDIA Corporation GeForce 8300 GS/PCI/SSE2                                                              supported      3     1     3.3    NVIDIA GeForce 8300
+NVIDIA Corporation GeForce 8300 GS/PCI/SSE2/3DNOW!                                                       supported      3     1     3.3    NVIDIA GeForce 8300
+NVIDIA Corporation GeForce 8300 GS/PCIe/SSE2                                                             supported      3     1     3.3    NVIDIA GeForce 8300
+NVIDIA Corporation GeForce 8300 GS/PCIe/SSE2/3DNOW!                                                      supported      3     1     3.3    NVIDIA GeForce 8300
+NVIDIA Corporation GeForce 8300/PCI/SSE2                                                                 supported      3     1     3.3    NVIDIA GeForce 8300
+NVIDIA Corporation GeForce 8300/PCI/SSE2/3DNOW!                                                          supported      3     1     3.3    NVIDIA GeForce 8300
+NVIDIA Corporation GeForce 8300/integrated/SSE2                                                          supported      3     1     3.3    NVIDIA GeForce 8300
+NVIDIA Corporation GeForce 8300/integrated/SSE2/3DNOW!                                                   supported      3     1     3.3    NVIDIA GeForce 8300
+NVIDIA Corporation GeForce 8400 GS/PCI/SSE2                                                              supported      2     1     3.3    NVIDIA GeForce 8400
+NVIDIA Corporation GeForce 8400 GS/PCI/SSE2/3DNOW!                                                       supported      2     1     3.3    NVIDIA GeForce 8400
+NVIDIA Corporation GeForce 8400 GS/PCIe/SSE2                                                             supported      2     1     3.3    NVIDIA GeForce 8400
+NVIDIA Corporation GeForce 8400 GS/PCIe/SSE2/3DNOW!                                                      supported      2     1     3.3    NVIDIA GeForce 8400
+NVIDIA Corporation GeForce 8400 SE/PCI/SSE2                                                              supported      2     1     3.3    NVIDIA GeForce 8400
+NVIDIA Corporation GeForce 8400 SE/PCIe/SSE2                                                             supported      2     1     3.3    NVIDIA GeForce 8400
+NVIDIA Corporation GeForce 8400/PCI/SSE2                                                                 supported      2     1     3.3    NVIDIA GeForce 8400
+NVIDIA Corporation GeForce 8400/PCI/SSE2/3DNOW!                                                          supported      2     1     3.3    NVIDIA GeForce 8400
+NVIDIA Corporation GeForce 8400/PCIe/SSE2                                                                supported      2     1     3.3    NVIDIA GeForce 8400
+NVIDIA Corporation GeForce 8400/PCIe/SSE2/3DNOW!                                                         supported      2     1     3.3    NVIDIA GeForce 8400
+NVIDIA Corporation GeForce 8400GS/PCI/SSE2                                                               supported      2     1     3.3    NVIDIA GeForce 8400
+NVIDIA Corporation GeForce 8400GS/PCI/SSE2/3DNOW!                                                        supported      2     1     3.3    NVIDIA GeForce 8400
+NVIDIA Corporation GeForce 8400GS/PCIe/SSE2                                                              supported      2     1     3.3    NVIDIA GeForce 8400
+NVIDIA Corporation GeForce 8400GS/PCIe/SSE2/3DNOW!                                                       supported      2     1     3.3    NVIDIA GeForce 8400
+NVIDIA Corporation GeForce 8400M G/PCI/SSE2                                                              supported      1     1     3.3    NVIDIA GeForce 8400M
+NVIDIA Corporation GeForce 8400M G/PCI/SSE2/3DNOW!                                                       supported      1     1     3.3    NVIDIA GeForce 8400M
+NVIDIA Corporation GeForce 8400M G/PCIe/SSE2                                                             supported      1     1     3.3    NVIDIA GeForce 8400M
+NVIDIA Corporation GeForce 8400M G/PCIe/SSE2/3DNOW!                                                      supported      1     1     3.3    NVIDIA GeForce 8400M
+NVIDIA Corporation GeForce 8400M GS/PCI/SSE2                                                             supported      1     1     3.3    NVIDIA GeForce 8400M
+NVIDIA Corporation GeForce 8400M GS/PCI/SSE2/3DNOW!                                                      supported      1     1     3.3    NVIDIA GeForce 8400M
+NVIDIA Corporation GeForce 8400M GS/PCIe/SSE2                                                            supported      1     1     3.3    NVIDIA GeForce 8400M
+NVIDIA Corporation GeForce 8400M GS/PCIe/SSE2/3DNOW!                                                     supported      1     1     3.3    NVIDIA GeForce 8400M
+NVIDIA Corporation GeForce 8400M GT/PCI/SSE2                                                             supported      1     1     3.3    NVIDIA GeForce 8400M
+NVIDIA Corporation GeForce 8400M GT/PCIe/SSE2                                                            supported      1     1     3.3    NVIDIA GeForce 8400M
+NVIDIA Corporation GeForce 8500 GT/PCI/SSE2                                                              supported      2     1     3.3    NVIDIA GeForce 8500
+NVIDIA Corporation GeForce 8500 GT/PCI/SSE2/3DNOW!                                                       supported      2     1     3.3    NVIDIA GeForce 8500
+NVIDIA Corporation GeForce 8500 GT/PCIe/SSE2                                                             supported      2     1     3.3    NVIDIA GeForce 8500
+NVIDIA Corporation GeForce 8500 GT/PCIe/SSE2/3DNOW!                                                      supported      2     1     3.3    NVIDIA GeForce 8500
+NVIDIA Corporation GeForce 8600 GS/PCI/SSE2                                                              supported      3     1     3.3    NVIDIA GeForce 8600
+NVIDIA Corporation GeForce 8600 GS/PCI/SSE2/3DNOW!                                                       supported      3     1     3.3    NVIDIA GeForce 8600
+NVIDIA Corporation GeForce 8600 GS/PCIe/SSE2                                                             supported      3     1     3.3    NVIDIA GeForce 8600
+NVIDIA Corporation GeForce 8600 GS/PCIe/SSE2/3DNOW!                                                      supported      3     1     3.3    NVIDIA GeForce 8600
+NVIDIA Corporation GeForce 8600 GT/PCI/SSE2                                                              supported      3     1     3.3    NVIDIA GeForce 8600
+NVIDIA Corporation GeForce 8600 GT/PCI/SSE2/3DNOW!                                                       supported      3     1     3.3    NVIDIA GeForce 8600
+NVIDIA Corporation GeForce 8600 GT/PCIe/SSE2                                                             supported      3     1     3.3    NVIDIA GeForce 8600
+NVIDIA Corporation GeForce 8600 GT/PCIe/SSE2/3DNOW!                                                      supported      3     1     3.3    NVIDIA GeForce 8600
+NVIDIA Corporation GeForce 8600 GTS/PCI/SSE2                                                             supported      3     1     3.3    NVIDIA GeForce 8600
+NVIDIA Corporation GeForce 8600 GTS/PCI/SSE2/3DNOW!                                                      supported      3     1     3.3    NVIDIA GeForce 8600
+NVIDIA Corporation GeForce 8600 GTS/PCIe/SSE2                                                            supported      3     1     3.3    NVIDIA GeForce 8600
+NVIDIA Corporation GeForce 8600 GTS/PCIe/SSE2/3DNOW!                                                     supported      3     1     3.3    NVIDIA GeForce 8600
+NVIDIA Corporation GeForce 8600GS/PCI/SSE2                                                               supported      3     1     3.3    NVIDIA GeForce 8600
+NVIDIA Corporation GeForce 8600GS/PCI/SSE2/3DNOW!                                                        supported      3     1     3.3    NVIDIA GeForce 8600
+NVIDIA Corporation GeForce 8600M GS/PCI/SSE2                                                             supported      2     1     3.3    NVIDIA GeForce 8600M
+NVIDIA Corporation GeForce 8600M GS/PCI/SSE2/3DNOW!                                                      supported      2     1     3.3    NVIDIA GeForce 8600M
+NVIDIA Corporation GeForce 8600M GS/PCIe/SSE2                                                            supported      2     1     3.3    NVIDIA GeForce 8600M
+NVIDIA Corporation GeForce 8600M GS/PCIe/SSE2/3DNOW!                                                     supported      2     1     3.3    NVIDIA GeForce 8600M
+NVIDIA Corporation GeForce 8600M GT/PCI/SSE2                                                             supported      2     1     3.3    NVIDIA GeForce 8600M
+NVIDIA Corporation GeForce 8600M GT/PCI/SSE2/3DNOW!                                                      supported      2     1     3.3    NVIDIA GeForce 8600M
+NVIDIA Corporation GeForce 8600M GT/PCIe/SSE2                                                            supported      2     1     3.3    NVIDIA GeForce 8600M
+NVIDIA Corporation GeForce 8600M GT/PCIe/SSE2/3DNOW!                                                     supported      2     1     3.3    NVIDIA GeForce 8600M
+NVIDIA Corporation GeForce 8700M GT/PCI/SSE2                                                             supported      2     1     3.3    NVIDIA GeForce 8700M
+NVIDIA Corporation GeForce 8700M GT/PCIe/SSE2                                                            supported      2     1     3.3    NVIDIA GeForce 8700M
+NVIDIA Corporation GeForce 8800 GS/PCI/SSE2                                                              supported      3     1     3.3    NVIDIA GeForce 8800
+NVIDIA Corporation GeForce 8800 GS/PCI/SSE2/3DNOW!                                                       supported      3     1     3.3    NVIDIA GeForce 8800
+NVIDIA Corporation GeForce 8800 GS/PCIe/SSE2                                                             supported      3     1     3.3    NVIDIA GeForce 8800
+NVIDIA Corporation GeForce 8800 GS/PCIe/SSE2/3DNOW!                                                      supported      3     1     3.3    NVIDIA GeForce 8800
+NVIDIA Corporation GeForce 8800 GT/PCI/SSE2                                                              supported      3     1     3.3    NVIDIA GeForce 8800
+NVIDIA Corporation GeForce 8800 GT/PCI/SSE2/3DNOW!                                                       supported      3     1     3.3    NVIDIA GeForce 8800
+NVIDIA Corporation GeForce 8800 GT/PCIe/SSE2                                                             supported      3     1     3.3    NVIDIA GeForce 8800
+NVIDIA Corporation GeForce 8800 GT/PCIe/SSE2/3DNOW!                                                      supported      3     1     3.3    NVIDIA GeForce 8800
+NVIDIA Corporation GeForce 8800 GTS 512/PCI/SSE2                                                         supported      3     1     3.3    NVIDIA GeForce 8800
+NVIDIA Corporation GeForce 8800 GTS 512/PCI/SSE2/3DNOW!                                                  supported      3     1     3.3    NVIDIA GeForce 8800
+NVIDIA Corporation GeForce 8800 GTS 512/PCIe/SSE2                                                        supported      3     1     3.3    NVIDIA GeForce 8800
+NVIDIA Corporation GeForce 8800 GTS 512/PCIe/SSE2/3DNOW!                                                 supported      3     1     3.3    NVIDIA GeForce 8800
+NVIDIA Corporation GeForce 8800 GTS/PCI/SSE2                                                             supported      3     1     3.3    NVIDIA GeForce 8800
+NVIDIA Corporation GeForce 8800 GTS/PCI/SSE2/3DNOW!                                                      supported      3     1     3.3    NVIDIA GeForce 8800
+NVIDIA Corporation GeForce 8800 GTS/PCIe/SSE2                                                            supported      3     1     3.3    NVIDIA GeForce 8800
+NVIDIA Corporation GeForce 8800 GTS/PCIe/SSE2/3DNOW!                                                     supported      3     1     3.3    NVIDIA GeForce 8800
+NVIDIA Corporation GeForce 8800 GTX/PCI/SSE2                                                             supported      3     1     3.3    NVIDIA GeForce 8800
+NVIDIA Corporation GeForce 8800 GTX/PCI/SSE2/3DNOW!                                                      supported      3     1     3.3    NVIDIA GeForce 8800
+NVIDIA Corporation GeForce 8800 GTX/PCIe/SSE2                                                            supported      3     1     3.3    NVIDIA GeForce 8800
+NVIDIA Corporation GeForce 8800 GTX/PCIe/SSE2/3DNOW!                                                     supported      3     1     3.3    NVIDIA GeForce 8800
+NVIDIA Corporation GeForce 8800 Ultra/PCI/SSE2                                                           supported      3     1     3.3    NVIDIA GeForce 8800
+NVIDIA Corporation GeForce 8800 Ultra/PCIe/SSE2                                                          supported      3     1     3.3    NVIDIA GeForce 8800
+NVIDIA Corporation GeForce 8800 Ultra/PCIe/SSE2/3DNOW!                                                   supported      3     1     3.3    NVIDIA GeForce 8800
+NVIDIA Corporation GeForce 8800M GTS/PCI/SSE2                                                            supported      2     1     3.3    NVIDIA GeForce 8800M
+NVIDIA Corporation GeForce 8800M GTS/PCIe/SSE2                                                           supported      2     1     3.3    NVIDIA GeForce 8800M
+NVIDIA Corporation GeForce 8800M GTX/PCI/SSE2                                                            supported      2     1     3.3    NVIDIA GeForce 8800M
+NVIDIA Corporation GeForce 8800M GTX/PCIe/SSE2                                                           supported      2     1     3.3    NVIDIA GeForce 8800M
+NVIDIA Corporation GeForce 9100/PCI/SSE2                                                                 supported      0     0     3.3    NVIDIA GeForce 9100
+NVIDIA Corporation GeForce 9100/PCI/SSE2/3DNOW!                                                          supported      0     0     3.3    NVIDIA GeForce 9100
+NVIDIA Corporation GeForce 9100/integrated/SSE2                                                          supported      0     0     3.3    NVIDIA GeForce 9100
+NVIDIA Corporation GeForce 9100/integrated/SSE2/3DNOW!                                                   supported      0     0     3.3    NVIDIA GeForce 9100
+NVIDIA Corporation GeForce 9100M G/PCI/SSE2                                                              supported      0     0     3.3    NVIDIA GeForce 9100M
+NVIDIA Corporation GeForce 9100M G/PCI/SSE2/3DNOW!                                                       supported      0     0     3.3    NVIDIA GeForce 9100M
+NVIDIA Corporation GeForce 9100M G/integrated/SSE2                                                       supported      0     0     3.3    NVIDIA GeForce 9100M
+NVIDIA Corporation GeForce 9100M G/integrated/SSE2/3DNOW!                                                supported      0     0     3.3    NVIDIA GeForce 9100M
+NVIDIA Corporation GeForce 9200/PCI/SSE2                                                                 supported      1     0     3.3    NVIDIA GeForce 9200
+NVIDIA Corporation GeForce 9200/PCI/SSE2/3DNOW!                                                          supported      1     0     3.3    NVIDIA GeForce 9200
+NVIDIA Corporation GeForce 9200/integrated/SSE2                                                          supported      1     0     3.3    NVIDIA GeForce 9200
+NVIDIA Corporation GeForce 9200/integrated/SSE2/3DNOW!                                                   supported      1     0     3.3    NVIDIA GeForce 9200
+NVIDIA Corporation GeForce 9200M GE/PCI/SSE2                                                             supported      1     0     3.3    NVIDIA GeForce 9200M
+NVIDIA Corporation GeForce 9200M GE/PCIe/SSE2                                                            supported      1     0     3.3    NVIDIA GeForce 9200M
+NVIDIA Corporation GeForce 9200M GS/PCI/SSE2                                                             supported      1     0     3.3    NVIDIA GeForce 9200M
+NVIDIA Corporation GeForce 9200M GS/PCIe/SSE2                                                            supported      1     0     3.3    NVIDIA GeForce 9200M
+NVIDIA Corporation GeForce 9300 / nForce 730i/integrated/SSE2                                            supported      1     1     3.3    NVIDIA GeForce 9300
+NVIDIA Corporation GeForce 9300 GE/PCI/SSE2                                                              supported      1     1     3.3    NVIDIA GeForce 9300
+NVIDIA Corporation GeForce 9300 GE/PCI/SSE2/3DNOW!                                                       supported      1     1     3.3    NVIDIA GeForce 9300
+NVIDIA Corporation GeForce 9300 GE/PCIe/SSE2                                                             supported      1     1     3.3    NVIDIA GeForce 9300
+NVIDIA Corporation GeForce 9300 GE/PCIe/SSE2/3DNOW!                                                      supported      1     1     3.3    NVIDIA GeForce 9300
+NVIDIA Corporation GeForce 9300 GS/PCI/SSE2                                                              supported      1     1     3.3    NVIDIA GeForce 9300
+NVIDIA Corporation GeForce 9300 GS/PCI/SSE2/3DNOW!                                                       supported      1     1     3.3    NVIDIA GeForce 9300
+NVIDIA Corporation GeForce 9300 GS/PCIe/SSE2                                                             supported      1     1     3.3    NVIDIA GeForce 9300
+NVIDIA Corporation GeForce 9300 GS/PCIe/SSE2/3DNOW!                                                      supported      1     1     3.3    NVIDIA GeForce 9300
+NVIDIA Corporation GeForce 9300 SE/PCIe/SSE2                                                             supported      1     1     3.3    NVIDIA GeForce 9300
+NVIDIA Corporation GeForce 9300/PCI/SSE2                                                                 supported      1     1     3.3    NVIDIA GeForce 9300
+NVIDIA Corporation GeForce 9300/integrated/SSE2                                                          supported      1     1     3.3    NVIDIA GeForce 9300
+NVIDIA Corporation GeForce 9300M G/PCI/SSE2                                                              supported      1     1     3.3    NVIDIA GeForce 9300M
+NVIDIA Corporation GeForce 9300M G/PCIe/SSE2                                                             supported      1     1     3.3    NVIDIA GeForce 9300M
+NVIDIA Corporation GeForce 9300M G/PCIe/SSE2/3DNOW!                                                      supported      1     1     3.3    NVIDIA GeForce 9300M
+NVIDIA Corporation GeForce 9300M GS/PCI/SSE2                                                             supported      1     1     3.3    NVIDIA GeForce 9300M
+NVIDIA Corporation GeForce 9300M GS/PCI/SSE2/3DNOW!                                                      supported      1     1     3.3    NVIDIA GeForce 9300M
+NVIDIA Corporation GeForce 9300M GS/PCIe/SSE2                                                            supported      1     1     3.3    NVIDIA GeForce 9300M
+NVIDIA Corporation GeForce 9400 GT/PCI/SSE2                                                              supported      3     1     3.3    NVIDIA GeForce 9400
+NVIDIA Corporation GeForce 9400 GT/PCI/SSE2/3DNOW!                                                       supported      3     1     3.3    NVIDIA GeForce 9400
+NVIDIA Corporation GeForce 9400 GT/PCIe/SSE2                                                             supported      3     1     3.3    NVIDIA GeForce 9400
+NVIDIA Corporation GeForce 9400 GT/PCIe/SSE2/3DNOW!                                                      supported      3     1     3.3    NVIDIA GeForce 9400
+NVIDIA Corporation GeForce 9400/PCI/SSE2                                                                 supported      3     1     3.3    NVIDIA GeForce 9400
+NVIDIA Corporation GeForce 9400/integrated/SSE2                                                          supported      3     1     3.3    NVIDIA GeForce 9400
+NVIDIA Corporation GeForce 9400M G/PCI/SSE2                                                              supported      2     1     3.3    NVIDIA GeForce 9400M
+NVIDIA Corporation GeForce 9400M G/integrated/SSE2                                                       supported      2     1     3.3    NVIDIA GeForce 9400M
+NVIDIA Corporation GeForce 9400M/PCI/SSE2                                                                supported      2     1     3.3    NVIDIA GeForce 9400M
+NVIDIA Corporation GeForce 9400M/integrated/SSE2                                                         supported      2     1     3.3    NVIDIA GeForce 9400M
+NVIDIA Corporation GeForce 9500 GS/PCI/SSE2                                                              supported      3     1     3.3    NVIDIA GeForce 9500
+NVIDIA Corporation GeForce 9500 GS/PCI/SSE2/3DNOW!                                                       supported      3     1     3.3    NVIDIA GeForce 9500
+NVIDIA Corporation GeForce 9500 GS/PCIe/SSE2                                                             supported      3     1     3.3    NVIDIA GeForce 9500
+NVIDIA Corporation GeForce 9500 GS/PCIe/SSE2/3DNOW!                                                      supported      3     1     3.3    NVIDIA GeForce 9500
+NVIDIA Corporation GeForce 9500 GT/PCI/SSE2                                                              supported      3     1     3.3    NVIDIA GeForce 9500
+NVIDIA Corporation GeForce 9500 GT/PCI/SSE2/3DNOW!                                                       supported      3     1     3.3    NVIDIA GeForce 9500
+NVIDIA Corporation GeForce 9500 GT/PCIe/SSE2                                                             supported      3     1     3.3    NVIDIA GeForce 9500
+NVIDIA Corporation GeForce 9500 GT/PCIe/SSE2/3DNOW!                                                      supported      3     1     3.3    NVIDIA GeForce 9500
+NVIDIA Corporation GeForce 9500M GS/PCI/SSE2                                                             supported      1     1     3.3    NVIDIA GeForce 9500M
+NVIDIA Corporation GeForce 9500M GS/PCI/SSE2/3DNOW!                                                      supported      1     1     3.3    NVIDIA GeForce 9500M
+NVIDIA Corporation GeForce 9500M GS/PCIe/SSE2                                                            supported      1     1     3.3    NVIDIA GeForce 9500M
+NVIDIA Corporation GeForce 9600 GS/PCI/SSE2                                                              supported      3     1     3.3    NVIDIA GeForce 9600
+NVIDIA Corporation GeForce 9600 GS/PCI/SSE2/3DNOW!                                                       supported      3     1     3.3    NVIDIA GeForce 9600
+NVIDIA Corporation GeForce 9600 GS/PCIe/SSE2                                                             supported      3     1     3.3    NVIDIA GeForce 9600
+NVIDIA Corporation GeForce 9600 GS/PCIe/SSE2/3DNOW!                                                      supported      3     1     3.3    NVIDIA GeForce 9600
+NVIDIA Corporation GeForce 9600 GSO 512/PCI/SSE2                                                         supported      3     1     3.3    NVIDIA GeForce 9600
+NVIDIA Corporation GeForce 9600 GSO 512/PCI/SSE2/3DNOW!                                                  supported      3     1     3.3    NVIDIA GeForce 9600
+NVIDIA Corporation GeForce 9600 GSO 512/PCIe/SSE2                                                        supported      3     1     3.3    NVIDIA GeForce 9600
+NVIDIA Corporation GeForce 9600 GSO 512/PCIe/SSE2/3DNOW!                                                 supported      3     1     3.3    NVIDIA GeForce 9600
+NVIDIA Corporation GeForce 9600 GSO/PCI/SSE2                                                             supported      3     1     3.3    NVIDIA GeForce 9600
+NVIDIA Corporation GeForce 9600 GSO/PCI/SSE2/3DNOW!                                                      supported      3     1     3.3    NVIDIA GeForce 9600
+NVIDIA Corporation GeForce 9600 GSO/PCIe/SSE2                                                            supported      3     1     3.3    NVIDIA GeForce 9600
+NVIDIA Corporation GeForce 9600 GSO/PCIe/SSE2/3DNOW!                                                     supported      3     1     3.3    NVIDIA GeForce 9600
+NVIDIA Corporation GeForce 9600 GT/PCI/SSE2                                                              supported      3     1     3.3    NVIDIA GeForce 9600
+NVIDIA Corporation GeForce 9600 GT/PCI/SSE2/3DNOW!                                                       supported      3     1     3.3    NVIDIA GeForce 9600
+NVIDIA Corporation GeForce 9600 GT/PCIe/SSE2                                                             supported      3     1     3.3    NVIDIA GeForce 9600
+NVIDIA Corporation GeForce 9600 GT/PCIe/SSE2/3DNOW!                                                      supported      3     1     3.3    NVIDIA GeForce 9600
+NVIDIA Corporation GeForce 9600M GS/PCI/SSE2                                                             supported      2     1     3.3    NVIDIA GeForce 9600M
+NVIDIA Corporation GeForce 9600M GS/PCI/SSE2/3DNOW!                                                      supported      2     1     3.3    NVIDIA GeForce 9600M
+NVIDIA Corporation GeForce 9600M GS/PCIe/SSE2                                                            supported      2     1     3.3    NVIDIA GeForce 9600M
+NVIDIA Corporation GeForce 9600M GT/PCI/SSE2                                                             supported      2     1     3.3    NVIDIA GeForce 9600M
+NVIDIA Corporation GeForce 9600M GT/PCI/SSE2/3DNOW!                                                      supported      2     1     3.3    NVIDIA GeForce 9600M
+NVIDIA Corporation GeForce 9600M GT/PCIe/SSE2                                                            supported      2     1     3.3    NVIDIA GeForce 9600M
+NVIDIA Corporation GeForce 9600M GT/PCIe/SSE2/3DNOW!                                                     supported      2     1     3.3    NVIDIA GeForce 9600M
+NVIDIA Corporation GeForce 9650M GS/PCIe/SSE2                                                            supported      3     1     3.3    NVIDIA GeForce 9600
+NVIDIA Corporation GeForce 9650M GT/PCI/SSE2                                                             supported      3     1     3.3    NVIDIA GeForce 9600
+NVIDIA Corporation GeForce 9650M GT/PCIe/SSE2                                                            supported      3     1     3.3    NVIDIA GeForce 9600
+NVIDIA Corporation GeForce 9700M GT/PCI/SSE2                                                             supported      0     1     3.3    NVIDIA GeForce 9700M
+NVIDIA Corporation GeForce 9700M GT/PCIe/SSE2                                                            supported      0     1     3.3    NVIDIA GeForce 9700M
+NVIDIA Corporation GeForce 9700M GTS/PCI/SSE2                                                            supported      0     1     3.3    NVIDIA GeForce 9700M
+NVIDIA Corporation GeForce 9700M GTS/PCIe/SSE2                                                           supported      0     1     3.3    NVIDIA GeForce 9700M
+NVIDIA Corporation GeForce 9800 GT/PCI/SSE2                                                              supported      3     1     3.3    NVIDIA GeForce 9800
+NVIDIA Corporation GeForce 9800 GT/PCI/SSE2/3DNOW!                                                       supported      3     1     3.3    NVIDIA GeForce 9800
+NVIDIA Corporation GeForce 9800 GT/PCIe/SSE2                                                             supported      3     1     3.3    NVIDIA GeForce 9800
+NVIDIA Corporation GeForce 9800 GT/PCIe/SSE2/3DNOW!                                                      supported      3     1     3.3    NVIDIA GeForce 9800
+NVIDIA Corporation GeForce 9800 GTX+/PCI/SSE2                                                            supported      3     1     3.3    NVIDIA GeForce 9800
+NVIDIA Corporation GeForce 9800 GTX+/PCI/SSE2/3DNOW!                                                     supported      3     1     3.3    NVIDIA GeForce 9800
+NVIDIA Corporation GeForce 9800 GTX+/PCIe/SSE2                                                           supported      3     1     3.3    NVIDIA GeForce 9800
+NVIDIA Corporation GeForce 9800 GTX+/PCIe/SSE2/3DNOW!                                                    supported      3     1     3.3    NVIDIA GeForce 9800
+NVIDIA Corporation GeForce 9800 GTX/9800 GTX+/PCI/SSE2                                                   supported      3     1     3.3    NVIDIA GeForce 9800
+NVIDIA Corporation GeForce 9800 GTX/9800 GTX+/PCI/SSE2/3DNOW!                                            supported      3     1     3.3    NVIDIA GeForce 9800
+NVIDIA Corporation GeForce 9800 GTX/9800 GTX+/PCIe/SSE2                                                  supported      3     1     3.3    NVIDIA GeForce 9800
+NVIDIA Corporation GeForce 9800 GTX/9800 GTX+/PCIe/SSE2/3DNOW!                                           supported      3     1     3.3    NVIDIA GeForce 9800
+NVIDIA Corporation GeForce 9800 GTX/PCI/SSE2                                                             supported      3     1     3.3    NVIDIA GeForce 9800
+NVIDIA Corporation GeForce 9800 GX2/PCIe/SSE2                                                            supported      3     1     3.3    NVIDIA GeForce 9800
+NVIDIA Corporation GeForce 9800 S/PCI/SSE2                                                               supported      3     1     3.3    NVIDIA GeForce 9800
+NVIDIA Corporation GeForce 9800M GS/PCI/SSE2                                                             supported      2     1     3.3    NVIDIA GeForce 9800M
+NVIDIA Corporation GeForce 9800M GS/PCIe/SSE2                                                            supported      2     1     3.3    NVIDIA GeForce 9800M
+NVIDIA Corporation GeForce 9800M GT/PCI/SSE2                                                             supported      2     1     3.3    NVIDIA GeForce 9800M
+NVIDIA Corporation GeForce 9800M GT/PCIe/SSE2                                                            supported      2     1     3.3    NVIDIA GeForce 9800M
+NVIDIA Corporation GeForce 9800M GTS/PCI/SSE2                                                            supported      2     1     3.3    NVIDIA GeForce 9800M
+NVIDIA Corporation GeForce 9800M GTS/PCIe/SSE2                                                           supported      2     1     3.3    NVIDIA GeForce 9800M
+NVIDIA Corporation GeForce 9800M GTX/PCI/SSE2                                                            supported      2     1     3.3    NVIDIA GeForce 9800M
+NVIDIA Corporation GeForce 9800M GTX/PCIe/SSE2                                                           supported      2     1     3.3    NVIDIA GeForce 9800M
+NVIDIA Corporation GeForce FX 5100/AGP/SSE2                                                              supported      3     0     0      NVIDIA 510
+NVIDIA Corporation GeForce FX 5200 Ultra/AGP/SSE2                                                        supported      0     0     2.1    NVIDIA GeForce FX 5200
+NVIDIA Corporation GeForce FX 5200 Ultra/AGP/SSE2/3DNOW!                                                 supported      0     0     2.1    NVIDIA GeForce FX 5200
+NVIDIA Corporation GeForce FX 5200/AGP/SSE/3DNOW!                                                        supported      0     0     2.1    NVIDIA GeForce FX 5200
+NVIDIA Corporation GeForce FX 5200/AGP/SSE2                                                              supported      0     0     2.1    NVIDIA GeForce FX 5200
+NVIDIA Corporation GeForce FX 5200/AGP/SSE2/3DNOW!                                                       supported      0     0     2.1    NVIDIA GeForce FX 5200
+NVIDIA Corporation GeForce FX 5200/PCI/SSE2                                                              supported      0     0     2.1    NVIDIA GeForce FX 5200
+NVIDIA Corporation GeForce FX 5200/PCI/SSE2/3DNOW!                                                       supported      0     0     2.1    NVIDIA GeForce FX 5200
+NVIDIA Corporation GeForce FX 5200LE/AGP/SSE2                                                            supported      0     0     2.1    NVIDIA GeForce FX 5200
+NVIDIA Corporation GeForce FX 5200LE/AGP/SSE2/3DNOW!                                                     supported      0     0     2.1    NVIDIA GeForce FX 5200
+NVIDIA Corporation GeForce FX 5200SE/AGP/SSE2                                                            supported      0     0     2.1    NVIDIA GeForce FX 5200
+NVIDIA Corporation GeForce FX 5500/AGP/SSE2                                                              supported      0     1     2.1    NVIDIA GeForce FX 5500
+NVIDIA Corporation GeForce FX 5500/AGP/SSE2/3DNOW!                                                       supported      0     1     2.1    NVIDIA GeForce FX 5500
+NVIDIA Corporation GeForce FX 5500/PCI/SSE2                                                              supported      0     1     2.1    NVIDIA GeForce FX 5500
+NVIDIA Corporation GeForce FX 5500/PCI/SSE2/3DNOW!                                                       supported      0     1     2.1    NVIDIA GeForce FX 5500
+NVIDIA Corporation GeForce FX 5600/AGP/SSE2                                                              supported      1     1     2.1    NVIDIA GeForce FX 5600
+NVIDIA Corporation GeForce FX 5600XT/AGP/SSE2                                                            supported      1     1     2.1    NVIDIA GeForce FX 5600
+NVIDIA Corporation GeForce FX 5600XT/AGP/SSE2/3DNOW!                                                     supported      1     1     2.1    NVIDIA GeForce FX 5600
+NVIDIA Corporation GeForce FX 5600XT/PCI/SSE2                                                            supported      1     1     2.1    NVIDIA GeForce FX 5600
+NVIDIA Corporation GeForce FX 5700/AGP/SSE2                                                              supported      0     1     2.1    NVIDIA GeForce FX 5700
+NVIDIA Corporation GeForce FX 5700/AGP/SSE2/3DNOW!                                                       supported      0     1     2.1    NVIDIA GeForce FX 5700
+NVIDIA Corporation GeForce FX 5700LE/AGP/SSE2                                                            supported      0     1     2.1    NVIDIA GeForce FX 5700
+NVIDIA Corporation GeForce FX 5700LE/AGP/SSE2/3DNOW!                                                     supported      0     1     2.1    NVIDIA GeForce FX 5700
+NVIDIA Corporation GeForce FX 5700LE/PCI/SSE2/3DNOW!                                                     supported      0     1     2.1    NVIDIA GeForce FX 5700
+NVIDIA Corporation GeForce FX 5700VE/AGP/SSE2                                                            supported      0     1     2.1    NVIDIA GeForce FX 5700
+NVIDIA Corporation GeForce FX 5700VE/AGP/SSE2/3DNOW!                                                     supported      0     1     2.1    NVIDIA GeForce FX 5700
+NVIDIA Corporation GeForce FX 5900 Ultra/AGP/SSE2                                                        supported      1     1     2.1    NVIDIA GeForce FX 5900
+NVIDIA Corporation GeForce FX 5900/AGP/SSE2                                                              supported      1     1     2.1    NVIDIA GeForce FX 5900
+NVIDIA Corporation GeForce FX 5900XT/AGP/SSE2                                                            supported      1     1     2.1    NVIDIA GeForce FX 5900
+NVIDIA Corporation GeForce FX 5900ZT/AGP/SSE2/3DNOW!                                                     supported      1     1     2.1    NVIDIA GeForce FX 5900
+NVIDIA Corporation GeForce FX 5950 Ultra/AGP/SSE2                                                        supported      1     1     2.1    NVIDIA GeForce FX 5900
+NVIDIA Corporation GeForce FX 5950 Ultra/AGP/SSE2/3DNOW!                                                 supported      1     1     2.1    NVIDIA GeForce FX 5900
+NVIDIA Corporation GeForce FX Go5200 32M/64M/AGP/SSE2                                                    supported      0     0     1.5    NVIDIA GeForce FX Go5200
+NVIDIA Corporation GeForce FX Go5200/AGP/SSE2                                                            supported      0     0     1.5    NVIDIA GeForce FX Go5200
+NVIDIA Corporation GeForce FX Go5200/AGP/SSE2/3DNOW!                                                     supported      0     0     1.5    NVIDIA GeForce FX Go5200
+NVIDIA Corporation GeForce FX Go5200/PCI/SSE2                                                            supported      0     0     1.5    NVIDIA GeForce FX Go5200
+NVIDIA Corporation GeForce FX Go5300/AGP/SSE2                                                            supported      0     0     0      NVIDIA GeForce FX Go5300
+NVIDIA Corporation GeForce FX Go53xx Series/AGP/SSE2                                                     supported      0     0     0      NVIDIA GeForce FX Go5300
+NVIDIA Corporation GeForce FX Go5600/AGP/SSE2                                                            supported      0     1     2.1    NVIDIA GeForce FX Go5600
+NVIDIA Corporation GeForce FX Go5650/AGP/SSE2                                                            supported      0     1     2.1    NVIDIA GeForce FX Go5600
+NVIDIA Corporation GeForce FX Go5700/AGP/SSE2                                                            supported      1     1     1.5    NVIDIA GeForce FX Go5700
+NVIDIA Corporation GeForce FX Go5700/AGP/SSE2/3DNOW!                                                     supported      1     1     1.5    NVIDIA GeForce FX Go5700
+NVIDIA Corporation GeForce G 103M/PCI/SSE2                                                               supported      1     1     3.3    NVIDIA G 100M
+NVIDIA Corporation GeForce G 103M/PCIe/SSE2                                                              supported      1     1     3.3    NVIDIA G 100M
+NVIDIA Corporation GeForce G 105M/PCI/SSE2                                                               supported      1     1     3.3    NVIDIA G 100M
+NVIDIA Corporation GeForce G 105M/PCIe/SSE2                                                              supported      1     1     3.3    NVIDIA G 100M
+NVIDIA Corporation GeForce G 110M/PCI/SSE2                                                               supported      1     1     3.3    NVIDIA G 110M
+NVIDIA Corporation GeForce G100/PCI/SSE2                                                                 supported      3     1     4.2    NVIDIA G100
+NVIDIA Corporation GeForce G100/PCI/SSE2/3DNOW!                                                          supported      3     1     4.2    NVIDIA G100
+NVIDIA Corporation GeForce G100/PCIe/SSE2                                                                supported      3     1     4.2    NVIDIA G100
+NVIDIA Corporation GeForce G100/PCIe/SSE2/3DNOW!                                                         supported      3     1     4.2    NVIDIA G100
+NVIDIA Corporation GeForce G102M/PCI/SSE2                                                                supported      1     1     3.3    NVIDIA G 100M
+NVIDIA Corporation GeForce G102M/integrated/SSE2                                                         supported      1     1     3.3    NVIDIA G 100M
+NVIDIA Corporation GeForce G105M/PCI/SSE2                                                                supported      1     1     3.3    NVIDIA G 100M
+NVIDIA Corporation GeForce G105M/PCIe/SSE2                                                               supported      1     1     3.3    NVIDIA G 100M
+NVIDIA Corporation GeForce G200/PCI/SSE2                                                                 supported      2     1     3.3    NVIDIA G200
+NVIDIA Corporation GeForce G200/integrated/SSE2                                                          supported      2     1     3.3    NVIDIA G200
+NVIDIA Corporation GeForce G205M/PCI/SSE2                                                                supported      1     0     0      NVIDIA G 200M
+NVIDIA Corporation GeForce G205M/integrated/SSE2                                                         supported      1     0     0      NVIDIA G 200M
+NVIDIA Corporation GeForce G210/PCI/SSE2                                                                 supported      3     1     3.3    NVIDIA G210
+NVIDIA Corporation GeForce G210/PCI/SSE2/3DNOW!                                                          supported      3     1     3.3    NVIDIA G210
+NVIDIA Corporation GeForce G210/PCIe/SSE2                                                                supported      3     1     3.3    NVIDIA G210
+NVIDIA Corporation GeForce G210/PCIe/SSE2/3DNOW!                                                         supported      3     1     3.3    NVIDIA G210
+NVIDIA Corporation GeForce G210M/PCI/SSE2                                                                supported      3     0     3.3    NVIDIA G210M
+NVIDIA Corporation GeForce G210M/PCIe/SSE2                                                               supported      3     0     3.3    NVIDIA G210M
+NVIDIA Corporation GeForce GT 120/PCI/SSE2                                                               supported      2     0     3.3    NVIDIA GT 120
+NVIDIA Corporation GeForce GT 120/PCI/SSE2/3DNOW!                                                        supported      2     0     3.3    NVIDIA GT 120
+NVIDIA Corporation GeForce GT 120/PCIe/SSE2                                                              supported      2     0     3.3    NVIDIA GT 120
+NVIDIA Corporation GeForce GT 120/PCIe/SSE2/3DNOW!                                                       supported      2     0     3.3    NVIDIA GT 120
+NVIDIA Corporation GeForce GT 120M/PCI/SSE2                                                              supported      2     0     3.3    NVIDIA GT 120
+NVIDIA Corporation GeForce GT 120M/PCIe/SSE2                                                             supported      2     0     3.3    NVIDIA GT 120
+NVIDIA Corporation GeForce GT 130/PCI/SSE2                                                               supported      2     0     3.3    NVIDIA GT 130
+NVIDIA Corporation GeForce GT 130/PCIe/SSE2                                                              supported      2     0     3.3    NVIDIA GT 130
+NVIDIA Corporation GeForce GT 130/PCIe/SSE2/3DNOW!                                                       supported      2     0     3.3    NVIDIA GT 130
+NVIDIA Corporation GeForce GT 130M/PCI/SSE2                                                              supported      3     1     3.3    NVIDIA GT 130M
+NVIDIA Corporation GeForce GT 130M/PCIe/SSE2                                                             supported      3     1     3.3    NVIDIA GT 130M
+NVIDIA Corporation GeForce GT 140/PCI/SSE2                                                               supported      2     0     3.3    NVIDIA GT 140
+NVIDIA Corporation GeForce GT 140/PCIe/SSE2                                                              supported      2     0     3.3    NVIDIA GT 140
+NVIDIA Corporation GeForce GT 220/PCI/SSE2                                                               supported      2     1     3.3    NVIDIA GT 220
+NVIDIA Corporation GeForce GT 220/PCI/SSE2/3DNOW!                                                        supported      2     1     3.3    NVIDIA GT 220
+NVIDIA Corporation GeForce GT 220/PCIe/SSE2                                                              supported      2     1     3.3    NVIDIA GT 220
+NVIDIA Corporation GeForce GT 220/PCIe/SSE2/3DNOW!                                                       supported      2     1     3.3    NVIDIA GT 220
+NVIDIA Corporation GeForce GT 220M/PCI/SSE2                                                              supported      3     1     3.3    NVIDIA GT 220M
+NVIDIA Corporation GeForce GT 220M/PCIe/SSE2                                                             supported      3     1     3.3    NVIDIA GT 220M
+NVIDIA Corporation GeForce GT 230/PCI/SSE2                                                               supported      2     1     3.3    NVIDIA GT 230
+NVIDIA Corporation GeForce GT 230/PCIe/SSE2                                                              supported      2     1     3.3    NVIDIA GT 230
+NVIDIA Corporation GeForce GT 230/PCIe/SSE2/3DNOW!                                                       supported      2     1     3.3    NVIDIA GT 230
+NVIDIA Corporation GeForce GT 230M/PCI/SSE2                                                              supported      3     1     3.3    NVIDIA GT 230M
+NVIDIA Corporation GeForce GT 230M/PCIe/SSE2                                                             supported      3     1     3.3    NVIDIA GT 230M
+NVIDIA Corporation GeForce GT 240/PCI/SSE2                                                               supported      4     1     3.3    NVIDIA GT 240
+NVIDIA Corporation GeForce GT 240/PCI/SSE2/3DNOW!                                                        supported      4     1     3.3    NVIDIA GT 240
+NVIDIA Corporation GeForce GT 240/PCIe/SSE2                                                              supported      4     1     3.3    NVIDIA GT 240
+NVIDIA Corporation GeForce GT 240/PCIe/SSE2/3DNOW!                                                       supported      4     1     3.3    NVIDIA GT 240
+NVIDIA Corporation GeForce GT 240M LE/PCIe/SSE2                                                          supported      3     1     3.3    NVIDIA GT 240M
+NVIDIA Corporation GeForce GT 240M/PCI/SSE2                                                              supported      3     1     3.3    NVIDIA GT 240M
+NVIDIA Corporation GeForce GT 240M/PCI/SSE2/3DNOW!                                                       supported      3     1     3.3    NVIDIA GT 240M
+NVIDIA Corporation GeForce GT 240M/PCIe/SSE2                                                             supported      3     1     3.3    NVIDIA GT 240M
+NVIDIA Corporation GeForce GT 320/PCI/SSE2                                                               supported      3     0     3.3    NVIDIA GT 320
+NVIDIA Corporation GeForce GT 320/PCI/SSE2/3DNOW!                                                        supported      3     0     3.3    NVIDIA GT 320
+NVIDIA Corporation GeForce GT 320/PCIe/SSE2                                                              supported      3     0     3.3    NVIDIA GT 320
+NVIDIA Corporation GeForce GT 320/PCIe/SSE2/3DNOW!                                                       supported      3     0     3.3    NVIDIA GT 320
+NVIDIA Corporation GeForce GT 320M/PCI/SSE2                                                              supported      3     0     3.3    NVIDIA GT 320M
+NVIDIA Corporation GeForce GT 320M/PCIe/SSE2                                                             supported      3     0     3.3    NVIDIA GT 320M
+NVIDIA Corporation GeForce GT 325M/PCI/SSE2                                                              supported      3     0     3.3    NVIDIA GT 320M
+NVIDIA Corporation GeForce GT 325M/PCIe/SSE2                                                             supported      3     0     3.3    NVIDIA GT 320M
+NVIDIA Corporation GeForce GT 330/PCI/SSE2                                                               supported      3     0     3.3    NVIDIA GT 330
+NVIDIA Corporation GeForce GT 330/PCIe/SSE2                                                              supported      3     0     3.3    NVIDIA GT 330
+NVIDIA Corporation GeForce GT 330/PCIe/SSE2/3DNOW!                                                       supported      3     0     3.3    NVIDIA GT 330
+NVIDIA Corporation GeForce GT 330M/PCI/SSE2                                                              supported      3     1     3.3    NVIDIA GT 330M
+NVIDIA Corporation GeForce GT 330M/PCIe/SSE2                                                             supported      3     1     3.3    NVIDIA GT 330M
+NVIDIA Corporation GeForce GT 335M/PCI/SSE2                                                              supported      3     1     3.3    NVIDIA GT 330M
+NVIDIA Corporation GeForce GT 335M/PCIe/SSE2                                                             supported      3     1     3.3    NVIDIA GT 330M
+NVIDIA Corporation GeForce GT 340/PCI/SSE2                                                               supported      3     0     0      NVIDIA GT 340
+NVIDIA Corporation GeForce GT 340/PCIe/SSE2                                                              supported      3     0     0      NVIDIA GT 340
+NVIDIA Corporation GeForce GT 415/PCIe/SSE2                                                              supported      3     1     4.3    NVIDIA GT 415
+NVIDIA Corporation GeForce GT 415/PCIe/SSE2/3DNOW!                                                       supported      3     1     4.3    NVIDIA GT 415
+NVIDIA Corporation GeForce GT 415M/PCI/SSE2                                                              supported      3     0     0      NVIDIA 410M
+NVIDIA Corporation GeForce GT 415M/PCIe/SSE2                                                             supported      3     0     0      NVIDIA 410M
+NVIDIA Corporation GeForce GT 420/PCI/SSE2                                                               supported      3     1     4.3    NVIDIA GT 420
+NVIDIA Corporation GeForce GT 420/PCIe/SSE2                                                              supported      3     1     4.3    NVIDIA GT 420
+NVIDIA Corporation GeForce GT 420/PCIe/SSE2/3DNOW!                                                       supported      3     1     4.3    NVIDIA GT 420
+NVIDIA Corporation GeForce GT 420M/PCI/SSE2                                                              supported      3     1     4.3    NVIDIA GT 420M
+NVIDIA Corporation GeForce GT 420M/PCIe/SSE2                                                             supported      3     1     4.3    NVIDIA GT 420M
+NVIDIA Corporation GeForce GT 425M/PCI/SSE2                                                              supported      3     1     4.3    NVIDIA GT 420M
+NVIDIA Corporation GeForce GT 425M/PCIe/SSE2                                                             supported      3     1     4.3    NVIDIA GT 420M
+NVIDIA Corporation GeForce GT 430/PCI/SSE2                                                               supported      3     1     4.3    NVIDIA GT 430
+NVIDIA Corporation GeForce GT 430/PCI/SSE2/3DNOW!                                                        supported      3     1     4.3    NVIDIA GT 430
+NVIDIA Corporation GeForce GT 430/PCIe/SSE2                                                              supported      3     1     4.3    NVIDIA GT 430
+NVIDIA Corporation GeForce GT 430/PCIe/SSE2/3DNOW!                                                       supported      3     1     4.3    NVIDIA GT 430
+NVIDIA Corporation GeForce GT 435M/PCI/SSE2                                                              supported      3     1     4.3    NVIDIA GT 430M
+NVIDIA Corporation GeForce GT 435M/PCIe/SSE2                                                             supported      3     1     4.3    NVIDIA GT 430M
+NVIDIA Corporation GeForce GT 440/PCI/SSE2                                                               supported      4     1     4.3    NVIDIA GT 440
+NVIDIA Corporation GeForce GT 440/PCI/SSE2/3DNOW!                                                        supported      4     1     4.3    NVIDIA GT 440
+NVIDIA Corporation GeForce GT 440/PCIe/SSE2                                                              supported      4     1     4.3    NVIDIA GT 440
+NVIDIA Corporation GeForce GT 440/PCIe/SSE2/3DNOW!                                                       supported      4     1     4.3    NVIDIA GT 440
+NVIDIA Corporation GeForce GT 445M/PCI/SSE2                                                              supported      3     1     4.3    NVIDIA GT 440M
+NVIDIA Corporation GeForce GT 445M/PCIe/SSE2                                                             supported      3     1     4.3    NVIDIA GT 440M
+NVIDIA Corporation GeForce GT 520/PCI/SSE2                                                               supported      3     1     4.3    NVIDIA GT 520
+NVIDIA Corporation GeForce GT 520/PCI/SSE2/3DNOW!                                                        supported      3     1     4.3    NVIDIA GT 520
+NVIDIA Corporation GeForce GT 520/PCIe/SSE2                                                              supported      3     1     4.3    NVIDIA GT 520
+NVIDIA Corporation GeForce GT 520/PCIe/SSE2/3DNOW!                                                       supported      3     1     4.3    NVIDIA GT 520
+NVIDIA Corporation GeForce GT 520M/PCI/SSE2                                                              supported      3     1     4.3    NVIDIA GT 520M
+NVIDIA Corporation GeForce GT 520M/PCIe/SSE2                                                             supported      3     1     4.3    NVIDIA GT 520M
+NVIDIA Corporation GeForce GT 520MX/PCI/SSE2                                                             supported      3     1     4.3    NVIDIA GT 520M
+NVIDIA Corporation GeForce GT 520MX/PCIe/SSE2                                                            supported      3     1     4.3    NVIDIA GT 520M
+NVIDIA Corporation GeForce GT 525M/PCI/SSE2                                                              supported      3     1     4.3    NVIDIA GT 520M
+NVIDIA Corporation GeForce GT 525M/PCIe/SSE2                                                             supported      3     1     4.3    NVIDIA GT 520M
+NVIDIA Corporation GeForce GT 530/PCI/SSE2                                                               supported      3     1     4.3    NVIDIA GT 530
+NVIDIA Corporation GeForce GT 530/PCIe/SSE2                                                              supported      3     1     4.3    NVIDIA GT 530
+NVIDIA Corporation GeForce GT 530/PCIe/SSE2/3DNOW!                                                       supported      3     1     4.3    NVIDIA GT 530
+NVIDIA Corporation GeForce GT 540M/PCI/SSE2                                                              supported      3     1     4.3    NVIDIA GT 540M
+NVIDIA Corporation GeForce GT 540M/PCIe/SSE2                                                             supported      3     1     4.3    NVIDIA GT 540M
+NVIDIA Corporation GeForce GT 545/PCI/SSE2                                                               supported      3     1     4.3    NVIDIA GT 540
+NVIDIA Corporation GeForce GT 545/PCIe/SSE2                                                              supported      3     1     4.3    NVIDIA GT 540
+NVIDIA Corporation GeForce GT 545/PCIe/SSE2/3DNOW!                                                       supported      3     1     4.3    NVIDIA GT 540
+NVIDIA Corporation GeForce GT 550M/PCI/SSE2                                                              supported      3     1     4.3    NVIDIA GT 550M
+NVIDIA Corporation GeForce GT 550M/PCIe/SSE2                                                             supported      3     1     4.3    NVIDIA GT 550M
+NVIDIA Corporation GeForce GT 555M/PCI/SSE2                                                              supported      3     1     4.3    NVIDIA GT 550M
+NVIDIA Corporation GeForce GT 555M/PCIe/SSE2                                                             supported      3     1     4.3    NVIDIA GT 550M
+NVIDIA Corporation GeForce GT 610/PCIe/SSE2                                                              supported      3     1     4.3    NVIDIA GT 61x
+NVIDIA Corporation GeForce GT 610/PCIe/SSE2/3DNOW!                                                       supported      3     1     4.3    NVIDIA GT 61x
+NVIDIA Corporation GeForce GT 620/PCI/SSE2                                                               supported      3     0     4.3    NVIDIA GT 62x
+NVIDIA Corporation GeForce GT 620/PCIe/SSE2                                                              supported      3     0     4.3    NVIDIA GT 62x
+NVIDIA Corporation GeForce GT 620/PCIe/SSE2/3DNOW!                                                       supported      3     0     4.3    NVIDIA GT 62x
+NVIDIA Corporation GeForce GT 620M/PCI/SSE2                                                              supported      3     0     4.3    NVIDIA GT 620M
+NVIDIA Corporation GeForce GT 620M/PCIe/SSE2                                                             supported      3     0     4.3    NVIDIA GT 620M
+NVIDIA Corporation GeForce GT 625/PCIe/SSE2                                                              supported      3     0     4.3    NVIDIA GT 62x
+NVIDIA Corporation GeForce GT 625M/PCIe/SSE2                                                             supported      3     0     4.3    NVIDIA GT 620M
+NVIDIA Corporation GeForce GT 630/PCIe/SSE2                                                              supported      3     0     4.3    NVIDIA GT 63x
+NVIDIA Corporation GeForce GT 630/PCIe/SSE2/3DNOW!                                                       supported      3     0     4.3    NVIDIA GT 63x
+NVIDIA Corporation GeForce GT 630M/PCI/SSE2                                                              supported      3     0     4.3    NVIDIA GT 630M
+NVIDIA Corporation GeForce GT 630M/PCIe/SSE2                                                             supported      3     0     4.3    NVIDIA GT 630M
+NVIDIA Corporation GeForce GT 635M/PCI/SSE2                                                              supported      3     0     4.3    NVIDIA GT 630M
+NVIDIA Corporation GeForce GT 635M/PCIe/SSE2                                                             supported      3     0     4.3    NVIDIA GT 630M
+NVIDIA Corporation GeForce GT 640/PCIe/SSE2                                                              supported      3     0     4.3    NVIDIA GT 64x
+NVIDIA Corporation GeForce GT 640/PCIe/SSE2/3DNOW!                                                       supported      3     0     4.3    NVIDIA GT 64x
+NVIDIA Corporation GeForce GT 640M LE/PCI/SSE2                                                           supported      3     0     4.3    NVIDIA GT 640M
+NVIDIA Corporation GeForce GT 640M LE/PCIe/SSE2                                                          supported      3     0     4.3    NVIDIA GT 640M
+NVIDIA Corporation GeForce GT 640M/PCIe/SSE2                                                             supported      3     0     4.3    NVIDIA GT 640M
+NVIDIA Corporation GeForce GT 645/PCIe/SSE2                                                              supported      3     0     4.3    NVIDIA GT 64x
+NVIDIA Corporation GeForce GT 645M/PCIe/SSE2                                                             supported      3     0     4.3    NVIDIA GT 640M
+NVIDIA Corporation GeForce GT 650M/PCIe/SSE2                                                             supported      3     0     4.3    NVIDIA GT 650M
+NVIDIA Corporation GeForce GT 720M/PCIe/SSE2                                                             supported      3     0     4.3    NVIDIA GT 720M
+NVIDIA Corporation GeForce GT 730M/PCIe/SSE2                                                             supported      3     0     4.3    NVIDIA GT 730M
+NVIDIA Corporation GeForce GT 735M/PCIe/SSE2                                                             supported      3     0     4.3    NVIDIA GT 730M
+NVIDIA Corporation GeForce GT 740M/PCIe/SSE2                                                             supported      3     0     4.3    NVIDIA GT 740M
+NVIDIA Corporation GeForce GT 750M/PCIe/SSE2                                                             supported      3     0     4.3    NVIDIA GT 750M
+NVIDIA Corporation GeForce GT620M/PCIe/SSE2                                                              supported      3     0     4.3    NVIDIA GT 620M
+NVIDIA Corporation GeForce GT625M/PCIe/SSE2                                                              supported      3     0     4.3    NVIDIA GT 620M
+NVIDIA Corporation GeForce GTS 150/PCI/SSE2                                                              supported      2     0     0      NVIDIA GTS 150
+NVIDIA Corporation GeForce GTS 160M/PCI/SSE2                                                             supported      2     0     0      NVIDIA GTS 160M
+NVIDIA Corporation GeForce GTS 160M/PCIe/SSE2                                                            supported      2     0     0      NVIDIA GTS 160M
+NVIDIA Corporation GeForce GTS 240/PCI/SSE2                                                              supported      4     1     3.3    NVIDIA GTS 240
+NVIDIA Corporation GeForce GTS 240/PCIe/SSE2                                                             supported      4     1     3.3    NVIDIA GTS 240
+NVIDIA Corporation GeForce GTS 240/PCIe/SSE2/3DNOW!                                                      supported      4     1     3.3    NVIDIA GTS 240
+NVIDIA Corporation GeForce GTS 250/PCI/SSE2                                                              supported      4     1     3.3    NVIDIA GTS 250
+NVIDIA Corporation GeForce GTS 250/PCI/SSE2/3DNOW!                                                       supported      4     1     3.3    NVIDIA GTS 250
+NVIDIA Corporation GeForce GTS 250/PCIe/SSE2                                                             supported      4     1     3.3    NVIDIA GTS 250
+NVIDIA Corporation GeForce GTS 250/PCIe/SSE2/3DNOW!                                                      supported      4     1     3.3    NVIDIA GTS 250
+NVIDIA Corporation GeForce GTS 250M/PCI/SSE2                                                             supported      3     0     3.3    NVIDIA GTS 250M
+NVIDIA Corporation GeForce GTS 250M/PCIe/SSE2                                                            supported      3     0     3.3    NVIDIA GTS 250M
+NVIDIA Corporation GeForce GTS 350M/PCI/SSE2                                                             supported      4     1     3.3    NVIDIA GTS 350M
+NVIDIA Corporation GeForce GTS 350M/PCIe/SSE2                                                            supported      4     1     3.3    NVIDIA GTS 350M
+NVIDIA Corporation GeForce GTS 360M/PCI/SSE2                                                             supported      5     1     3.3    NVIDIA GTS 360M
+NVIDIA Corporation GeForce GTS 360M/PCIe/SSE2                                                            supported      5     1     3.3    NVIDIA GTS 360M
+NVIDIA Corporation GeForce GTS 450/PCI/SSE2                                                              supported      4     1     4.3    NVIDIA GTS 450
+NVIDIA Corporation GeForce GTS 450/PCI/SSE2/3DNOW!                                                       supported      4     1     4.3    NVIDIA GTS 450
+NVIDIA Corporation GeForce GTS 450/PCIe/SSE2                                                             supported      4     1     4.3    NVIDIA GTS 450
+NVIDIA Corporation GeForce GTS 450/PCIe/SSE2/3DNOW!                                                      supported      4     1     4.3    NVIDIA GTS 450
+NVIDIA Corporation GeForce GTX 260/PCI/SSE2                                                              supported      4     1     3.3    NVIDIA GTX 260
+NVIDIA Corporation GeForce GTX 260/PCI/SSE2/3DNOW!                                                       supported      4     1     3.3    NVIDIA GTX 260
+NVIDIA Corporation GeForce GTX 260/PCIe/SSE2                                                             supported      4     1     3.3    NVIDIA GTX 260
+NVIDIA Corporation GeForce GTX 260/PCIe/SSE2/3DNOW!                                                      supported      4     1     3.3    NVIDIA GTX 260
+NVIDIA Corporation GeForce GTX 260M/PCI/SSE2                                                             supported      3     0     3.3    NVIDIA GTX 260M
+NVIDIA Corporation GeForce GTX 260M/PCIe/SSE2                                                            supported      3     0     3.3    NVIDIA GTX 260M
+NVIDIA Corporation GeForce GTX 275/PCI/SSE2                                                              supported      4     0     3.3    NVIDIA GTX 270
+NVIDIA Corporation GeForce GTX 275/PCI/SSE2/3DNOW!                                                       supported      4     0     3.3    NVIDIA GTX 270
+NVIDIA Corporation GeForce GTX 275/PCIe/SSE2                                                             supported      4     0     3.3    NVIDIA GTX 270
+NVIDIA Corporation GeForce GTX 275/PCIe/SSE2/3DNOW!                                                      supported      4     0     3.3    NVIDIA GTX 270
+NVIDIA Corporation GeForce GTX 280/PCI/SSE2                                                              supported      4     1     3.3    NVIDIA GTX 280
+NVIDIA Corporation GeForce GTX 280/PCIe/SSE2                                                             supported      4     1     3.3    NVIDIA GTX 280
+NVIDIA Corporation GeForce GTX 280/PCIe/SSE2/3DNOW!                                                      supported      4     1     3.3    NVIDIA GTX 280
+NVIDIA Corporation GeForce GTX 280M/PCI/SSE2                                                             supported      3     0     3.3    NVIDIA GTX 280M
+NVIDIA Corporation GeForce GTX 280M/PCIe/SSE2                                                            supported      3     0     3.3    NVIDIA GTX 280M
+NVIDIA Corporation GeForce GTX 285/PCI/SSE2                                                              supported      4     1     3.3    NVIDIA GTX 280
+NVIDIA Corporation GeForce GTX 285/PCIe/SSE2                                                             supported      4     1     3.3    NVIDIA GTX 280
+NVIDIA Corporation GeForce GTX 285/PCIe/SSE2/3DNOW!                                                      supported      4     1     3.3    NVIDIA GTX 280
+NVIDIA Corporation GeForce GTX 285M/PCI/SSE2                                                             supported      3     0     3.3    NVIDIA GTX 280M
+NVIDIA Corporation GeForce GTX 285M/PCIe/SSE2                                                            supported      3     0     3.3    NVIDIA GTX 280M
+NVIDIA Corporation GeForce GTX 295/PCI/SSE2                                                              supported      5     0     3.3    NVIDIA GTX 290
+NVIDIA Corporation GeForce GTX 295/PCIe/SSE2                                                             supported      5     0     3.3    NVIDIA GTX 290
+NVIDIA Corporation GeForce GTX 295/PCIe/SSE2/3DNOW!                                                      supported      5     0     3.3    NVIDIA GTX 290
+NVIDIA Corporation GeForce GTX 460 SE/PCI/SSE2                                                           supported      5     1     4.3    NVIDIA GTX 460
+NVIDIA Corporation GeForce GTX 460 SE/PCI/SSE2/3DNOW!                                                    supported      5     1     4.3    NVIDIA GTX 460
+NVIDIA Corporation GeForce GTX 460 SE/PCIe/SSE2                                                          supported      5     1     4.3    NVIDIA GTX 460
+NVIDIA Corporation GeForce GTX 460 SE/PCIe/SSE2/3DNOW!                                                   supported      5     1     4.3    NVIDIA GTX 460
+NVIDIA Corporation GeForce GTX 460 v2/PCI/SSE2                                                           supported      5     1     4.3    NVIDIA GTX 460
+NVIDIA Corporation GeForce GTX 460 v2/PCIe/SSE2                                                          supported      5     1     4.3    NVIDIA GTX 460
+NVIDIA Corporation GeForce GTX 460 v2/PCIe/SSE2/3DNOW!                                                   supported      5     1     4.3    NVIDIA GTX 460
+NVIDIA Corporation GeForce GTX 460/PCI/SSE2                                                              supported      5     1     4.3    NVIDIA GTX 460
+NVIDIA Corporation GeForce GTX 460/PCI/SSE2/3DNOW!                                                       supported      5     1     4.3    NVIDIA GTX 460
+NVIDIA Corporation GeForce GTX 460/PCIe/SSE2                                                             supported      5     1     4.3    NVIDIA GTX 460
+NVIDIA Corporation GeForce GTX 460/PCIe/SSE2/3DNOW!                                                      supported      5     1     4.3    NVIDIA GTX 460
+NVIDIA Corporation GeForce GTX 460M/PCI/SSE2                                                             supported      4     1     4.3    NVIDIA GTX 460M
+NVIDIA Corporation GeForce GTX 460M/PCIe/SSE2                                                            supported      4     1     4.3    NVIDIA GTX 460M
+NVIDIA Corporation GeForce GTX 465/PCI/SSE2                                                              supported      5     1     4.3    NVIDIA GTX 460
+NVIDIA Corporation GeForce GTX 465/PCIe/SSE2                                                             supported      5     1     4.3    NVIDIA GTX 460
+NVIDIA Corporation GeForce GTX 465/PCIe/SSE2/3DNOW!                                                      supported      5     1     4.3    NVIDIA GTX 460
+NVIDIA Corporation GeForce GTX 470/PCI/SSE2                                                              supported      5     1     4.3    NVIDIA GTX 470
+NVIDIA Corporation GeForce GTX 470/PCI/SSE2/3DNOW!                                                       supported      5     1     4.3    NVIDIA GTX 470
+NVIDIA Corporation GeForce GTX 470/PCIe/SSE2                                                             supported      5     1     4.3    NVIDIA GTX 470
+NVIDIA Corporation GeForce GTX 470/PCIe/SSE2/3DNOW!                                                      supported      5     1     4.3    NVIDIA GTX 470
+NVIDIA Corporation GeForce GTX 470M/PCI/SSE2                                                             supported      3     0     4.3    NVIDIA GTX 470M
+NVIDIA Corporation GeForce GTX 480/PCI/SSE2                                                              supported      5     1     4.3    NVIDIA GTX 480
+NVIDIA Corporation GeForce GTX 480/PCIe/SSE2                                                             supported      5     1     4.3    NVIDIA GTX 480
+NVIDIA Corporation GeForce GTX 480/PCIe/SSE2/3DNOW!                                                      supported      5     1     4.3    NVIDIA GTX 480
+NVIDIA Corporation GeForce GTX 480M/PCIe/SSE2                                                            supported      3     1     4.3    NVIDIA GTX 480M
+NVIDIA Corporation GeForce GTX 485M/PCI/SSE2                                                             supported      3     1     4.3    NVIDIA GTX 480M
+NVIDIA Corporation GeForce GTX 485M/PCIe/SSE2                                                            supported      3     1     4.3    NVIDIA GTX 480M
+NVIDIA Corporation GeForce GTX 550 Ti/PCI/SSE2                                                           supported      5     1     4.3    NVIDIA GTX 550
+NVIDIA Corporation GeForce GTX 550 Ti/PCI/SSE2/3DNOW!                                                    supported      5     1     4.3    NVIDIA GTX 550
+NVIDIA Corporation GeForce GTX 550 Ti/PCIe/SSE2                                                          supported      5     1     4.3    NVIDIA GTX 550
+NVIDIA Corporation GeForce GTX 550 Ti/PCIe/SSE2/3DNOW!                                                   supported      5     1     4.3    NVIDIA GTX 550
+NVIDIA Corporation GeForce GTX 560 SE/PCIe/SSE2                                                          supported      5     1     4.3    NVIDIA GTX 560
+NVIDIA Corporation GeForce GTX 560 Ti/PCI/SSE2                                                           supported      5     1     4.3    NVIDIA GTX 560
+NVIDIA Corporation GeForce GTX 560 Ti/PCI/SSE2/3DNOW!                                                    supported      5     1     4.3    NVIDIA GTX 560
+NVIDIA Corporation GeForce GTX 560 Ti/PCIe/SSE2                                                          supported      5     1     4.3    NVIDIA GTX 560
+NVIDIA Corporation GeForce GTX 560 Ti/PCIe/SSE2/3DNOW!                                                   supported      5     1     4.3    NVIDIA GTX 560
+NVIDIA Corporation GeForce GTX 560/PCI/SSE2                                                              supported      5     1     4.3    NVIDIA GTX 560
+NVIDIA Corporation GeForce GTX 560/PCI/SSE2/3DNOW!                                                       supported      5     1     4.3    NVIDIA GTX 560
+NVIDIA Corporation GeForce GTX 560/PCIe/SSE2                                                             supported      5     1     4.3    NVIDIA GTX 560
+NVIDIA Corporation GeForce GTX 560/PCIe/SSE2/3DNOW!                                                      supported      5     1     4.3    NVIDIA GTX 560
+NVIDIA Corporation GeForce GTX 560M/PCI/SSE2                                                             supported      3     0     4.3    NVIDIA GTX 560M
+NVIDIA Corporation GeForce GTX 560M/PCIe/SSE2                                                            supported      3     0     4.3    NVIDIA GTX 560M
+NVIDIA Corporation GeForce GTX 570/PCI/SSE2                                                              supported      5     1     4.3    NVIDIA GTX 570
+NVIDIA Corporation GeForce GTX 570/PCI/SSE2/3DNOW!                                                       supported      5     1     4.3    NVIDIA GTX 570
+NVIDIA Corporation GeForce GTX 570/PCIe/SSE2                                                             supported      5     1     4.3    NVIDIA GTX 570
+NVIDIA Corporation GeForce GTX 570/PCIe/SSE2/3DNOW!                                                      supported      5     1     4.3    NVIDIA GTX 570
+NVIDIA Corporation GeForce GTX 570M/PCI/SSE2                                                             supported      5     0     4.3    NVIDIA GTX 570M
+NVIDIA Corporation GeForce GTX 570M/PCIe/SSE2                                                            supported      5     0     4.3    NVIDIA GTX 570M
+NVIDIA Corporation GeForce GTX 580/PCI/SSE2                                                              supported      5     1     4.3    NVIDIA GTX 580
+NVIDIA Corporation GeForce GTX 580/PCI/SSE2/3DNOW!                                                       supported      5     1     4.3    NVIDIA GTX 580
+NVIDIA Corporation GeForce GTX 580/PCIe/SSE2                                                             supported      5     1     4.3    NVIDIA GTX 580
+NVIDIA Corporation GeForce GTX 580/PCIe/SSE2/3DNOW!                                                      supported      5     1     4.3    NVIDIA GTX 580
+NVIDIA Corporation GeForce GTX 580M/PCI/SSE2                                                             supported      5     1     4.3    NVIDIA GTX 580M
+NVIDIA Corporation GeForce GTX 580M/PCIe/SSE2                                                            supported      5     1     4.3    NVIDIA GTX 580M
+NVIDIA Corporation GeForce GTX 590/PCI/SSE2                                                              supported      5     1     4.3    NVIDIA GTX 590
+NVIDIA Corporation GeForce GTX 590/PCIe/SSE2                                                             supported      5     1     4.3    NVIDIA GTX 590
+NVIDIA Corporation GeForce GTX 590/PCIe/SSE2/3DNOW!                                                      supported      5     1     4.3    NVIDIA GTX 590
+NVIDIA Corporation GeForce GTX 645/PCIe/SSE2                                                             supported      3     1     4.3    NVIDIA GTX 64x
+NVIDIA Corporation GeForce GTX 650 Ti BOOST/PCIe/SSE2                                                    supported      3     1     4.3    NVIDIA GTX 65x
+NVIDIA Corporation GeForce GTX 650 Ti BOOST/PCIe/SSE2/3DNOW!                                             supported      3     1     4.3    NVIDIA GTX 65x
+NVIDIA Corporation GeForce GTX 650 Ti Boost/PCIe/SSE2                                                    supported      3     1     4.3    NVIDIA GTX 65x
+NVIDIA Corporation GeForce GTX 650 Ti Boost/PCIe/SSE2/3DNOW!                                             supported      3     1     4.3    NVIDIA GTX 65x
+NVIDIA Corporation GeForce GTX 650 Ti/PCIe/SSE2                                                          supported      3     1     4.3    NVIDIA GTX 65x
+NVIDIA Corporation GeForce GTX 650 Ti/PCIe/SSE2/3DNOW!                                                   supported      3     1     4.3    NVIDIA GTX 65x
+NVIDIA Corporation GeForce GTX 650/PCIe/SSE2                                                             supported      3     1     4.3    NVIDIA GTX 65x
+NVIDIA Corporation GeForce GTX 650/PCIe/SSE2/3DNOW!                                                      supported      3     1     4.3    NVIDIA GTX 65x
+NVIDIA Corporation GeForce GTX 660 Ti/PCIe/SSE2                                                          supported      5     0     4.3    NVIDIA GTX 66x
+NVIDIA Corporation GeForce GTX 660 Ti/PCIe/SSE2/3DNOW!                                                   supported      5     0     4.3    NVIDIA GTX 66x
+NVIDIA Corporation GeForce GTX 660/PCIe/SSE2                                                             supported      5     0     4.3    NVIDIA GTX 66x
+NVIDIA Corporation GeForce GTX 660/PCIe/SSE2/3DNOW!                                                      supported      5     0     4.3    NVIDIA GTX 66x
+NVIDIA Corporation GeForce GTX 660M/PCIe/SSE2                                                            supported      5     0     4.3    NVIDIA GTX 660M
+NVIDIA Corporation GeForce GTX 670/PCIe/SSE2                                                             supported      5     1     4.3    NVIDIA GTX 67x
+NVIDIA Corporation GeForce GTX 670/PCIe/SSE2/3DNOW!                                                      supported      5     1     4.3    NVIDIA GTX 67x
+NVIDIA Corporation GeForce GTX 670M/PCI/SSE2                                                             supported      5     1     4.3    NVIDIA GTX 670M
+NVIDIA Corporation GeForce GTX 670M/PCIe/SSE2                                                            supported      5     1     4.3    NVIDIA GTX 670M
+NVIDIA Corporation GeForce GTX 670MX/PCIe/SSE2                                                           supported      5     1     4.3    NVIDIA GTX 670M
+NVIDIA Corporation GeForce GTX 675M/PCIe/SSE2                                                            supported      5     1     4.3    NVIDIA GTX 670M
+NVIDIA Corporation GeForce GTX 675MX/PCIe/SSE2                                                           supported      5     1     4.3    NVIDIA GTX 670M
+NVIDIA Corporation GeForce GTX 680/PCIe/SSE2                                                             supported      5     1     4.3    NVIDIA GTX 68x
+NVIDIA Corporation GeForce GTX 680/PCIe/SSE2/3DNOW!                                                      supported      5     1     4.3    NVIDIA GTX 68x
+NVIDIA Corporation GeForce GTX 680M/PCIe/SSE2                                                            supported      5     0     4.3    NVIDIA GTX 680M
+NVIDIA Corporation GeForce GTX 680MX/PCIe/SSE2                                                           supported      5     0     4.3    NVIDIA GTX 680M
+NVIDIA Corporation GeForce GTX 690/PCIe/SSE2                                                             supported      5     1     4.3    NVIDIA GTX 69x
+NVIDIA Corporation GeForce GTX 760/PCIe/SSE2                                                             supported      5     0     4.3    NVIDIA GTX 76x
+NVIDIA Corporation GeForce GTX 760M/PCIe/SSE2                                                            supported      5     0     4.3    NVIDIA GTX 760M
+NVIDIA Corporation GeForce GTX 765M/PCIe/SSE2                                                            supported      5     0     4.3    NVIDIA GTX 760M
+NVIDIA Corporation GeForce GTX 770/PCIe/SSE2                                                             supported      5     0     4.3    NVIDIA GTX 77x
+NVIDIA Corporation GeForce GTX 770/PCIe/SSE2/3DNOW!                                                      supported      5     0     4.3    NVIDIA GTX 77x
+NVIDIA Corporation GeForce GTX 770M/PCIe/SSE2                                                            supported      5     0     4.3    NVIDIA GTX 770M
+NVIDIA Corporation GeForce GTX 780/PCIe/SSE2                                                             supported      5     0     4.3    NVIDIA GTX 78x
+NVIDIA Corporation GeForce GTX 780M/PCIe/SSE2                                                            supported      5     0     4.3    NVIDIA GTX 780M
+NVIDIA Corporation GeForce GTX TITAN/PCIe/SSE2                                                           supported      5     0     4.3    NVIDIA GTX TITAN
+NVIDIA Corporation GeForce GTX TITAN/PCIe/SSE2/3DNOW!                                                    supported      5     0     4.3    NVIDIA GTX TITAN
+NVIDIA Corporation GeForce GTX Titan/PCIe/SSE2                                                           supported      5     0     4.3    NVIDIA GTX TITAN
+NVIDIA Corporation GeForce Go 6100/PCI/SSE2                                                              supported      0     1     2.1    NVIDIA GeForce Go 6100
+NVIDIA Corporation GeForce Go 6100/PCI/SSE2/3DNOW!                                                       supported      0     1     2.1    NVIDIA GeForce Go 6100
+NVIDIA Corporation GeForce Go 6150/PCI/SSE2                                                              supported      0     1     2.1    NVIDIA GeForce Go 6100
+NVIDIA Corporation GeForce Go 6150/PCI/SSE2/3DNOW!                                                       supported      0     1     2.1    NVIDIA GeForce Go 6100
+NVIDIA Corporation GeForce Go 6150/integrated/SSE2/3DNOW!                                                supported      0     1     2.1    NVIDIA GeForce Go 6100
+NVIDIA Corporation GeForce Go 6200/PCI/SSE2                                                              supported      0     0     1.5    NVIDIA GeForce Go 6200
+NVIDIA Corporation GeForce Go 6200/PCI/SSE2/3DNOW!                                                       supported      0     0     1.5    NVIDIA GeForce Go 6200
+NVIDIA Corporation GeForce Go 6400/PCI/SSE2                                                              supported      1     1     2.1    NVIDIA GeForce Go 6400
+NVIDIA Corporation GeForce Go 6400/PCIe/SSE2                                                             supported      1     1     2.1    NVIDIA GeForce Go 6400
+NVIDIA Corporation GeForce Go 6600 TE/6200 TE/PCI/SSE2                                                   supported      0     1     2.1    NVIDIA GeForce Go 6600
+NVIDIA Corporation GeForce Go 6600/PCI/SSE2                                                              supported      0     1     2.1    NVIDIA GeForce Go 6600
+NVIDIA Corporation GeForce Go 6800 Ultra/PCI/SSE2                                                        supported      0     1     2.1    NVIDIA GeForce Go 6800
+NVIDIA Corporation GeForce Go 6800/PCI/SSE2                                                              supported      0     1     2.1    NVIDIA GeForce Go 6800
+NVIDIA Corporation GeForce Go 6800/PCIe/SSE2                                                             supported      0     1     2.1    NVIDIA GeForce Go 6800
+NVIDIA Corporation GeForce Go 7200/PCI/SSE2                                                              supported      1     0     2.1    NVIDIA GeForce Go 7200
+NVIDIA Corporation GeForce Go 7200/PCI/SSE2/3DNOW!                                                       supported      1     0     2.1    NVIDIA GeForce Go 7200
+NVIDIA Corporation GeForce Go 7300/PCI/SSE2                                                              supported      1     1     2.1    NVIDIA GeForce Go 7300
+NVIDIA Corporation GeForce Go 7300/PCI/SSE2/3DNOW!                                                       supported      1     1     2.1    NVIDIA GeForce Go 7300
+NVIDIA Corporation GeForce Go 7300/PCIe/SSE2                                                             supported      1     1     2.1    NVIDIA GeForce Go 7300
+NVIDIA Corporation GeForce Go 7400/PCI/SSE2                                                              supported      1     1     2.1    NVIDIA GeForce Go 7400
+NVIDIA Corporation GeForce Go 7400/PCI/SSE2/3DNOW!                                                       supported      1     1     2.1    NVIDIA GeForce Go 7400
+NVIDIA Corporation GeForce Go 7400/PCIe/SSE2                                                             supported      1     1     2.1    NVIDIA GeForce Go 7400
+NVIDIA Corporation GeForce Go 7600 GT/PCI/SSE2                                                           supported      1     1     2.1    NVIDIA GeForce Go 7600
+NVIDIA Corporation GeForce Go 7600/PCI/SSE2                                                              supported      1     1     2.1    NVIDIA GeForce Go 7600
+NVIDIA Corporation GeForce Go 7600/PCI/SSE2/3DNOW!                                                       supported      1     1     2.1    NVIDIA GeForce Go 7600
+NVIDIA Corporation GeForce Go 7600/PCIe/SSE2                                                             supported      1     1     2.1    NVIDIA GeForce Go 7600
+NVIDIA Corporation GeForce Go 7600/PCIe/SSE2/3DNOW!                                                      supported      1     1     2.1    NVIDIA GeForce Go 7600
+NVIDIA Corporation GeForce Go 7700/PCI/SSE2                                                              supported      0     1     2.1    NVIDIA GeForce Go 7700
+NVIDIA Corporation GeForce Go 7800 GTX/PCI/SSE2                                                          supported      2     0     0      NVIDIA GeForce Go 7800
+NVIDIA Corporation GeForce Go 7800/PCI/SSE2                                                              supported      2     0     0      NVIDIA GeForce Go 7800
+NVIDIA Corporation GeForce Go 7900 GS/PCI/SSE2                                                           supported      1     1     2.1    NVIDIA GeForce Go 7900
+NVIDIA Corporation GeForce Go 7900 GS/PCI/SSE2/3DNOW!                                                    supported      1     1     2.1    NVIDIA GeForce Go 7900
+NVIDIA Corporation GeForce Go 7900 GS/PCIe/SSE2                                                          supported      1     1     2.1    NVIDIA GeForce Go 7900
+NVIDIA Corporation GeForce Go 7900 GTX/PCI/SSE2                                                          supported      1     1     2.1    NVIDIA GeForce Go 7900
+NVIDIA Corporation GeForce Go 7950 GTX/PCI/SSE2                                                          supported      1     1     2.1    NVIDIA GeForce Go 7900
+NVIDIA Corporation GeForce Go 7950 GTX/PCI/SSE2/3DNOW!                                                   supported      1     1     2.1    NVIDIA GeForce Go 7900
+NVIDIA Corporation GeForce PCX 5300/PCI/SSE2                                                             supported      0     0     1.5    NVIDIA GeForce PCX
+NVIDIA Corporation GeForce PCX 5750/PCI/SSE2                                                             supported      0     0     1.5    NVIDIA GeForce PCX
+NVIDIA Corporation GeForce2 GTS/AGP/SSE2                                                                 supported      0     1     1.5    NVIDIA GeForce 2
+NVIDIA Corporation GeForce2 MX/AGP/SSE2                                                                  supported      0     1     1.5    NVIDIA GeForce 2
+NVIDIA Corporation GeForce2 MX/AGP/SSE2/3DNOW!                                                           supported      0     1     1.5    NVIDIA GeForce 2
+NVIDIA Corporation GeForce2 MX/PCI/SSE2                                                                  supported      0     1     1.5    NVIDIA GeForce 2
+NVIDIA Corporation GeForce3/AGP/SSE2                                                                     supported      2     1     2.1    NVIDIA GeForce 3
+NVIDIA Corporation GeForce3/AGP/SSE2/3DNOW!                                                              supported      2     1     2.1    NVIDIA GeForce 3
+NVIDIA Corporation GeForce4 420 Go 32M/AGP/SSE2                                                          supported      0     1     1.5    NVIDIA GeForce 4
+NVIDIA Corporation GeForce4 420 Go 32M/AGP/SSE2/3DNOW!                                                   supported      0     1     1.5    NVIDIA GeForce 4
+NVIDIA Corporation GeForce4 420 Go 32M/PCI/SSE2/3DNOW!                                                   supported      0     1     1.5    NVIDIA GeForce 4
+NVIDIA Corporation GeForce4 420 Go/AGP/SSE2                                                              supported      0     1     1.5    NVIDIA GeForce 4
+NVIDIA Corporation GeForce4 4200 Go/AGP/SSE2                                                             supported      0     1     1.5    NVIDIA GeForce 4
+NVIDIA Corporation GeForce4 440 Go 64M/AGP/SSE2/3DNOW!                                                   supported      0     1     1.5    NVIDIA GeForce 4
+NVIDIA Corporation GeForce4 440 Go 64M/PCI/SSE2/3DNOW!                                                   supported      0     1     1.5    NVIDIA GeForce 4
+NVIDIA Corporation GeForce4 440 Go/AGP/SSE2                                                              supported      0     1     1.5    NVIDIA GeForce 4
+NVIDIA Corporation GeForce4 448 Go/AGP/SSE2                                                              supported      0     1     1.5    NVIDIA GeForce 4
+NVIDIA Corporation GeForce4 MX 4000/AGP/SSE2                                                             supported      0     1     1.5    NVIDIA GeForce 4
+NVIDIA Corporation GeForce4 MX 4000/AGP/SSE2/3DNOW!                                                      supported      0     1     1.5    NVIDIA GeForce 4
+NVIDIA Corporation GeForce4 MX 4000/PCI/SSE2                                                             supported      0     1     1.5    NVIDIA GeForce 4
+NVIDIA Corporation GeForce4 MX 4000/PCI/SSE2/3DNOW!                                                      supported      0     1     1.5    NVIDIA GeForce 4
+NVIDIA Corporation GeForce4 MX 420/AGP/SSE2                                                              supported      0     1     1.5    NVIDIA GeForce 4
+NVIDIA Corporation GeForce4 MX 420/PCI/SSE2                                                              supported      0     1     1.5    NVIDIA GeForce 4
+NVIDIA Corporation GeForce4 MX 440 with AGP8X/AGP/SSE2                                                   supported      0     1     1.5    NVIDIA GeForce 4
+NVIDIA Corporation GeForce4 MX 440 with AGP8X/AGP/SSE2/3DNOW!                                            supported      0     1     1.5    NVIDIA GeForce 4
+NVIDIA Corporation GeForce4 MX 440 with AGP8X/PCI/SSE2                                                   supported      0     1     1.5    NVIDIA GeForce 4
+NVIDIA Corporation GeForce4 MX 440/440SE/AGP/SSE2                                                        supported      0     1     1.5    NVIDIA GeForce 4
+NVIDIA Corporation GeForce4 MX 440/AGP/SSE2                                                              supported      0     1     1.5    NVIDIA GeForce 4
+NVIDIA Corporation GeForce4 MX 440/AGP/SSE2/3DNOW!                                                       supported      0     1     1.5    NVIDIA GeForce 4
+NVIDIA Corporation GeForce4 MX 440/PCI/SSE2                                                              supported      0     1     1.5    NVIDIA GeForce 4
+NVIDIA Corporation GeForce4 MX 440SE with AGP8X/AGP/SSE2                                                 supported      0     1     1.5    NVIDIA GeForce 4
+NVIDIA Corporation GeForce4 MX 440SE with AGP8X/PCI/SSE2                                                 supported      0     1     1.5    NVIDIA GeForce 4
+NVIDIA Corporation GeForce4 MX 460/AGP/SSE2                                                              supported      0     1     1.5    NVIDIA GeForce 4
+NVIDIA Corporation GeForce4 MX 460/AGP/SSE2/3DNOW!                                                       supported      0     1     1.5    NVIDIA GeForce 4
+NVIDIA Corporation GeForce4 Ti 4200 with AGP8X/AGP/SSE2                                                  supported      0     1     1.5    NVIDIA GeForce 4
+NVIDIA Corporation GeForce4 Ti 4200 with AGP8X/PCI/SSE2                                                  supported      0     1     1.5    NVIDIA GeForce 4
+NVIDIA Corporation GeForce4 Ti 4200/AGP/SSE2                                                             supported      0     1     1.5    NVIDIA GeForce 4
+NVIDIA Corporation GeForce4 Ti 4400/AGP/SSE2                                                             supported      0     1     1.5    NVIDIA GeForce 4
+NVIDIA Corporation GeForce4 Ti 4600/AGP/SSE2                                                             supported      0     1     1.5    NVIDIA GeForce 4
+NVIDIA Corporation GeForce4 Ti 4600/PCI/SSE2                                                             supported      0     1     1.5    NVIDIA GeForce 4
+NVIDIA Corporation ION LE/PCI/SSE2                                                                       supported      2     1     3.3    NVIDIA ION b
+NVIDIA Corporation ION LE/integrated/SSE2                                                                supported      2     1     3.3    NVIDIA ION b
+NVIDIA Corporation ION/PCI/SSE2                                                                          supported      2     1     3.3    NVIDIA ION b
+NVIDIA Corporation ION/PCIe/SSE2                                                                         supported      2     1     3.3    NVIDIA ION b
+NVIDIA Corporation ION/PCIe/SSE2/3DNOW!                                                                  supported      2     1     3.3    NVIDIA ION b
+NVIDIA Corporation ION/integrated/SSE2                                                                   supported      2     1     3.3    NVIDIA ION b
+NVIDIA Corporation MCP61/PCI/SSE2/3DNOW!                                                                 supported      1     0     2.1    NVIDIA MCP61
+NVIDIA Corporation MCP7A-O/PCI/SSE2                                                                      supported      1     0     0      NVIDIA MCP7A
+NVIDIA Corporation MCP7A-P/PCI/SSE2                                                                      supported      1     0     0      NVIDIA MCP7A
+NVIDIA Corporation N10P-GV2/PCI/SSE2                                                                     supported      1     0     2.1    NVIDIA N10
+NVIDIA Corporation N11M-GE2/PCI/SSE2                                                                     supported      2     0     3.1    NVIDIA Corporation N11M
+NVIDIA Corporation N12P-GVR-B-A1/PCI/SSE2                                                                supported      1     1     4.1    NVIDIA Corporation N12P
+NVIDIA Corporation NB9M-GE1/PCI/SSE2                                                                     supported      1     0     0      NVIDIA NB9M
+NVIDIA Corporation NB9M-GS/PCI/SSE2                                                                      supported      1     0     0      NVIDIA NB9M
+NVIDIA Corporation NV17/AGP/SSE2                                                                         supported      0     0     0      NVIDIA NV17
+NVIDIA Corporation NVIDIA GeForce 210 OpenGL Engine                                                      supported      3     1     3.3    NVIDIA GeForce 210
+NVIDIA Corporation NVIDIA GeForce 310M OpenGL Engine                                                     supported      2     0     3.3    NVIDIA 310M
+NVIDIA Corporation NVIDIA GeForce 320M OpenGL Engine                                                     supported      2     0     3.3    NVIDIA 320M
+NVIDIA Corporation NVIDIA GeForce 6600 GT OpenGL Engine                                                  supported      2     1     2.1    NVIDIA GeForce 6600
+NVIDIA Corporation NVIDIA GeForce 7300 GT OpenGL Engine                                                  supported      1     1     2.1    NVIDIA GeForce 7300
+NVIDIA Corporation NVIDIA GeForce 7600 GT OpenGL Engine                                                  supported      2     1     2.1    NVIDIA GeForce 7600
+NVIDIA Corporation NVIDIA GeForce 7950 GT OpenGL Engine                                                  supported      3     1     2.1    NVIDIA GeForce 7900
+NVIDIA Corporation NVIDIA GeForce 8400 GS OpenGL Engine                                                  supported      2     1     3.3    NVIDIA GeForce 8400
+NVIDIA Corporation NVIDIA GeForce 8500 GT OpenGL Engine                                                  supported      2     1     3.3    NVIDIA GeForce 8500
+NVIDIA Corporation NVIDIA GeForce 8600 GT OpenGL Engine                                                  supported      3     1     3.3    NVIDIA GeForce 8600
+NVIDIA Corporation NVIDIA GeForce 8600 GTS OpenGL Engine                                                 supported      3     1     3.3    NVIDIA GeForce 8600
+NVIDIA Corporation NVIDIA GeForce 8600M GT OpenGL Engine                                                 supported      2     1     3.3    NVIDIA GeForce 8600M
+NVIDIA Corporation NVIDIA GeForce 8800 GS OpenGL Engine                                                  supported      3     1     3.3    NVIDIA GeForce 8800
+NVIDIA Corporation NVIDIA GeForce 8800 GT OpenGL Engine                                                  supported      3     1     3.3    NVIDIA GeForce 8800
+NVIDIA Corporation NVIDIA GeForce 8800 GTS 512 OpenGL Engine                                             supported      3     1     3.3    NVIDIA GeForce 8800
+NVIDIA Corporation NVIDIA GeForce 8800 GTS OpenGL Engine                                                 supported      3     1     3.3    NVIDIA GeForce 8800
+NVIDIA Corporation NVIDIA GeForce 8800 GTX OpenGL Engine                                                 supported      3     1     3.3    NVIDIA GeForce 8800
+NVIDIA Corporation NVIDIA GeForce 8800 Ultra OpenGL Engine                                               supported      3     1     3.3    NVIDIA GeForce 8800
+NVIDIA Corporation NVIDIA GeForce 9200M GS OpenGL Engine                                                 supported      1     0     3.3    NVIDIA GeForce 9200M
+NVIDIA Corporation NVIDIA GeForce 9400 GT OpenGL Engine                                                  supported      3     1     3.3    NVIDIA GeForce 9400
+NVIDIA Corporation NVIDIA GeForce 9400 OpenGL Engine                                                     supported      3     1     3.3    NVIDIA GeForce 9400
+NVIDIA Corporation NVIDIA GeForce 9400M OpenGL Engine                                                    supported      2     1     3.3    NVIDIA GeForce 9400M
+NVIDIA Corporation NVIDIA GeForce 9500 GT OpenGL Engine                                                  supported      3     1     3.3    NVIDIA GeForce 9500
+NVIDIA Corporation NVIDIA GeForce 9600 GT OpenGL Engine                                                  supported      3     1     3.3    NVIDIA GeForce 9600
+NVIDIA Corporation NVIDIA GeForce 9600M GT OpenGL Engine                                                 supported      2     1     3.3    NVIDIA GeForce 9600M
+NVIDIA Corporation NVIDIA GeForce 9800 GT OpenGL Engine                                                  supported      3     1     3.3    NVIDIA GeForce 9800
+NVIDIA Corporation NVIDIA GeForce 9800 GTX+ OpenGL Engine                                                supported      3     1     3.3    NVIDIA GeForce 9800
+NVIDIA Corporation NVIDIA GeForce GT 120 OpenGL Engine                                                   supported      2     0     3.3    NVIDIA GT 120
+NVIDIA Corporation NVIDIA GeForce GT 130 OpenGL Engine                                                   supported      2     0     3.3    NVIDIA GT 130
+NVIDIA Corporation NVIDIA GeForce GT 220 OpenGL Engine                                                   supported      2     1     3.3    NVIDIA GT 220
+NVIDIA Corporation NVIDIA GeForce GT 240 OpenGL Engine                                                   supported      4     1     3.3    NVIDIA GT 240
+NVIDIA Corporation NVIDIA GeForce GT 320M OpenGL Engine                                                  supported      3     0     3.3    NVIDIA GT 320M
+NVIDIA Corporation NVIDIA GeForce GT 330M OpenGL Engine                                                  supported      3     1     3.3    NVIDIA GT 330M
+NVIDIA Corporation NVIDIA GeForce GT 430 OpenGL Engine                                                   supported      3     1     4.3    NVIDIA GT 430
+NVIDIA Corporation NVIDIA GeForce GT 440 OpenGL Engine                                                   supported      4     1     4.3    NVIDIA GT 440
+NVIDIA Corporation NVIDIA GeForce GT 520 OpenGL Engine                                                   supported      3     1     4.3    NVIDIA GT 520
+NVIDIA Corporation NVIDIA GeForce GT 630 OpenGL Engine                                                   supported      3     0     4.3    NVIDIA GT 63x
+NVIDIA Corporation NVIDIA GeForce GT 640 OpenGL Engine                                                   supported      3     0     4.3    NVIDIA GT 64x
+NVIDIA Corporation NVIDIA GeForce GT 640M OpenGL Engine                                                  supported      3     0     4.3    NVIDIA GT 640M
+NVIDIA Corporation NVIDIA GeForce GT 650M OpenGL Engine                                                  supported      3     0     4.3    NVIDIA GT 650M
+NVIDIA Corporation NVIDIA GeForce GTS 250 OpenGL Engine                                                  supported      4     1     3.3    NVIDIA GTS 250
+NVIDIA Corporation NVIDIA GeForce GTS 450 OpenGL Engine                                                  supported      4     1     4.3    NVIDIA GTS 450
+NVIDIA Corporation NVIDIA GeForce GTX 260 OpenGL Engine                                                  supported      4     1     3.3    NVIDIA GTX 260
+NVIDIA Corporation NVIDIA GeForce GTX 280 OpenGL Engine                                                  supported      4     1     3.3    NVIDIA GTX 280
+NVIDIA Corporation NVIDIA GeForce GTX 285 OpenGL Engine                                                  supported      4     1     3.3    NVIDIA GTX 280
+NVIDIA Corporation NVIDIA GeForce GTX 460 OpenGL Engine                                                  supported      5     1     4.3    NVIDIA GTX 460
+NVIDIA Corporation NVIDIA GeForce GTX 470 OpenGL Engine                                                  supported      5     1     4.3    NVIDIA GTX 470
+NVIDIA Corporation NVIDIA GeForce GTX 480 OpenGL Engine                                                  supported      5     1     4.3    NVIDIA GTX 480
+NVIDIA Corporation NVIDIA GeForce GTX 550 Ti OpenGL Engine                                               supported      5     1     4.3    NVIDIA GTX 550
+NVIDIA Corporation NVIDIA GeForce GTX 560 OpenGL Engine                                                  supported      5     1     4.3    NVIDIA GTX 560
+NVIDIA Corporation NVIDIA GeForce GTX 560 Ti OpenGL Engine                                               supported      5     1     4.3    NVIDIA GTX 560
+NVIDIA Corporation NVIDIA GeForce GTX 570 OpenGL Engine                                                  supported      5     1     4.3    NVIDIA GTX 570
+NVIDIA Corporation NVIDIA GeForce GTX 580 OpenGL Engine                                                  supported      5     1     4.3    NVIDIA GTX 580
+NVIDIA Corporation NVIDIA GeForce GTX 650 OpenGL Engine                                                  supported      3     1     4.3    NVIDIA GTX 65x
+NVIDIA Corporation NVIDIA GeForce GTX 650 Ti OpenGL Engine                                               supported      3     1     4.3    NVIDIA GTX 65x
+NVIDIA Corporation NVIDIA GeForce GTX 660 OpenGL Engine                                                  supported      5     0     4.3    NVIDIA GTX 66x
+NVIDIA Corporation NVIDIA GeForce GTX 660 Ti OpenGL Engine                                               supported      5     0     4.3    NVIDIA GTX 66x
+NVIDIA Corporation NVIDIA GeForce GTX 660M OpenGL Engine                                                 supported      5     0     4.3    NVIDIA GTX 660M
+NVIDIA Corporation NVIDIA GeForce GTX 670 OpenGL Engine                                                  supported      5     1     4.3    NVIDIA GTX 67x
+NVIDIA Corporation NVIDIA GeForce GTX 675MX OpenGL Engine                                                supported      5     1     4.3    NVIDIA GTX 670M
+NVIDIA Corporation NVIDIA GeForce GTX 680 OpenGL Engine                                                  supported      5     1     4.3    NVIDIA GTX 68x
+NVIDIA Corporation NVIDIA GeForce GTX 680MX OpenGL Engine                                                supported      5     0     4.3    NVIDIA GTX 680M
+NVIDIA Corporation NVIDIA GeForce GTX 775M OpenGL Engine                                                 supported      5     0     4.3    NVIDIA GTX 770M
+NVIDIA Corporation NVIDIA GeForce GTX 780M OpenGL Engine                                                 supported      5     0     4.3    NVIDIA GTX 780M
+NVIDIA Corporation NVIDIA GeForce Go 7600 OpenGL Engine                                                  supported      1     1     2.1    NVIDIA GeForce Go 7600
+NVIDIA Corporation NVIDIA GeForce Pre-Release D14P2-30 OpenGL Engine                                     supported      2     1     3.3    NVIDIA GeForce Pre-Release
+NVIDIA Corporation NVIDIA GeForce Pre-Release GK104 OpenGL Engine                                        supported      2     1     3.3    NVIDIA GeForce Pre-Release
+NVIDIA Corporation NVIDIA GeForce Pre-Release ION OpenGL Engine                                          supported      2     1     3.3    NVIDIA GeForce Pre-Release
+NVIDIA Corporation NVIDIA GeForce Pre-Release Unknown OpenGL Engine                                      supported      2     1     3.3    NVIDIA GeForce Pre-Release
+NVIDIA Corporation NVIDIA NV34MAP OpenGL Engine                                                          supported      0     0     0      NVIDIA NV34
+NVIDIA Corporation NVIDIA Quadro 4000 OpenGL Engine                                                      supported      3     0     4.2    NVIDIA Quadro 4000
+NVIDIA Corporation NVIDIA Quadro FX 4500 OpenGL Engine                                                   supported      3     0     2.1    NVIDIA Quadro FX 4500
+NVIDIA Corporation NVIDIA Quadro FX 4800 OpenGL Engine                                                   supported      3     0     3.1    NVIDIA Quadro FX 4800
+NVIDIA Corporation NVIDIA Quadro FX 5600 OpenGL Engine                                                   supported      1     0     3.3    NVIDIA Quadro FX
+NVIDIA Corporation NVIDIA Quadro FX 580 OpenGL Engine                                                    supported      1     0     3.3    NVIDIA Quadro FX
+NVIDIA Corporation NVIDIA Quadro FX 770M OpenGL Engine                                                   supported      2     0     3.3    NVIDIA Quadro FX 770M
+NVIDIA Corporation NVS 2100M/PCI/SSE2                                                                    supported      2     0     3.3    NVIDIA Quadro NVS 2100M
+NVIDIA Corporation NVS 2100M/PCIe/SSE2                                                                   supported      2     0     3.3    NVIDIA Quadro NVS 2100M
+NVIDIA Corporation NVS 300/PCI/SSE2                                                                      supported      0     0     4.2    NVIDIA Quadro NVS
+NVIDIA Corporation NVS 300/PCI/SSE2/3DNOW!                                                               supported      0     0     4.2    NVIDIA Quadro NVS
+NVIDIA Corporation NVS 300/PCIe/SSE2                                                                     supported      0     0     4.2    NVIDIA Quadro NVS
+NVIDIA Corporation NVS 310/PCIe/SSE2                                                                     supported      0     0     4.2    NVIDIA Quadro NVS
+NVIDIA Corporation NVS 3100M/PCI/SSE2                                                                    supported      2     0     3.3    NVIDIA Quadro NVS 3100M
+NVIDIA Corporation NVS 3100M/PCIe/SSE2                                                                   supported      2     0     3.3    NVIDIA Quadro NVS 3100M
+NVIDIA Corporation NVS 315/PCIe/SSE2                                                                     supported      0     0     4.2    NVIDIA Quadro NVS
+NVIDIA Corporation NVS 4200M/PCI/SSE2                                                                    supported      2     0     4.2    NVIDIA Quadro NVS 4200M
+NVIDIA Corporation NVS 4200M/PCIe/SSE2                                                                   supported      2     0     4.2    NVIDIA Quadro NVS 4200M
+NVIDIA Corporation NVS 510/PCIe/SSE2                                                                     supported      0     0     4.2    NVIDIA Quadro NVS
+NVIDIA Corporation NVS 5100M/PCI/SSE2                                                                    supported      2     0     0      NVIDIA Quadro NVS 5100M
+NVIDIA Corporation NVS 5100M/PCIe/SSE2                                                                   supported      2     0     0      NVIDIA Quadro NVS 5100M
+NVIDIA Corporation NVS 5200M/PCI/SSE2                                                                    supported      2     0     0      NVIDIA Quadro NVS 5200M
+NVIDIA Corporation NVS 5200M/PCIe/SSE2                                                                   supported      2     0     0      NVIDIA Quadro NVS 5200M
+NVIDIA Corporation NVS 5400M/PCIe/SSE2                                                                   supported      2     0     0      NVIDIA Quadro NVS 5400M
+NVIDIA Corporation Quadro 1000M/PCI/SSE2                                                                 supported      2     0     4.2    NVIDIA Quadro 1000M
+NVIDIA Corporation Quadro 1000M/PCIe/SSE2                                                                supported      2     0     4.2    NVIDIA Quadro 1000M
+NVIDIA Corporation Quadro 1100M/PCIe/SSE2                                                                supported      2     0     3.3    NVIDIA Quadro 1100M
+NVIDIA Corporation Quadro 2000 D/PCI/SSE2                                                                supported      3     0     4.2    NVIDIA Quadro 2000 M/D
+NVIDIA Corporation Quadro 2000/PCI/SSE2                                                                  supported      3     0     4.2    NVIDIA Quadro 2000 M/D
+NVIDIA Corporation Quadro 2000/PCIe/SSE2                                                                 supported      3     0     4.2    NVIDIA Quadro 2000 M/D
+NVIDIA Corporation Quadro 2000D/PCIe/SSE2                                                                supported      3     0     4.2    NVIDIA Quadro 2000 M/D
+NVIDIA Corporation Quadro 2000M/PCI/SSE2                                                                 supported      3     0     4.2    NVIDIA Quadro 2000 M/D
+NVIDIA Corporation Quadro 2000M/PCIe/SSE2                                                                supported      3     0     4.2    NVIDIA Quadro 2000 M/D
+NVIDIA Corporation Quadro 3000M/PCI/SSE2                                                                 supported      3     0     4.2    NVIDIA Quadro 3000M
+NVIDIA Corporation Quadro 3000M/PCIe/SSE2                                                                supported      3     0     4.2    NVIDIA Quadro 3000M
+NVIDIA Corporation Quadro 400/PCI/SSE2                                                                   supported      2     0     3.3    NVIDIA Quadro 400
+NVIDIA Corporation Quadro 400/PCI/SSE2/3DNOW!                                                            supported      2     0     3.3    NVIDIA Quadro 400
+NVIDIA Corporation Quadro 400/PCIe/SSE2                                                                  supported      2     0     3.3    NVIDIA Quadro 400
+NVIDIA Corporation Quadro 4000/PCI/SSE2                                                                  supported      3     0     4.2    NVIDIA Quadro 4000
+NVIDIA Corporation Quadro 4000/PCIe/SSE2                                                                 supported      3     0     4.2    NVIDIA Quadro 4000
+NVIDIA Corporation Quadro 4000M/PCI/SSE2                                                                 supported      3     0     4.2    NVIDIA Quadro 4000M
+NVIDIA Corporation Quadro 4000M/PCIe/SSE2                                                                supported      3     0     4.2    NVIDIA Quadro 4000M
+NVIDIA Corporation Quadro 410/PCIe/SSE2                                                                  supported      3     0     3.3    NVIDIA 410
+NVIDIA Corporation Quadro 5000/PCI/SSE2                                                                  supported      3     0     4.2    NVIDIA Quadro 50x0 M
+NVIDIA Corporation Quadro 5000/PCIe/SSE2                                                                 supported      3     0     4.2    NVIDIA Quadro 50x0 M
+NVIDIA Corporation Quadro 5000M/PCI/SSE2                                                                 supported      3     0     4.2    NVIDIA Quadro 50x0 M
+NVIDIA Corporation Quadro 5000M/PCIe/SSE2                                                                supported      3     0     4.2    NVIDIA Quadro 50x0 M
+NVIDIA Corporation Quadro 5010M/PCI/SSE2                                                                 supported      3     0     4.2    NVIDIA Quadro 50x0 M
+NVIDIA Corporation Quadro 5010M/PCIe/SSE2                                                                supported      3     0     4.2    NVIDIA Quadro 50x0 M
+NVIDIA Corporation Quadro 600/PCI/SSE2                                                                   supported      2     0     4.2    NVIDIA Quadro K600
+NVIDIA Corporation Quadro 600/PCIe/SSE2                                                                  supported      2     0     4.2    NVIDIA Quadro K600
+NVIDIA Corporation Quadro 600/PCIe/SSE2/3DNOW!                                                           supported      2     0     4.2    NVIDIA Quadro K600
+NVIDIA Corporation Quadro 6000/PCIe/SSE2                                                                 supported      3     0     0      NVIDIA Quadro 6000
+NVIDIA Corporation Quadro FX 1000/AGP/SSE2                                                               supported      1     0     3.3    NVIDIA Quadro FX
+NVIDIA Corporation Quadro FX 1100/AGP/SSE2                                                               supported      1     0     3.3    NVIDIA Quadro FX
+NVIDIA Corporation Quadro FX 1300/PCI/SSE2                                                               supported      1     0     3.3    NVIDIA Quadro FX
+NVIDIA Corporation Quadro FX 1400/PCI/SSE2                                                               supported      1     0     3.3    NVIDIA Quadro FX
+NVIDIA Corporation Quadro FX 1400/PCIe/SSE2                                                              supported      1     0     3.3    NVIDIA Quadro FX
+NVIDIA Corporation Quadro FX 1400/PCIe/SSE2/3DNOW!                                                       supported      1     0     3.3    NVIDIA Quadro FX
+NVIDIA Corporation Quadro FX 1500/PCI/SSE2                                                               supported      1     0     3.3    NVIDIA Quadro FX
+NVIDIA Corporation Quadro FX 1500/PCIe/SSE2                                                              supported      1     0     3.3    NVIDIA Quadro FX
+NVIDIA Corporation Quadro FX 1500/PCIe/SSE2/3DNOW!                                                       supported      1     0     3.3    NVIDIA Quadro FX
+NVIDIA Corporation Quadro FX 1500M/PCI/SSE2                                                              supported      1     0     2.1    NVIDIA Quadro FX 1500M
+NVIDIA Corporation Quadro FX 1600M/PCI/SSE2                                                              supported      2     0     3.3    NVIDIA Quadro FX 1600M
+NVIDIA Corporation Quadro FX 1600M/PCIe/SSE2                                                             supported      2     0     3.3    NVIDIA Quadro FX 1600M
+NVIDIA Corporation Quadro FX 1700/PCI/SSE2                                                               supported      1     0     3.3    NVIDIA Quadro FX
+NVIDIA Corporation Quadro FX 1700/PCIe/SSE2                                                              supported      1     0     3.3    NVIDIA Quadro FX
+NVIDIA Corporation Quadro FX 1700/PCIe/SSE2/3DNOW!                                                       supported      1     0     3.3    NVIDIA Quadro FX
+NVIDIA Corporation Quadro FX 1700M/PCI/SSE2                                                              supported      1     0     3.3    NVIDIA Quadro FX
+NVIDIA Corporation Quadro FX 1700M/PCIe/SSE2                                                             supported      1     0     3.3    NVIDIA Quadro FX
+NVIDIA Corporation Quadro FX 1800/PCI/SSE2                                                               supported      1     0     3.3    NVIDIA Quadro FX
+NVIDIA Corporation Quadro FX 1800/PCIe/SSE2                                                              supported      1     0     3.3    NVIDIA Quadro FX
+NVIDIA Corporation Quadro FX 1800M/PCI/SSE2                                                              supported      1     0     3.3    NVIDIA Quadro FX
+NVIDIA Corporation Quadro FX 1800M/PCIe/SSE2                                                             supported      1     0     3.3    NVIDIA Quadro FX
+NVIDIA Corporation Quadro FX 2000/AGP/SSE2                                                               supported      1     0     3.3    NVIDIA Quadro FX
+NVIDIA Corporation Quadro FX 2500M/PCI/SSE2                                                              supported      2     0     2.1    NVIDIA Quadro FX 2500M
+NVIDIA Corporation Quadro FX 2500M/PCIe/SSE2                                                             supported      2     0     2.1    NVIDIA Quadro FX 2500M
+NVIDIA Corporation Quadro FX 2700M/PCI/SSE2                                                              supported      3     0     3.3    NVIDIA Quadro FX 2700M
+NVIDIA Corporation Quadro FX 2700M/PCIe/SSE2                                                             supported      3     0     3.3    NVIDIA Quadro FX 2700M
+NVIDIA Corporation Quadro FX 2800M/PCI/SSE2                                                              supported      3     0     3.3    NVIDIA Quadro FX 2800M
+NVIDIA Corporation Quadro FX 2800M/PCIe/SSE2                                                             supported      3     0     3.3    NVIDIA Quadro FX 2800M
+NVIDIA Corporation Quadro FX 3000/AGP/SSE2                                                               supported      1     0     3.3    NVIDIA Quadro FX
+NVIDIA Corporation Quadro FX 3400/PCI/SSE2                                                               supported      1     0     3.3    NVIDIA Quadro FX
+NVIDIA Corporation Quadro FX 3450/4000 SDI/PCI/SSE2                                                      supported      1     0     3.3    NVIDIA Quadro FX
+NVIDIA Corporation Quadro FX 3450/4000 SDI/PCI/SSE2/3DNOW!                                               supported      1     0     3.3    NVIDIA Quadro FX
+NVIDIA Corporation Quadro FX 3450/4000 SDI/PCIe/SSE2                                                     supported      1     0     3.3    NVIDIA Quadro FX
+NVIDIA Corporation Quadro FX 3500/PCI/SSE2                                                               supported      2     0     2.1    NVIDIA Quadro FX 3500
+NVIDIA Corporation Quadro FX 3500/PCIe/SSE2                                                              supported      2     0     2.1    NVIDIA Quadro FX 3500
+NVIDIA Corporation Quadro FX 3500M/PCI/SSE2                                                              supported      2     0     2.1    NVIDIA Quadro FX 3500
+NVIDIA Corporation Quadro FX 350M/PCI/SSE2                                                               supported      1     0     3.3    NVIDIA Quadro FX
+NVIDIA Corporation Quadro FX 3600M/PCI/SSE2                                                              supported      3     0     3.3    NVIDIA Quadro FX 3600
+NVIDIA Corporation Quadro FX 3600M/PCIe/SSE2                                                             supported      3     0     3.3    NVIDIA Quadro FX 3600
+NVIDIA Corporation Quadro FX 360M/PCI/SSE2                                                               supported      1     0     3.3    NVIDIA Quadro FX
+NVIDIA Corporation Quadro FX 360M/PCIe/SSE2                                                              supported      1     0     3.3    NVIDIA Quadro FX
+NVIDIA Corporation Quadro FX 370 Low Profile/PCIe/SSE2                                                   supported      1     0     3.3    NVIDIA Quadro FX
+NVIDIA Corporation Quadro FX 370/PCI/SSE2                                                                supported      1     0     3.3    NVIDIA Quadro FX
+NVIDIA Corporation Quadro FX 370/PCIe/SSE2                                                               supported      1     0     3.3    NVIDIA Quadro FX
+NVIDIA Corporation Quadro FX 370/PCIe/SSE2/3DNOW!                                                        supported      1     0     3.3    NVIDIA Quadro FX
+NVIDIA Corporation Quadro FX 3700/PCI/SSE2                                                               supported      3     0     3.3    NVIDIA Quadro FX 3700
+NVIDIA Corporation Quadro FX 3700/PCIe/SSE2                                                              supported      3     0     3.3    NVIDIA Quadro FX 3700
+NVIDIA Corporation Quadro FX 3700M/PCI/SSE2                                                              supported      3     0     3.3    NVIDIA Quadro FX 3700
+NVIDIA Corporation Quadro FX 3700M/PCIe/SSE2                                                             supported      3     0     3.3    NVIDIA Quadro FX 3700
+NVIDIA Corporation Quadro FX 370M/PCI/SSE2                                                               supported      1     0     3.3    NVIDIA Quadro FX
+NVIDIA Corporation Quadro FX 370M/PCIe/SSE2                                                              supported      1     0     3.3    NVIDIA Quadro FX
+NVIDIA Corporation Quadro FX 380 LP/PCIe/SSE2                                                            supported      1     0     3.3    NVIDIA Quadro FX
+NVIDIA Corporation Quadro FX 380 LP/PCIe/SSE2/3DNOW!                                                     supported      1     0     3.3    NVIDIA Quadro FX
+NVIDIA Corporation Quadro FX 380/PCI/SSE2                                                                supported      1     0     3.3    NVIDIA Quadro FX
+NVIDIA Corporation Quadro FX 380/PCIe/SSE2                                                               supported      1     0     3.3    NVIDIA Quadro FX
+NVIDIA Corporation Quadro FX 3800/PCI/SSE2                                                               supported      3     0     3.3    NVIDIA Quadro FX 3800
+NVIDIA Corporation Quadro FX 3800/PCIe/SSE2                                                              supported      3     0     3.3    NVIDIA Quadro FX 3800
+NVIDIA Corporation Quadro FX 3800M/PCI/SSE2                                                              supported      3     0     3.3    NVIDIA Quadro FX 3800
+NVIDIA Corporation Quadro FX 3800M/PCIe/SSE2                                                             supported      3     0     3.3    NVIDIA Quadro FX 3800
+NVIDIA Corporation Quadro FX 380M/PCI/SSE2                                                               supported      1     0     3.3    NVIDIA Quadro FX
+NVIDIA Corporation Quadro FX 380M/PCIe/SSE2                                                              supported      1     0     3.3    NVIDIA Quadro FX
+NVIDIA Corporation Quadro FX 4500/PCI/SSE2                                                               supported      3     0     2.1    NVIDIA Quadro FX 4500
+NVIDIA Corporation Quadro FX 4500/PCIe/SSE2                                                              supported      3     0     2.1    NVIDIA Quadro FX 4500
+NVIDIA Corporation Quadro FX 4600/PCIe/SSE2                                                              supported      1     0     3.3    NVIDIA Quadro FX
+NVIDIA Corporation Quadro FX 4800/PCI/SSE2                                                               supported      3     0     3.1    NVIDIA Quadro FX 4800
+NVIDIA Corporation Quadro FX 4800/PCIe/SSE2                                                              supported      3     0     3.1    NVIDIA Quadro FX 4800
+NVIDIA Corporation Quadro FX 500/AGP/SSE2                                                                supported      1     0     3.3    NVIDIA Quadro FX
+NVIDIA Corporation Quadro FX 500/FX 600/AGP/SSE2                                                         supported      1     0     3.3    NVIDIA Quadro FX
+NVIDIA Corporation Quadro FX 500/FX 600/AGP/SSE2/3DNOW!                                                  supported      1     0     3.3    NVIDIA Quadro FX
+NVIDIA Corporation Quadro FX 500/FX 600/PCI/SSE2                                                         supported      1     0     3.3    NVIDIA Quadro FX
+NVIDIA Corporation Quadro FX 540/PCI/SSE2                                                                supported      1     0     3.3    NVIDIA Quadro FX
+NVIDIA Corporation Quadro FX 540/PCIe/SSE2                                                               supported      1     0     3.3    NVIDIA Quadro FX
+NVIDIA Corporation Quadro FX 550/PCI/SSE2                                                                supported      1     0     3.3    NVIDIA Quadro FX
+NVIDIA Corporation Quadro FX 550/PCIe/SSE2                                                               supported      1     0     3.3    NVIDIA Quadro FX
+NVIDIA Corporation Quadro FX 5500/PCI/SSE2                                                               supported      1     0     3.3    NVIDIA Quadro FX
+NVIDIA Corporation Quadro FX 560/PCI/SSE2                                                                supported      1     0     3.3    NVIDIA Quadro FX
+NVIDIA Corporation Quadro FX 560/PCIe/SSE2                                                               supported      1     0     3.3    NVIDIA Quadro FX
+NVIDIA Corporation Quadro FX 5600/PCIe/SSE2                                                              supported      1     0     3.3    NVIDIA Quadro FX
+NVIDIA Corporation Quadro FX 570/PCI/SSE2                                                                supported      1     0     3.3    NVIDIA Quadro FX
+NVIDIA Corporation Quadro FX 570/PCIe/SSE2                                                               supported      1     0     3.3    NVIDIA Quadro FX
+NVIDIA Corporation Quadro FX 570M/PCI/SSE2                                                               supported      1     0     3.3    NVIDIA Quadro FX
+NVIDIA Corporation Quadro FX 570M/PCIe/SSE2                                                              supported      1     0     3.3    NVIDIA Quadro FX
+NVIDIA Corporation Quadro FX 580/PCI/SSE2                                                                supported      1     0     3.3    NVIDIA Quadro FX
+NVIDIA Corporation Quadro FX 580/PCIe/SSE2                                                               supported      1     0     3.3    NVIDIA Quadro FX
+NVIDIA Corporation Quadro FX 5800/PCIe/SSE2                                                              supported      1     0     3.3    NVIDIA Quadro FX
+NVIDIA Corporation Quadro FX 770M/PCI/SSE2                                                               supported      2     0     3.3    NVIDIA Quadro FX 770M
+NVIDIA Corporation Quadro FX 770M/PCIe/SSE2                                                              supported      2     0     3.3    NVIDIA Quadro FX 770M
+NVIDIA Corporation Quadro FX 880M/PCI/SSE2                                                               supported      3     0     3.3    NVIDIA Quadro FX 880M
+NVIDIA Corporation Quadro FX 880M/PCIe/SSE2                                                              supported      3     0     3.3    NVIDIA Quadro FX 880M
+NVIDIA Corporation Quadro FX Go1400/PCI/SSE2                                                             supported      1     0     3.3    NVIDIA Quadro FX
+NVIDIA Corporation Quadro FX Go1400/PCIe/SSE2                                                            supported      1     0     3.3    NVIDIA Quadro FX
+NVIDIA Corporation Quadro FX Go700/AGP/SSE2                                                              supported      1     0     3.3    NVIDIA Quadro FX
+NVIDIA Corporation Quadro K1000/PCIe/SSE2                                                                supported      2     0     4.2    NVIDIA Quadro K1000
+NVIDIA Corporation Quadro K1000M/PCIe/SSE2                                                               supported      2     0     4.2    NVIDIA Quadro 1000M
+NVIDIA Corporation Quadro K2000/PCIe/SSE2                                                                supported      3     0     4.2    NVIDIA Quadro 2000 M/D
+NVIDIA Corporation Quadro K2000D/PCIe/SSE2                                                               supported      3     0     4.2    NVIDIA Quadro 2000 M/D
+NVIDIA Corporation Quadro K2000M/PCIe/SSE2                                                               supported      3     0     4.2    NVIDIA Quadro 2000 M/D
+NVIDIA Corporation Quadro K3000M/PCIe/SSE2                                                               supported      3     0     4.2    NVIDIA Quadro 3000M
+NVIDIA Corporation Quadro K4000/PCIe/SSE2                                                                supported      3     0     4.2    NVIDIA Quadro 4000
+NVIDIA Corporation Quadro K4000M/PCIe/SSE2                                                               supported      3     0     4.2    NVIDIA Quadro 4000M
+NVIDIA Corporation Quadro K5000/PCIe/SSE2                                                                supported      3     0     4.2    NVIDIA Quadro 50x0 M
+NVIDIA Corporation Quadro K5000M/PCIe/SSE2                                                               supported      3     0     4.2    NVIDIA Quadro 50x0 M
+NVIDIA Corporation Quadro K600/PCIe/SSE2                                                                 supported      2     0     4.2    NVIDIA Quadro K600
+NVIDIA Corporation Quadro NVS 110M/PCI/SSE2                                                              supported      0     1     3.3    NVIDIA Quadro NVS 1xxM
+NVIDIA Corporation Quadro NVS 130M/PCI/SSE2                                                              supported      0     1     3.3    NVIDIA Quadro NVS 1xxM
+NVIDIA Corporation Quadro NVS 130M/PCIe/SSE2                                                             supported      0     1     3.3    NVIDIA Quadro NVS 1xxM
+NVIDIA Corporation Quadro NVS 135M/PCI/SSE2                                                              supported      0     1     3.3    NVIDIA Quadro NVS 1xxM
+NVIDIA Corporation Quadro NVS 135M/PCIe/SSE2                                                             supported      0     1     3.3    NVIDIA Quadro NVS 1xxM
+NVIDIA Corporation Quadro NVS 140M/PCI/SSE2                                                              supported      0     1     3.3    NVIDIA Quadro NVS 1xxM
+NVIDIA Corporation Quadro NVS 140M/PCIe/SSE2                                                             supported      0     1     3.3    NVIDIA Quadro NVS 1xxM
+NVIDIA Corporation Quadro NVS 150M/PCI/SSE2                                                              supported      0     1     3.3    NVIDIA Quadro NVS 1xxM
+NVIDIA Corporation Quadro NVS 150M/PCIe/SSE2                                                             supported      0     1     3.3    NVIDIA Quadro NVS 1xxM
+NVIDIA Corporation Quadro NVS 160M/PCI/SSE2                                                              supported      0     1     3.3    NVIDIA Quadro NVS 1xxM
+NVIDIA Corporation Quadro NVS 160M/PCIe/SSE2                                                             supported      0     1     3.3    NVIDIA Quadro NVS 1xxM
+NVIDIA Corporation Quadro NVS 210S / GeForce 6150LE/PCI/SSE2                                             supported      0     0     4.2    NVIDIA Quadro NVS
+NVIDIA Corporation Quadro NVS 210S / GeForce 6150LE/PCI/SSE2/3DNOW!                                      supported      0     0     4.2    NVIDIA Quadro NVS
+NVIDIA Corporation Quadro NVS 210S / GeForce 6150LE/integrated/SSE2/3DNOW!                               supported      0     0     4.2    NVIDIA Quadro NVS
+NVIDIA Corporation Quadro NVS 210S / NVIDIA GeForce 6150LE/PCI/SSE2/3DNOW!                               supported      0     0     4.2    NVIDIA Quadro NVS
+NVIDIA Corporation Quadro NVS 210S/PCI/SSE2/3DNOW!                                                       supported      0     0     4.2    NVIDIA Quadro NVS
+NVIDIA Corporation Quadro NVS 280 PCI-E/PCI/SSE2                                                         supported      0     0     4.2    NVIDIA Quadro NVS
+NVIDIA Corporation Quadro NVS 280 SD/AGP/SSE2                                                            supported      0     0     4.2    NVIDIA Quadro NVS
+NVIDIA Corporation Quadro NVS 285/PCI/SSE2                                                               supported      0     0     4.2    NVIDIA Quadro NVS
+NVIDIA Corporation Quadro NVS 285/PCIe/SSE2                                                              supported      0     0     4.2    NVIDIA Quadro NVS
+NVIDIA Corporation Quadro NVS 290/PCI/SSE2                                                               supported      0     0     4.2    NVIDIA Quadro NVS
+NVIDIA Corporation Quadro NVS 290/PCIe/SSE2                                                              supported      0     0     4.2    NVIDIA Quadro NVS
+NVIDIA Corporation Quadro NVS 290/PCIe/SSE2/3DNOW!                                                       supported      0     0     4.2    NVIDIA Quadro NVS
+NVIDIA Corporation Quadro NVS 295/PCI/SSE2                                                               supported      0     0     4.2    NVIDIA Quadro NVS
+NVIDIA Corporation Quadro NVS 295/PCIe/SSE2                                                              supported      0     0     4.2    NVIDIA Quadro NVS
+NVIDIA Corporation Quadro NVS 300M/PCI/SSE2                                                              supported      2     0     0      NVIDIA Quadro NVS 300M
+NVIDIA Corporation Quadro NVS 320M/PCI/SSE2                                                              supported      2     0     0      NVIDIA Quadro NVS 320M
+NVIDIA Corporation Quadro NVS 320M/PCIe/SSE2                                                             supported      2     0     0      NVIDIA Quadro NVS 320M
+NVIDIA Corporation Quadro NVS 420/PCI/SSE2                                                               supported      0     0     4.2    NVIDIA Quadro NVS
+NVIDIA Corporation Quadro NVS 420/PCIe/SSE2                                                              supported      0     0     4.2    NVIDIA Quadro NVS
+NVIDIA Corporation Quadro NVS 420/PCIe/SSE2/3DNOW!                                                       supported      0     0     4.2    NVIDIA Quadro NVS
+NVIDIA Corporation Quadro NVS 450/PCIe/SSE2                                                              supported      0     0     4.2    NVIDIA Quadro NVS
+NVIDIA Corporation Quadro NVS 510M/PCI/SSE2                                                              supported      0     0     4.2    NVIDIA Quadro NVS
+NVIDIA Corporation Quadro NVS 55/280 PCI/PCI/SSE2                                                        supported      0     0     4.2    NVIDIA Quadro NVS
+NVIDIA Corporation Quadro NVS with AGP8X/AGP/SSE2                                                        supported      0     0     4.2    NVIDIA Quadro NVS
+NVIDIA Corporation Quadro NVS/AGP/SSE2                                                                   supported      0     0     4.2    NVIDIA Quadro NVS
+NVIDIA Corporation Quadro PCI-E Series/PCI/SSE2                                                                                            NO MATCH
+NVIDIA Corporation Quadro2 MXR/AGP/SSE2                                                                  supported      0     0     1.5    NVIDIA Quadro2
+NVIDIA Corporation Quadro4 380 XGL/AGP/SSE2                                                              supported      0     0     1.5    NVIDIA Quadro4
+NVIDIA Corporation Quadro4 550 XGL/AGP/SSE2                                                              supported      0     0     1.5    NVIDIA Quadro4
+NVIDIA Corporation Quadro4 700 XGL/AGP/SSE2                                                              supported      0     0     1.5    NVIDIA Quadro4
+NVIDIA Corporation Quadro4 980 XGL/AGP/SSE2                                                              supported      0     0     1.5    NVIDIA Quadro4
+NVIDIA Corporation RIVA TNT2/AGP/SSE2                                                                    unsupported    0     0     1.5    NVIDIA RIVA TNT
+NVIDIA Corporation RIVA TNT2/AGP/SSE2/3DNOW!                                                             unsupported    0     0     1.5    NVIDIA RIVA TNT
+NVIDIA Corporation Stinger/emulated by Quadro FX 500/FX 600/PCI/SSE2                                     supported      1     0     3.3    NVIDIA Quadro FX
+NVIDIA Corporation nForce 750a SLI/PCI/SSE2                                                              unsupported    0     0     3.3    NVIDIA nForce
+NVIDIA Corporation nForce 750a SLI/integrated/SSE2                                                       unsupported    0     0     3.3    NVIDIA nForce
+NVIDIA Corporation nForce 760i SLI/integrated/SSE2                                                       unsupported    0     0     3.3    NVIDIA nForce
+NVIDIA Corporation nForce 980a/780a SLI/integrated/SSE2                                                  unsupported    0     0     3.3    NVIDIA nForce
+NVIDIA Corporation unknown board/AGP/SSE2                                                                unsupported    0     0     2.1    NVIDIA Generic Unknown
+NVIDIA Corporation unknown board/PCI/SSE2                                                                unsupported    0     0     2.1    NVIDIA Generic Unknown
+NVIDIA Corporation unknown board/PCI/SSE2/3DNOW!                                                         unsupported    0     0     2.1    NVIDIA Generic Unknown
+NVIDIA Corporation unknown board/PCIe/SSE2                                                               unsupported    0     0     2.1    NVIDIA Generic Unknown
+NVIDIA D9M                                                                                               supported      1     0     0      NVIDIA D9M
+NVIDIA G 103M                                                                                            supported      1     1     3.3    NVIDIA G 100M
+NVIDIA G 105M                                                                                            supported      1     1     3.3    NVIDIA G 100M
+NVIDIA G 110M                                                                                            supported      1     1     3.3    NVIDIA G 110M
+NVIDIA G 120M                                                                                            supported      1     1     3.3    NVIDIA G 120M
+NVIDIA G 200                                                                                             supported      2     1     3.3    NVIDIA G200
+NVIDIA G 205M                                                                                            supported      1     0     0      NVIDIA G 200M
+NVIDIA G 210                                                                                             supported      3     1     3.3    NVIDIA G210
+NVIDIA G 310M                                                                                            supported      2     0     3.3    NVIDIA G 310M
+NVIDIA G 320M                                                                                            supported      3     0     3.3    NVIDIA GT 320M
+NVIDIA G 405                                                                                             supported      3     0     3.3    NVIDIA 405
+NVIDIA G 410M                                                                                            supported      3     1     4.2    NVIDIA G 410M
+NVIDIA G 610M                                                                                            supported      3     1     4.3    NVIDIA 610M
+NVIDIA G100                                                                                              supported      3     1     4.2    NVIDIA G100
+NVIDIA G100M                                                                                             supported      1     1     3.3    NVIDIA G 100M
+NVIDIA G102M                                                                                             supported      1     1     3.3    NVIDIA G 100M
+NVIDIA G103M                                                                                             supported      1     1     3.3    NVIDIA G 100M
+NVIDIA G105M                                                                                             supported      1     1     3.3    NVIDIA G 100M
+NVIDIA G200                                                                                              supported      2     1     3.3    NVIDIA G200
+NVIDIA G210                                                                                              supported      3     1     3.3    NVIDIA G210
+NVIDIA G210M                                                                                             supported      3     0     3.3    NVIDIA G210M
+NVIDIA G73                                                                                               supported      1     0     0      NVIDIA G73
+NVIDIA G84                                                                                               supported      2     0     0      NVIDIA G84
+NVIDIA G92                                                                                               supported      3     0     0      NVIDIA G92
+NVIDIA G94                                                                                               supported      3     0     0      NVIDIA G94
+NVIDIA GT 120                                                                                            supported      2     0     3.3    NVIDIA GT 120
+NVIDIA GT 120M                                                                                           supported      2     0     3.3    NVIDIA GT 120
+NVIDIA GT 130                                                                                            supported      2     0     3.3    NVIDIA GT 130
+NVIDIA GT 130M                                                                                           supported      3     1     3.3    NVIDIA GT 130M
+NVIDIA GT 140                                                                                            supported      2     0     3.3    NVIDIA GT 140
+NVIDIA GT 140M                                                                                           supported      3     1     3.3    NVIDIA GT 140M
+NVIDIA GT 150                                                                                            supported      2     1     3.3    NVIDIA GT 150
+NVIDIA GT 220                                                                                            supported      2     1     3.3    NVIDIA GT 220
+NVIDIA GT 220M                                                                                           supported      3     1     3.3    NVIDIA GT 220M
+NVIDIA GT 230                                                                                            supported      2     1     3.3    NVIDIA GT 230
+NVIDIA GT 230M                                                                                           supported      3     1     3.3    NVIDIA GT 230M
+NVIDIA GT 240                                                                                            supported      4     1     3.3    NVIDIA GT 240
+NVIDIA GT 240M                                                                                           supported      3     1     3.3    NVIDIA GT 240M
+NVIDIA GT 260M                                                                                           supported      3     1     3.3    NVIDIA GT 260M
+NVIDIA GT 320                                                                                            supported      3     0     3.3    NVIDIA GT 320
+NVIDIA GT 320M                                                                                           supported      3     0     3.3    NVIDIA GT 320M
+NVIDIA GT 325M                                                                                           supported      3     0     3.3    NVIDIA GT 320M
+NVIDIA GT 330                                                                                            supported      3     0     3.3    NVIDIA GT 330
+NVIDIA GT 330M                                                                                           supported      3     1     3.3    NVIDIA GT 330M
+NVIDIA GT 335M                                                                                           supported      3     1     3.3    NVIDIA GT 330M
+NVIDIA GT 340                                                                                            supported      3     0     0      NVIDIA GT 340
+NVIDIA GT 340M                                                                                           supported      4     1     3.3    NVIDIA GT 340M
+NVIDIA GT 415M                                                                                           supported      3     0     0      NVIDIA 410M
+NVIDIA GT 420                                                                                            supported      3     1     4.3    NVIDIA GT 420
+NVIDIA GT 420M                                                                                           supported      3     1     4.3    NVIDIA GT 420M
+NVIDIA GT 425M                                                                                           supported      3     1     4.3    NVIDIA GT 420M
+NVIDIA GT 430                                                                                            supported      3     1     4.3    NVIDIA GT 430
+NVIDIA GT 430M                                                                                           supported      3     1     4.3    NVIDIA GT 430M
+NVIDIA GT 435M                                                                                           supported      3     1     4.3    NVIDIA GT 430M
+NVIDIA GT 440                                                                                            supported      4     1     4.3    NVIDIA GT 440
+NVIDIA GT 440M                                                                                           supported      3     1     4.3    NVIDIA GT 440M
+NVIDIA GT 445M                                                                                           supported      3     1     4.3    NVIDIA GT 440M
+NVIDIA GT 450                                                                                            supported      4     1     4.3    NVIDIA GT 450
+NVIDIA GT 520                                                                                            supported      3     1     4.3    NVIDIA GT 520
+NVIDIA GT 520M                                                                                           supported      3     1     4.3    NVIDIA GT 520M
+NVIDIA GT 525M                                                                                           supported      3     1     4.3    NVIDIA GT 520M
+NVIDIA GT 530M                                                                                           supported      3     1     4.3    NVIDIA GT 530M
+NVIDIA GT 540                                                                                            supported      3     1     4.3    NVIDIA GT 540
+NVIDIA GT 540M                                                                                           supported      3     1     4.3    NVIDIA GT 540M
+NVIDIA GT 550                                                                                            supported      3     1     4.3    NVIDIA GT 550
+NVIDIA GT 550M                                                                                           supported      3     1     4.3    NVIDIA GT 550M
+NVIDIA GT 555M                                                                                           supported      3     1     4.3    NVIDIA GT 550M
+NVIDIA GT 610                                                                                            supported      3     1     4.3    NVIDIA GT 61x
+NVIDIA GT 620                                                                                            supported      3     0     4.3    NVIDIA GT 62x
+NVIDIA GT 620M                                                                                           supported      3     0     4.3    NVIDIA GT 620M
+NVIDIA GT 630                                                                                            supported      3     0     4.3    NVIDIA GT 63x
+NVIDIA GT 630M                                                                                           supported      3     0     4.3    NVIDIA GT 630M
+NVIDIA GT 635M                                                                                           supported      3     0     4.3    NVIDIA GT 630M
+NVIDIA GT 640                                                                                            supported      3     0     4.3    NVIDIA GT 64x
+NVIDIA GT 640M                                                                                           supported      3     0     4.3    NVIDIA GT 640M
+NVIDIA GT 650                                                                                            supported      3     1     4.3    NVIDIA GT 65x
+NVIDIA GT 650M                                                                                           supported      3     0     4.3    NVIDIA GT 650M
+NVIDIA GTS 160M                                                                                          supported      2     0     0      NVIDIA GTS 160M
+NVIDIA GTS 240                                                                                           supported      4     1     3.3    NVIDIA GTS 240
+NVIDIA GTS 250                                                                                           supported      4     1     3.3    NVIDIA GTS 250
+NVIDIA GTS 350M                                                                                          supported      4     1     3.3    NVIDIA GTS 350M
+NVIDIA GTS 360                                                                                           supported      4     1     3.3    NVIDIA GTS 360
+NVIDIA GTS 360M                                                                                          supported      5     1     3.3    NVIDIA GTS 360M
+NVIDIA GTS 450                                                                                           supported      4     1     4.3    NVIDIA GTS 450
+NVIDIA GTX 260                                                                                           supported      4     1     3.3    NVIDIA GTX 260
+NVIDIA GTX 270                                                                                           supported      4     0     3.3    NVIDIA GTX 270
+NVIDIA GTX 275                                                                                           supported      4     0     3.3    NVIDIA GTX 270
+NVIDIA GTX 280                                                                                           supported      4     1     3.3    NVIDIA GTX 280
+NVIDIA GTX 285                                                                                           supported      4     1     3.3    NVIDIA GTX 280
+NVIDIA GTX 290                                                                                           supported      5     0     3.3    NVIDIA GTX 290
+NVIDIA GTX 295                                                                                           supported      5     0     3.3    NVIDIA GTX 290
+NVIDIA GTX 460                                                                                           supported      5     1     4.3    NVIDIA GTX 460
+NVIDIA GTX 460M                                                                                          supported      4     1     4.3    NVIDIA GTX 460M
+NVIDIA GTX 465                                                                                           supported      5     1     4.3    NVIDIA GTX 460
+NVIDIA GTX 470                                                                                           supported      5     1     4.3    NVIDIA GTX 470
+NVIDIA GTX 470M                                                                                          supported      3     0     4.3    NVIDIA GTX 470M
+NVIDIA GTX 480                                                                                           supported      5     1     4.3    NVIDIA GTX 480
+NVIDIA GTX 480M                                                                                          supported      3     1     4.3    NVIDIA GTX 480M
+NVIDIA GTX 485M                                                                                          supported      3     1     4.3    NVIDIA GTX 480M
+NVIDIA GTX 550                                                                                           supported      5     1     4.3    NVIDIA GTX 550
+NVIDIA GTX 560                                                                                           supported      5     1     4.3    NVIDIA GTX 560
+NVIDIA GTX 560 Ti                                                                                        supported      5     1     4.3    NVIDIA GTX 560
+NVIDIA GTX 570                                                                                           supported      5     1     4.3    NVIDIA GTX 570
+NVIDIA GTX 580                                                                                           supported      5     1     4.3    NVIDIA GTX 580
+NVIDIA GTX 580M                                                                                          supported      5     1     4.3    NVIDIA GTX 580M
+NVIDIA GTX 590                                                                                           supported      5     1     4.3    NVIDIA GTX 590
+NVIDIA GTX 650                                                                                           supported      3     1     4.3    NVIDIA GTX 65x
+NVIDIA GTX 660                                                                                           supported      5     0     4.3    NVIDIA GTX 66x
+NVIDIA GTX 670                                                                                           supported      5     1     4.3    NVIDIA GTX 67x
+NVIDIA GTX 670M                                                                                          supported      5     1     4.3    NVIDIA GTX 670M
+NVIDIA GTX 675M                                                                                          supported      5     1     4.3    NVIDIA GTX 670M
+NVIDIA GTX 680                                                                                           supported      5     1     4.3    NVIDIA GTX 68x
+NVIDIA GTX 680M                                                                                          supported      5     0     4.3    NVIDIA GTX 680M
+NVIDIA GTX 690                                                                                           supported      5     1     4.3    NVIDIA GTX 69x
+NVIDIA GTX 770                                                                                           supported      5     0     4.3    NVIDIA GTX 77x
+NVIDIA GTX TITAN                                                                                         supported      5     0     4.3    NVIDIA GTX TITAN
+NVIDIA GeForce 2                                                                                         supported      0     1     1.5    NVIDIA GeForce 2
+NVIDIA GeForce 3                                                                                         supported      2     1     2.1    NVIDIA GeForce 3
+NVIDIA GeForce 4                                                                                         supported      0     1     1.5    NVIDIA GeForce 4
+NVIDIA GeForce 4 Go                                                                                      supported      0     1     1.5    NVIDIA GeForce 4
+NVIDIA GeForce 4 MX                                                                                      supported      0     1     1.5    NVIDIA GeForce 4
+NVIDIA GeForce 4 Ti                                                                                      supported      0     1     1.5    NVIDIA GeForce 4
+NVIDIA GeForce 6100                                                                                      supported      3     1     4.2    NVIDIA GeForce 6100
+NVIDIA GeForce 6200                                                                                      supported      0     1     2.1    NVIDIA GeForce 6200
+NVIDIA GeForce 6500                                                                                      supported      1     1     2.1    NVIDIA GeForce 6500
+NVIDIA GeForce 6600                                                                                      supported      2     1     2.1    NVIDIA GeForce 6600
+NVIDIA GeForce 6700                                                                                      supported      2     1     2.1    NVIDIA GeForce 6700
+NVIDIA GeForce 6800                                                                                      supported      1     1     2.1    NVIDIA GeForce 6800
+NVIDIA GeForce 7000                                                                                      supported      1     1     2.1    NVIDIA GeForce 7000
+NVIDIA GeForce 7000M                                                                                     supported      1     1     2.1    NVIDIA GeForce 7000
+NVIDIA GeForce 7100                                                                                      supported      1     1     2.1    NVIDIA GeForce 7100
+NVIDIA GeForce 7300                                                                                      supported      1     1     2.1    NVIDIA GeForce 7300
+NVIDIA GeForce 7500                                                                                      supported      2     1     2.1    NVIDIA GeForce 7500
+NVIDIA GeForce 7600                                                                                      supported      2     1     2.1    NVIDIA GeForce 7600
+NVIDIA GeForce 7800                                                                                      supported      2     1     2.1    NVIDIA GeForce 7800
+NVIDIA GeForce 7900                                                                                      supported      3     1     2.1    NVIDIA GeForce 7900
+NVIDIA GeForce 8100                                                                                      supported      1     0     3.3    NVIDIA GeForce 8100
+NVIDIA GeForce 8200                                                                                      supported      1     0     3.3    NVIDIA GeForce 8200
+NVIDIA GeForce 8200M                                                                                     supported      1     0     3.3    NVIDIA GeForce 8200M
+NVIDIA GeForce 8300                                                                                      supported      3     1     3.3    NVIDIA GeForce 8300
+NVIDIA GeForce 8400                                                                                      supported      2     1     3.3    NVIDIA GeForce 8400
+NVIDIA GeForce 8400M                                                                                     supported      1     1     3.3    NVIDIA GeForce 8400M
+NVIDIA GeForce 8500                                                                                      supported      2     1     3.3    NVIDIA GeForce 8500
+NVIDIA GeForce 8600                                                                                      supported      3     1     3.3    NVIDIA GeForce 8600
+NVIDIA GeForce 8600M                                                                                     supported      2     1     3.3    NVIDIA GeForce 8600M
+NVIDIA GeForce 8700                                                                                      supported      3     0     0      NVIDIA GeForce 8700
+NVIDIA GeForce 8700M                                                                                     supported      2     1     3.3    NVIDIA GeForce 8700M
+NVIDIA GeForce 8800                                                                                      supported      3     1     3.3    NVIDIA GeForce 8800
+NVIDIA GeForce 8800M                                                                                     supported      2     1     3.3    NVIDIA GeForce 8800M
+NVIDIA GeForce 9100                                                                                      supported      0     0     3.3    NVIDIA GeForce 9100
+NVIDIA GeForce 9100M                                                                                     supported      0     0     3.3    NVIDIA GeForce 9100M
+NVIDIA GeForce 9200                                                                                      supported      1     0     3.3    NVIDIA GeForce 9200
+NVIDIA GeForce 9200M                                                                                     supported      1     0     3.3    NVIDIA GeForce 9200M
+NVIDIA GeForce 9300                                                                                      supported      1     1     3.3    NVIDIA GeForce 9300
+NVIDIA GeForce 9300M                                                                                     supported      1     1     3.3    NVIDIA GeForce 9300M
+NVIDIA GeForce 9400                                                                                      supported      3     1     3.3    NVIDIA GeForce 9400
+NVIDIA GeForce 9400M                                                                                     supported      2     1     3.3    NVIDIA GeForce 9400M
+NVIDIA GeForce 9500                                                                                      supported      3     1     3.3    NVIDIA GeForce 9500
+NVIDIA GeForce 9500M                                                                                     supported      1     1     3.3    NVIDIA GeForce 9500M
+NVIDIA GeForce 9600                                                                                      supported      3     1     3.3    NVIDIA GeForce 9600
+NVIDIA GeForce 9600M                                                                                     supported      2     1     3.3    NVIDIA GeForce 9600M
+NVIDIA GeForce 9700M                                                                                     supported      0     1     3.3    NVIDIA GeForce 9700M
+NVIDIA GeForce 9800                                                                                      supported      3     1     3.3    NVIDIA GeForce 9800
+NVIDIA GeForce 9800M                                                                                     supported      2     1     3.3    NVIDIA GeForce 9800M
+NVIDIA GeForce FX 5200                                                                                   supported      0     0     2.1    NVIDIA GeForce FX 5200
+NVIDIA GeForce FX 5500                                                                                   supported      0     1     2.1    NVIDIA GeForce FX 5500
+NVIDIA GeForce FX 5600                                                                                   supported      1     1     2.1    NVIDIA GeForce FX 5600
+NVIDIA GeForce FX 5700                                                                                   supported      0     1     2.1    NVIDIA GeForce FX 5700
+NVIDIA GeForce FX 5900                                                                                   supported      1     1     2.1    NVIDIA GeForce FX 5900
+NVIDIA GeForce FX Go5100                                                                                 supported      3     0     0      NVIDIA 510
+NVIDIA GeForce FX Go5200                                                                                 supported      0     0     1.5    NVIDIA GeForce FX Go5200
+NVIDIA GeForce FX Go5600                                                                                 supported      0     1     2.1    NVIDIA GeForce FX Go5600
+NVIDIA GeForce FX Go5700                                                                                 supported      1     1     1.5    NVIDIA GeForce FX Go5700
+NVIDIA GeForce Go 6                                                                                      supported      1     0     0      NVIDIA GeForce Go 6
+NVIDIA GeForce Go 6100                                                                                   supported      0     1     2.1    NVIDIA GeForce Go 6100
+NVIDIA GeForce Go 6200                                                                                   supported      0     0     1.5    NVIDIA GeForce Go 6200
+NVIDIA GeForce Go 6400                                                                                   supported      1     1     2.1    NVIDIA GeForce Go 6400
+NVIDIA GeForce Go 6600                                                                                   supported      0     1     2.1    NVIDIA GeForce Go 6600
+NVIDIA GeForce Go 6800                                                                                   supported      0     1     2.1    NVIDIA GeForce Go 6800
+NVIDIA GeForce Go 7200                                                                                   supported      1     0     2.1    NVIDIA GeForce Go 7200
+NVIDIA GeForce Go 7300                                                                                   supported      1     1     2.1    NVIDIA GeForce Go 7300
+NVIDIA GeForce Go 7400                                                                                   supported      1     1     2.1    NVIDIA GeForce Go 7400
+NVIDIA GeForce Go 7600                                                                                   supported      1     1     2.1    NVIDIA GeForce Go 7600
+NVIDIA GeForce Go 7700                                                                                   supported      0     1     2.1    NVIDIA GeForce Go 7700
+NVIDIA GeForce Go 7800                                                                                   supported      2     0     0      NVIDIA GeForce Go 7800
+NVIDIA GeForce Go 7900                                                                                   supported      1     1     2.1    NVIDIA GeForce Go 7900
+NVIDIA GeForce PCX                                                                                       supported      0     0     1.5    NVIDIA GeForce PCX
+NVIDIA Generic                                                                                           unsupported    0     0     2.1    NVIDIA Generic
+NVIDIA ION                                                                                               supported      2     1     3.3    NVIDIA ION a
+NVIDIA MCP61                                                                                             supported      1     0     2.1    NVIDIA MCP61
+NVIDIA NV34                                                                                              supported      0     0     0      NVIDIA NV34
+NVIDIA PCI                                                                                               unsupported    0     0     2.1    NVIDIA PCI
+NVIDIA Quadro 2000                                                                                       supported      3     0     4.2    NVIDIA Quadro 2000 M/D
+NVIDIA Quadro 2000 M/D                                                                                   supported      3     0     4.2    NVIDIA Quadro 2000 M/D
+NVIDIA Quadro 3000M                                                                                      supported      3     0     4.2    NVIDIA Quadro 3000M
+NVIDIA Quadro 400                                                                                        supported      2     0     3.3    NVIDIA Quadro 400
+NVIDIA Quadro 4000                                                                                       supported      3     0     4.2    NVIDIA Quadro 4000
+NVIDIA Quadro 4000M                                                                                      supported      3     0     4.2    NVIDIA Quadro 4000M
+NVIDIA Quadro 50x0 M                                                                                     supported      3     0     4.2    NVIDIA Quadro 50x0 M
+NVIDIA Quadro 600                                                                                        supported      2     0     4.2    NVIDIA Quadro 600
+NVIDIA Quadro 6000                                                                                       supported      3     0     0      NVIDIA Quadro 6000
+NVIDIA Quadro FX                                                                                         supported      1     0     3.3    NVIDIA Quadro FX
+NVIDIA Quadro FX 1500M                                                                                   supported      1     0     2.1    NVIDIA Quadro FX 1500M
+NVIDIA Quadro FX 1800                                                                                    supported      1     0     3.3    NVIDIA Quadro FX
+NVIDIA Quadro FX 2500M                                                                                   supported      2     0     2.1    NVIDIA Quadro FX 2500M
+NVIDIA Quadro FX 2700M                                                                                   supported      3     0     3.3    NVIDIA Quadro FX 2700M
+NVIDIA Quadro FX 2800M                                                                                   supported      3     0     3.3    NVIDIA Quadro FX 2800M
+NVIDIA Quadro FX 3500                                                                                    supported      2     0     2.1    NVIDIA Quadro FX 3500
+NVIDIA Quadro FX 3700                                                                                    supported      3     0     3.3    NVIDIA Quadro FX 3700
+NVIDIA Quadro FX 3800                                                                                    supported      3     0     3.3    NVIDIA Quadro FX 3800
+NVIDIA Quadro FX 4500                                                                                    supported      3     0     2.1    NVIDIA Quadro FX 4500
+NVIDIA Quadro FX 4800                                                                                    supported      3     0     3.1    NVIDIA Quadro FX 4800
+NVIDIA Quadro FX 550                                                                                     supported      1     0     3.3    NVIDIA Quadro FX
+NVIDIA Quadro FX 770M                                                                                    supported      2     0     3.3    NVIDIA Quadro FX 770M
+NVIDIA Quadro FX 880M                                                                                    supported      3     0     3.3    NVIDIA Quadro FX 880M
+NVIDIA Quadro NVS                                                                                        supported      0     0     4.2    NVIDIA Quadro NVS
+NVIDIA Quadro NVS 1xxM                                                                                   supported      0     0     4.2    NVIDIA Quadro NVS
+NVIDIA Quadro NVS 4200M                                                                                  supported      2     0     4.2    NVIDIA Quadro NVS 4200M
+NVIDIA Quadro2                                                                                           supported      0     0     1.5    NVIDIA Quadro2
+NVIDIA nForce                                                                                            unsupported    0     0     3.3    NVIDIA nForce
+Oracle VirtualBox Graphics                                                                               supported      0     1     2.1    Oracle
+Parallels and ATI Technologies Inc. Parallels using ATI Radeon Barts XT Prototype OpenGL Engine          supported      3     1     2.1    AMD BARTS (HD 6800)
+Parallels and ATI Technologies Inc. Parallels using ATI Radeon HD 2600 OpenGL Engine                     supported      2     1     4      ATI Radeon HD 2600
+Parallels and ATI Technologies Inc. Parallels using ATI Radeon HD 2600 PRO OpenGL Engine                 supported      2     1     4      ATI Radeon HD 2600
+Parallels and ATI Technologies Inc. Parallels using ATI Radeon HD 4670 OpenGL Engine                     supported      3     1     4      ATI Radeon HD 4600
+Parallels and ATI Technologies Inc. Parallels using ATI Radeon HD 4850 OpenGL Engine                     supported      3     1     4      ATI Radeon HD 4800
+Parallels and ATI Technologies Inc. Parallels using ATI Radeon HD 5670 OpenGL Engine                     supported      3     1     4.2    ATI Radeon HD 5600
+Parallels and ATI Technologies Inc. Parallels using ATI Radeon HD 5750 OpenGL Engine                     supported      3     1     4.2    ATI Radeon HD 5700
+Parallels and ATI Technologies Inc. Parallels using ATI Radeon HD 5770 OpenGL Engine                     supported      3     1     4.2    ATI Radeon HD 5700
+Parallels and ATI Technologies Inc. Parallels using ATI Radeon HD 6630M OpenGL Engine                    supported      3     1     4.2    ATI Radeon HD 6600
+Parallels and ATI Technologies Inc. Parallels using ATI Radeon HD 6750M OpenGL Engine                    supported      3     1     4.2    ATI Radeon HD 6700
+Parallels and ATI Technologies Inc. Parallels using ATI Radeon HD 6770M OpenGL Engine                    supported      3     1     4.2    ATI Radeon HD 6700
+Parallels and ATI Technologies Inc. Parallels using ATI Radeon HD 6970M OpenGL Engine                    supported      5     1     4.2    ATI Radeon HD 6900
+Parallels and ATI Technologies Inc. Parallels using ATI Radeon X1600 OpenGL Engine                       supported      2     1     2.1    ATI Radeon X1600
+Parallels and Intel Inc. Parallels using Intel GMA X3100 OpenGL Engine                                   supported      1     1     2.1    Intel X3100
+Parallels and Intel Inc. Parallels using Intel HD Graphics 3000 OpenGL Engine                            supported      3     1     3.1    Intel HD Graphics 3000
+Parallels and Intel Inc. Parallels using Intel HD Graphics 4000 OpenGL Engine                            supported      3     1     4.2    Intel HD Graphics 4000
+Parallels and NVIDIA Corporation Parallels using NVIDIA GeForce 320M OpenGL Engine                       supported      2     0     3.3    NVIDIA 320M
+Parallels and NVIDIA Corporation Parallels using NVIDIA GeForce 8800 GS OpenGL Engine                    supported      3     1     3.3    NVIDIA GeForce 8800
+Parallels and NVIDIA Corporation Parallels using NVIDIA GeForce 9400 OpenGL Engine                       supported      3     1     3.3    NVIDIA GeForce 9400
+Parallels and NVIDIA Corporation Parallels using NVIDIA GeForce 9400M OpenGL Engine                      supported      2     1     3.3    NVIDIA GeForce 9400M
+Parallels and NVIDIA Corporation Parallels using NVIDIA GeForce 9600M GT OpenGL Engine                   supported      2     1     3.3    NVIDIA GeForce 9600M
+Parallels and NVIDIA Corporation Parallels using NVIDIA GeForce GT 130 OpenGL Engine                     supported      2     0     3.3    NVIDIA GT 130
+Parallels and NVIDIA Corporation Parallels using NVIDIA GeForce GT 330M OpenGL Engine                    supported      3     1     3.3    NVIDIA GT 330M
+Parallels and NVIDIA Corporation Parallels using NVIDIA GeForce GT 640 OpenGL Engine                     supported      3     0     4.3    NVIDIA GT 64x
+Parallels and NVIDIA Corporation Parallels using NVIDIA GeForce GT 640M OpenGL Engine                    supported      3     0     4.3    NVIDIA GT 640M
+Parallels and NVIDIA Corporation Parallels using NVIDIA GeForce GT 650M OpenGL Engine                    supported      3     0     4.3    NVIDIA GT 650M
+Parallels and NVIDIA Corporation Parallels using NVIDIA GeForce GTX 570 OpenGL Engine                    supported      5     1     4.3    NVIDIA GTX 570
+Parallels and NVIDIA Corporation Parallels using NVIDIA GeForce GTX 660 OpenGL Engine                    supported      5     0     4.3    NVIDIA GTX 66x
+Parallels and NVIDIA Corporation Parallels using NVIDIA GeForce GTX 660 Ti OpenGL Engine                 supported      5     0     4.3    NVIDIA GTX 66x
+Parallels and NVIDIA Corporation Parallels using NVIDIA GeForce GTX 670 OpenGL Engine                    supported      5     1     4.3    NVIDIA GTX 67x
+Parallels and NVIDIA Corporation Parallels using NVIDIA GeForce GTX 680MX OpenGL Engine                  supported      5     0     4.3    NVIDIA GTX 680M
+PowerVR SGX545                                                                                           supported      1     1     3      PowerVR SGX545
+S3                                                                                                       unsupported    0     1     1.4    S3
+S3 Graphics K8M800/MMX/K3D                                                                               unsupported    0     1     1.4    S3
+S3 Graphics KM400/KN400/MMX/SSE                                                                          unsupported    0     1     1.4    S3
+S3 Graphics P8M800/MMX/SSE                                                                               unsupported    0     1     1.4    S3
+S3 Graphics Unknown Device/MMX/SSE                                                                       unsupported    0     1     1.4    S3
+S3 Graphics VIA/S3G UniChrome IGP/MMX/SSE                                                                unsupported    0     1     1.4    S3
+S3 Graphics VIA/S3G UniChrome Pro IGP/MMX/SSE                                                            unsupported    0     1     1.4    S3
+S3 Graphics, Incorporated ProSavage/Twister                                                              unsupported    0     1     1.4    S3
+S3 Graphics, Incorporated S3 Graphics Chrome9 HC                                                         unsupported    0     1     1.4    S3
+S3 Graphics, Incorporated S3 Graphics DeltaChrome                                                        unsupported    0     1     1.4    S3
+S3 Graphics, Incorporated VIA Chrome9 HC IGP                                                             unsupported    0     1     1.4    S3
+S3 Graphics, Incorporated VIA Chrome9 HC3 IGP                                                            unsupported    0     1     1.4    S3
+S3 Graphics, Incorporated VIA Chrome9 HD Pro IGP                                                         unsupported    0     1     1.4    S3
+SiS                                                                                                      unsupported    0     1     1.5    SiS
+SiS 3D-Analyze v2.3 - http://www.tommti-systems.com                                                      unsupported    0     1     1.5    SiS
+SiS 650/M650 VGA                                                                                         unsupported    0     1     1.5    SiS
+SiS 650/M650 VGA / MMX/SSE2 /AGP                                                                         unsupported    0     1     1.5    SiS
+SiS 661 VGA                                                                                              unsupported    0     1     1.5    SiS
+SiS 662 VGA                                                                                              unsupported    0     1     1.5    SiS
+SiS 760 VGA                                                                                              unsupported    0     1     1.5    SiS
+SiS 761GX VGA                                                                                            unsupported    0     1     1.5    SiS
+SiS Mirage Graphics3                                                                                     unsupported    0     1     1.4    S3
+SiS Xabre VGA                                                                                            unsupported    0     1     1.5    SiS
+Tungsten Graphics, Inc Mesa DRI Intel(R) 845G                                                            unsupported    0     1     1.4    Intel 845G
+Tungsten Graphics, Inc Mesa DRI Intel(R) 852GM/855GM                                                     unsupported    0     1     1.4    Intel 855GM
+Tungsten Graphics, Inc Mesa DRI Intel(R) 852GM/855GM x86/MMX/SSE2                                        unsupported    0     1     1.4    Intel 855GM
+Tungsten Graphics, Inc Mesa DRI Intel(R) 865G                                                            unsupported    0     1     1.4    Intel 865G
+Tungsten Graphics, Inc Mesa DRI Intel(R) 865G x86/MMX/SSE2                                               unsupported    0     1     1.4    Intel 865G
+Tungsten Graphics, Inc Mesa DRI Intel(R) 915G                                                            unsupported    0     1     1.4    Intel 915G
+Tungsten Graphics, Inc Mesa DRI Intel(R) 915G x86/MMX/SSE2                                               unsupported    0     1     1.4    Intel 915G
+Tungsten Graphics, Inc Mesa DRI Intel(R) 915GM                                                           unsupported    0     1     1.4    Intel 915GM
+Tungsten Graphics, Inc Mesa DRI Intel(R) 915GM 20061017 x86/MMX/SSE2                                     unsupported    0     1     1.4    Intel 915GM
+Tungsten Graphics, Inc Mesa DRI Intel(R) 915GM GEM 20091221 2009Q4 x86/MMX/SSE2                          unsupported    0     1     1.4    Intel 915GM
+Tungsten Graphics, Inc Mesa DRI Intel(R) 915GM x86/MMX/SSE2                                              unsupported    0     1     1.4    Intel 915GM
+Tungsten Graphics, Inc Mesa DRI Intel(R) 945G GEM 20091221 2009Q4 x86/MMX/SSE2                           supported      0     1     1.4    Intel 945G
+Tungsten Graphics, Inc Mesa DRI Intel(R) 945G GEM 20100330 DEVELOPMENT x86/MMX/SSE2                      supported      0     1     1.4    Intel 945G
+Tungsten Graphics, Inc Mesa DRI Intel(R) 945G x86/MMX/SSE2                                               supported      0     1     1.4    Intel 945G
+Tungsten Graphics, Inc Mesa DRI Intel(R) 945GM GEM 20091221 2009Q4 x86/MMX/SSE2                          supported      0     1     1.4    Intel 945GM
+Tungsten Graphics, Inc Mesa DRI Intel(R) 945GM x86/MMX/SSE2                                              supported      0     1     1.4    Intel 945GM
+Tungsten Graphics, Inc Mesa DRI Intel(R) 945GME                                                          supported      0     1     1.4    Intel 945GM
+Tungsten Graphics, Inc Mesa DRI Intel(R) 945GME GEM 20091221 2009Q4 x86/MMX/SSE2                         supported      0     1     1.4    Intel 945GM
+Tungsten Graphics, Inc Mesa DRI Intel(R) 945GME x86/MMX/SSE2                                             supported      0     1     1.4    Intel 945GM
+Tungsten Graphics, Inc Mesa DRI Intel(R) 965GM                                                           supported      0     1     2.1    Intel 965
+Tungsten Graphics, Inc Mesa DRI Intel(R) 965GM GEM 20091221 2009Q4 x86/MMX/SSE2                          supported      0     1     2.1    Intel 965
+Tungsten Graphics, Inc Mesa DRI Intel(R) 965GM x86/MMX/SSE2                                              supported      0     1     2.1    Intel 965
+Tungsten Graphics, Inc Mesa DRI Intel(R) 965GME/GLE x86/MMX/SSE2                                         supported      0     1     2.1    Intel 965
+Tungsten Graphics, Inc Mesa DRI Intel(R) 965Q                                                            supported      0     1     2.1    Intel 965
+Tungsten Graphics, Inc Mesa DRI Intel(R) 965Q GEM 20091221 2009Q4 x86/MMX/SSE2                           supported      0     1     2.1    Intel 965
+Tungsten Graphics, Inc Mesa DRI Intel(R) 965Q x86/MMX/SSE2                                               supported      0     1     2.1    Intel 965
+Tungsten Graphics, Inc Mesa DRI Intel(R) G33 GEM 20091221 2009Q4 x86/MMX/SSE2                            unsupported    1     1     1.4    Intel G33
+Tungsten Graphics, Inc Mesa DRI Intel(R) G33 x86/MMX/SSE2                                                unsupported    1     1     1.4    Intel G33
+Tungsten Graphics, Inc Mesa DRI Intel(R) G41 GEM 20091221 2009Q4 x86/MMX/SSE2                            supported      1     1     2.1    Intel G41
+Tungsten Graphics, Inc Mesa DRI Intel(R) G41 GEM 20100330 DEVELOPMENT x86/MMX/SSE2                       supported      1     1     2.1    Intel G41
+Tungsten Graphics, Inc Mesa DRI Intel(R) G41 x86/MMX/SSE2                                                supported      1     1     2.1    Intel G41
+Tungsten Graphics, Inc Mesa DRI Intel(R) IGD                                                             unsupported    1     1     3      Mesa
+Tungsten Graphics, Inc Mesa DRI Intel(R) IGD  x86/MMX/SSE2                                               unsupported    1     1     3      Mesa
+Tungsten Graphics, Inc Mesa DRI Intel(R) IGD GEM 20091221 2009Q4                                         supported      1     1     2.1    Intel Q45/Q43
+Tungsten Graphics, Inc Mesa DRI Intel(R) IGD GEM 20091221 2009Q4 x86/MMX/SSE2                            supported      1     1     2.1    Intel Q45/Q43
+Tungsten Graphics, Inc Mesa DRI Intel(R) IGD x86/MMX/SSE2                                                unsupported    1     1     3      Mesa
+Tungsten Graphics, Inc Mesa DRI Intel(R) IGDNG_M GEM 20091221 2009Q4                                     supported      1     1     2.1    Intel Q45/Q43
+Tungsten Graphics, Inc Mesa DRI Intel(R) IGDNG_M GEM 20091221 2009Q4 x86/MMX/SSE2                        supported      1     1     2.1    Intel Q45/Q43
+Tungsten Graphics, Inc Mesa DRI Intel(R) Ironlake Desktop                                                unsupported    1     1     3      Mesa
+Tungsten Graphics, Inc Mesa DRI Intel(R) Ironlake Desktop x86/MMX/SSE2                                   unsupported    1     1     3      Mesa
+Tungsten Graphics, Inc Mesa DRI Intel(R) Ironlake Mobile                                                 unsupported    1     1     3      Mesa
+Tungsten Graphics, Inc Mesa DRI Intel(R) Ironlake Mobile GEM 20100330 DEVELOPMENT x86/MMX/SSE2           unsupported    1     1     3      Mesa
+Tungsten Graphics, Inc Mesa DRI Intel(R) Ironlake Mobile x86/MMX/SSE2                                    unsupported    1     1     3      Mesa
+Tungsten Graphics, Inc Mesa DRI Intel(R) Ivybridge Desktop                                               unsupported    1     1     3      Mesa
+Tungsten Graphics, Inc Mesa DRI Intel(R) Ivybridge Desktop x86/MMX/SSE2                                  unsupported    1     1     3      Mesa
+Tungsten Graphics, Inc Mesa DRI Intel(R) Ivybridge Mobile                                                unsupported    1     1     3      Mesa
+Tungsten Graphics, Inc Mesa DRI Intel(R) Ivybridge Mobile x86/MMX/SSE2                                   unsupported    1     1     3      Mesa
+Tungsten Graphics, Inc Mesa DRI Intel(R) Q35 GEM 20091221 2009Q4 x86/MMX/SSE2                            supported      1     1     2.1    Intel Q45/Q43
+Tungsten Graphics, Inc Mesa DRI Intel(R) Q35 x86/MMX/SSE2                                                unsupported    1     1     3      Mesa
+Tungsten Graphics, Inc Mesa DRI Intel(R) Q45/Q43 x86/MMX/SSE2                                            supported      1     1     2.1    Intel Q45/Q43
+Tungsten Graphics, Inc Mesa DRI Intel(R) Sandybridge Desktop                                             unsupported    1     1     3      Mesa
+Tungsten Graphics, Inc Mesa DRI Intel(R) Sandybridge Desktop x86/MMX/SSE2                                unsupported    1     1     3      Mesa
+Tungsten Graphics, Inc Mesa DRI Intel(R) Sandybridge Mobile                                              unsupported    1     1     3      Mesa
+Tungsten Graphics, Inc Mesa DRI Intel(R) Sandybridge Mobile  x86/MMX/SSE2                                unsupported    1     1     3      Mesa
+Tungsten Graphics, Inc Mesa DRI Intel(R) Sandybridge Mobile GEM 20100330 DEVELOPMENT x86/MMX/SSE2        unsupported    1     1     3      Mesa
+Tungsten Graphics, Inc Mesa DRI Intel(R) Sandybridge Mobile x86/MMX/SSE2                                 unsupported    1     1     3      Mesa
+Tungsten Graphics, Inc Mesa DRI Intel(R) Sandybridge Server                                              unsupported    1     1     3      Mesa
+Tungsten Graphics, Inc Mesa DRI Mobile Intelå¨ GM45 Express Chipset                                      unsupported    1     1     3      Mesa
+Tungsten Graphics, Inc Mesa DRI Mobile Intelå¨ GM45 Express Chipset GEM 20091221 2009Q4                  supported      1     1     2.1    Intel Q45/Q43
+Tungsten Graphics, Inc Mesa DRI Mobile Intelå¨ GM45 Express Chipset GEM 20091221 2009Q4 x86/MMX/SSE2     supported      1     1     2.1    Intel Q45/Q43
+Tungsten Graphics, Inc Mesa DRI Mobile Intelå¨ GM45 Express Chipset GEM 20100330 DEVELOPMENT x86/MMX     unsupported    1     1     3      Mesa
+Tungsten Graphics, Inc Mesa DRI Mobile Intelå¨ GM45 Express Chipset x86/MMX/SSE2                         unsupported    1     1     3      Mesa
+Tungsten Graphics, Inc. Mesa DRI R100 (RS200 4437) x86/MMX/SSE2 NO-TCL DRI2                              unsupported    1     1     3      Mesa
+Tungsten Graphics, Inc. Mesa DRI R100 (RV200 4C57)  TCL DRI2                                             unsupported    1     1     3      Mesa
+Tungsten Graphics, Inc. Mesa DRI R100 (RV200 4C57) x86/MMX/SSE2 TCL DRI2                                 unsupported    1     1     3      Mesa
+Tungsten Graphics, Inc. Mesa DRI R200 (RV250 4C66) x86/MMX/SSE2 TCL DRI2                                 unsupported    1     1     3      Mesa
+Tungsten Graphics, Inc. Mesa DRI R200 (RV280 5960) x86/MMX+/3DNow!+/SSE2 TCL DRI2                        unsupported    1     1     3      Mesa
+Tungsten Graphics, Inc. Mesa DRI R200 (RV280 5960) x86/MMX/SSE2 TCL DRI2                                 unsupported    1     1     3      Mesa
+Tungsten Graphics, Inc. Mesa DRI R200 (RV280 5961) x86/MMX/SSE2 TCL DRI2                                 unsupported    1     1     3      Mesa
+VMware, Inc. Gallium 0.3 on SVGA3D; build: RELEASE;                                                      supported      1     1     2.1    Gallium
+VMware, Inc. Gallium 0.4 on SVGA3D; build: RELEASE;                                                      supported      1     1     2.1    Gallium
+VMware, Inc. Gallium 0.4 on i915 (chipset: 945GME)                                                       supported      1     1     2.1    Gallium
+VMware, Inc. Gallium 0.4 on llvmpipe                                                                     supported      1     1     2.1    Gallium
+VMware, Inc. Gallium 0.4 on llvmpipe (LLVM 0x209)                                                        supported      1     1     2.1    Gallium
+VMware, Inc. Gallium 0.4 on llvmpipe (LLVM 0x300)                                                        supported      1     1     2.1    Gallium
+VMware, Inc. Gallium 0.4 on llvmpipe (LLVM 0x301)                                                        supported      1     1     2.1    Gallium
+VMware, Inc. Gallium 0.4 on llvmpipe (LLVM 0x302)                                                        supported      1     1     2.1    Gallium
+VMware, Inc. Gallium 0.4 on llvmpipe (LLVM 3.2, 128 bits)                                                supported      1     1     2.1    Gallium
+VMware, Inc. Gallium 0.4 on llvmpipe (LLVM 3.2, 256 bits)                                                supported      1     1     2.1    Gallium
+VMware, Inc. Gallium 0.4 on llvmpipe (LLVM 3.3, 128 bits)                                                supported      1     1     2.1    Gallium
+X.Org Gallium 0.4 on AMD ARUBA                                                                           supported      3     1     2.1    AMD ARUBA (HD 6800)
+X.Org Gallium 0.4 on AMD BARTS                                                                           supported      3     1     2.1    AMD BARTS (HD 6800)
+X.Org Gallium 0.4 on AMD CAICOS                                                                          supported      3     0     0      AMD CAICOS (HD 6400)
+X.Org Gallium 0.4 on AMD CAPE VERDE                                                                      supported      1     1     2.1    Gallium
+X.Org Gallium 0.4 on AMD CEDAR                                                                           supported      2     0     2.1    AMD CEDAR (HD 5450)
+X.Org Gallium 0.4 on AMD CYPRESS                                                                         supported      3     0     0      AMD CYPRESS (HD 5800)
+X.Org Gallium 0.4 on AMD JUNIPER                                                                         supported      3     0     0      AMD JUNIPER (HD 5700)
+X.Org Gallium 0.4 on AMD PALM                                                                            supported      1     1     2.1    Gallium
+X.Org Gallium 0.4 on AMD REDWOOD                                                                         supported      3     0     1.4    AMD REDWOOD (HD 5500/5600)
+X.Org Gallium 0.4 on AMD RS780                                                                           supported      0     1     2.1    AMD RS780 (HD 3200)
+X.Org Gallium 0.4 on AMD RS880                                                                           supported      0     1     3.2    AMD RS880 (HD 4200)
+X.Org Gallium 0.4 on AMD RV610                                                                           supported      1     0     0      AMD RV610 (HD 2400)
+X.Org Gallium 0.4 on AMD RV620                                                                           supported      1     0     0      AMD RV620 (HD 3400)
+X.Org Gallium 0.4 on AMD RV630                                                                           supported      2     0     0      AMD RV630 (HD 2600)
+X.Org Gallium 0.4 on AMD RV635                                                                           supported      3     0     1.4    AMD RV635 (HD 3600)
+X.Org Gallium 0.4 on AMD RV670                                                                           supported      3     0     0      AMD RV670 (HD 3800)
+X.Org Gallium 0.4 on AMD RV710                                                                           supported      0     1     1.4    AMD RV710 (HD 4300)
+X.Org Gallium 0.4 on AMD RV730                                                                           supported      3     0     1.4    AMD RV730 (HD 4600)
+X.Org Gallium 0.4 on AMD RV740                                                                           supported      3     0     0      AMD RV740 (HD 4700)
+X.Org Gallium 0.4 on AMD RV770                                                                           supported      3     0     0      AMD RV770 (HD 4800)
+X.Org Gallium 0.4 on AMD SUMO                                                                            supported      3     1     4.1    AMD SUMO
+X.Org Gallium 0.4 on AMD SUMO2                                                                           supported      3     1     4.1    AMD SUMO
+X.Org Gallium 0.4 on AMD TURKS                                                                           supported      3     0     2.1    AMD TURKS (HD 6500/6600)
+X.Org R300 Project Gallium 0.4 on ATI R350                                                               supported      0     1     2.1    ATI R300 (9700)
+X.Org R300 Project Gallium 0.4 on ATI R580                                                               supported      0     1     2.1    ATI R300 (9700)
+X.Org R300 Project Gallium 0.4 on ATI RC410                                                              supported      0     1     2.1    ATI R300 (9700)
+X.Org R300 Project Gallium 0.4 on ATI RS480                                                              supported      0     1     2.1    ATI R300 (9700)
+X.Org R300 Project Gallium 0.4 on ATI RS482                                                              supported      0     1     2.1    ATI R300 (9700)
+X.Org R300 Project Gallium 0.4 on ATI RS600                                                              supported      0     1     2.1    ATI R300 (9700)
+X.Org R300 Project Gallium 0.4 on ATI RS690                                                              supported      0     1     2.1    ATI R300 (9700)
+X.Org R300 Project Gallium 0.4 on ATI RV350                                                              supported      0     1     2.1    ATI R300 (9700)
+X.Org R300 Project Gallium 0.4 on ATI RV370                                                              supported      0     1     2.1    ATI R300 (9700)
+X.Org R300 Project Gallium 0.4 on ATI RV380                                                              supported      0     1     2.1    ATI R300 (9700)
+X.Org R300 Project Gallium 0.4 on ATI RV410                                                              supported      0     1     2.1    ATI R300 (9700)
+X.Org R300 Project Gallium 0.4 on ATI RV515                                                              supported      0     1     2.1    ATI R300 (9700)
+X.Org R300 Project Gallium 0.4 on ATI RV530                                                              supported      0     1     2.1    ATI R300 (9700)
+X.Org R300 Project Gallium 0.4 on ATI RV570                                                              supported      0     1     2.1    ATI R300 (9700)
+XGI Volari V3                                                                                            unsupported    0     0     0      XGI
+http://TitaniumGL.tk NVIDIA GeForce GTX 690/3999M VRAM/TitaniumGL/4 THREADs/3D GRAPHICS ACCELERATION     supported      5     1     4.3    NVIDIA GTX 69x
+nouveau Gallium 0.4 on NV34                                                                              supported      1     1     2.1    Gallium
+nouveau Gallium 0.4 on NV42                                                                              supported      1     1     2.1    Gallium
+nouveau Gallium 0.4 on NV44                                                                              supported      1     1     2.1    Gallium
+nouveau Gallium 0.4 on NV46                                                                              supported      1     1     2.1    Gallium
+nouveau Gallium 0.4 on NV49                                                                              supported      1     1     2.1    Gallium
+nouveau Gallium 0.4 on NV4A                                                                              supported      1     1     2.1    Gallium
+nouveau Gallium 0.4 on NV4B                                                                              supported      1     1     2.1    Gallium
+nouveau Gallium 0.4 on NV4C                                                                              supported      1     1     2.1    Gallium
+nouveau Gallium 0.4 on NV4E                                                                              supported      1     1     2.1    Gallium
+nouveau Gallium 0.4 on NV50                                                                              supported      1     1     2.1    Gallium
+nouveau Gallium 0.4 on NV63                                                                              supported      1     1     2.1    Gallium
+nouveau Gallium 0.4 on NV67                                                                              supported      1     1     2.1    Gallium
+nouveau Gallium 0.4 on NV84                                                                              supported      1     1     2.1    Gallium
+nouveau Gallium 0.4 on NV86                                                                              supported      1     1     2.1    Gallium
+nouveau Gallium 0.4 on NV92                                                                              supported      1     1     2.1    Gallium
+nouveau Gallium 0.4 on NV94                                                                              supported      1     1     2.1    Gallium
+nouveau Gallium 0.4 on NV96                                                                              supported      1     1     2.1    Gallium
+nouveau Gallium 0.4 on NV98                                                                              supported      1     1     2.1    Gallium
+nouveau Gallium 0.4 on NVA0                                                                              supported      1     1     2.1    Gallium
+nouveau Gallium 0.4 on NVA3                                                                              supported      1     1     2.1    Gallium
+nouveau Gallium 0.4 on NVA5                                                                              supported      1     1     2.1    Gallium
+nouveau Gallium 0.4 on NVA8                                                                              supported      1     1     2.1    Gallium
+nouveau Gallium 0.4 on NVAA                                                                              supported      1     1     2.1    Gallium
+nouveau Gallium 0.4 on NVAC                                                                              supported      1     1     2.1    Gallium
+nouveau Gallium 0.4 on NVAF                                                                              supported      1     1     2.1    Gallium
+nouveau Gallium 0.4 on NVC0                                                                              supported      1     1     2.1    Gallium
+nouveau Gallium 0.4 on NVC1                                                                              supported      1     1     2.1    Gallium
+nouveau Gallium 0.4 on NVC3                                                                              supported      1     1     2.1    Gallium
+nouveau Gallium 0.4 on NVC4                                                                              supported      1     1     2.1    Gallium
+nouveau Gallium 0.4 on NVCE                                                                              supported      1     1     2.1    Gallium
+nouveau Gallium 0.4 on NVCF                                                                              supported      1     1     2.1    Gallium
+nouveau Gallium 0.4 on NVD9                                                                              supported      1     1     2.1    Gallium
+nouveau Gallium 0.4 on NVE4                                                                              supported      1     1     2.1    Gallium
+nouveau Gallium 0.4 on NVE6                                                                              supported      1     1     2.1    Gallium
+nouveau Gallium 0.4 on NVE7                                                                              supported      1     1     2.1    Gallium
diff --git a/indra/newview/tests/gpus_seen.txt b/indra/newview/tests/gpus_seen.txt
index 570f92a9b064c85a4b623b1c824e9bfd7e5ed641..a417cb37617b763d14aa623977ef1667813c0f17 100755
--- a/indra/newview/tests/gpus_seen.txt
+++ b/indra/newview/tests/gpus_seen.txt
@@ -1,73 +1,129 @@
+AMD BARTS (HD 6800)
+AMD BARTS (HD 6800)
+AMD CAICOS (HD 6400)
+AMD CAICOS (HD 6400)
+AMD CAYMAN (HD 6900)
+AMD CEDAR (HD 5450)
+AMD CEDAR (HD 5450)
+AMD JUNIPER (HD 5700)
+AMD PARK
+AMD REDWOOD (HD 5500/5600)
+AMD RS780 (HD 3200)
+AMD RS880 (HD 4200)
+AMD RS880 (HD 4200)
+AMD RV610 (HD 2400)
+AMD RV620 (HD 3400)
+AMD RV630 (HD 2600)
+AMD RV635 (HD 3600)
+AMD RV670 (HD 3800)
+AMD RV710 (HD 4300)
+AMD RV730 (HD 4600)
+AMD RV770 (HD 4800)
+AMD RV790 (HD 4800)
+AMD TURKS (HD 6500/6600)
 ATI
-ATI 3D-Analyze
-ATI ASUS A9xxx
+ATI 760G/Radeon 3000
 ATI ASUS AH24xx
-ATI ASUS AH26xx
 ATI ASUS AH34xx
 ATI ASUS AH36xx
 ATI ASUS AH46xx
 ATI ASUS AX3xx
 ATI ASUS AX5xx
-ATI ASUS AX8xx
 ATI ASUS EAH38xx
 ATI ASUS EAH43xx
 ATI ASUS EAH45xx
 ATI ASUS EAH48xx
+ATI ASUS EAH54xx
 ATI ASUS EAH57xx
 ATI ASUS EAH58xx
-ATI ASUS X1xxx
-ATI All-in-Wonder 9xxx
+ATI ASUS EAH64xx
+ATI ASUS EAH65xx
+ATI ASUS EAH66xx
+ATI ASUS EAH67xx
+ATI ASUS EAH68xx
+ATI ASUS EAH69xx
+ATI ASUS EAH6xxx
+ATI ASUS EAH77xx
+ATI ASUS HD7700
+ATI ASUS Radeon X1xxx
 ATI All-in-Wonder HD
 ATI All-in-Wonder PCI-E
-ATI All-in-Wonder X1800
-ATI All-in-Wonder X1900
-ATI All-in-Wonder X600
-ATI All-in-Wonder X800
-ATI Diamond X1xxx
 ATI Display Adapter
 ATI FireGL
 ATI FireGL 5200
 ATI FireGL 5xxx
 ATI FireMV
-ATI Generic
-ATI Hercules 9800
+ATI FirePro 2000
+ATI FirePro 4000
+ATI FirePro M
+ATI FirePro M3900
+ATI FirePro M5800
+ATI FirePro M7740
+ATI FirePro M7820
+ATI Geforce 9500 GT
+ATI Geforce 9600 GT
+ATI Geforce 9800 GT
 ATI IGP 340M
-ATI M52
-ATI M54
-ATI M56
-ATI M71
-ATI M72
-ATI M76
 ATI Mobility Radeon
+ATI Mobility Radeon 4100
+ATI Mobility Radeon 4100
 ATI Mobility Radeon 7xxx
 ATI Mobility Radeon 9600
 ATI Mobility Radeon 9700
 ATI Mobility Radeon 9800
 ATI Mobility Radeon HD 2300
+ATI Mobility Radeon HD 2300
+ATI Mobility Radeon HD 2400
 ATI Mobility Radeon HD 2400
 ATI Mobility Radeon HD 2600
+ATI Mobility Radeon HD 2600
 ATI Mobility Radeon HD 2700
 ATI Mobility Radeon HD 3400
+ATI Mobility Radeon HD 3400
+ATI Mobility Radeon HD 3600
 ATI Mobility Radeon HD 3600
 ATI Mobility Radeon HD 3800
 ATI Mobility Radeon HD 4200
+ATI Mobility Radeon HD 4200
 ATI Mobility Radeon HD 4300
 ATI Mobility Radeon HD 4500
 ATI Mobility Radeon HD 4600
 ATI Mobility Radeon HD 4800
+ATI Mobility Radeon HD 5100
+ATI Mobility Radeon HD 5100
+ATI Mobility Radeon HD 5300
+ATI Mobility Radeon HD 530v
+ATI Mobility Radeon HD 5400
 ATI Mobility Radeon HD 5400
+ATI Mobility Radeon HD 540v
+ATI Mobility Radeon HD 545v
+ATI Mobility Radeon HD 5500
+ATI Mobility Radeon HD 550v
+ATI Mobility Radeon HD 5600
 ATI Mobility Radeon HD 5600
+ATI Mobility Radeon HD 560v
+ATI Mobility Radeon HD 565v
+ATI Mobility Radeon HD 5700
+ATI Mobility Radeon HD 6300
+ATI Mobility Radeon HD 6300
+ATI Mobility Radeon HD 6500
+ATI Mobility Radeon HD 6500M
 ATI Mobility Radeon X1xxx
 ATI Mobility Radeon X2xxx
 ATI Mobility Radeon X3xx
 ATI Mobility Radeon X6xx
 ATI Mobility Radeon X7xx
 ATI Mobility Radeon Xxxx
-ATI RV380
+ATI Mobility Radeon Xxxx
+ATI R300 (9700)
+ATI RV410 (X700)
 ATI RV530
+ATI Radeon
 ATI Radeon 2100
 ATI Radeon 3000
 ATI Radeon 3100
+ATI Radeon 3100
+ATI Radeon 5xxx
 ATI Radeon 7000
 ATI Radeon 7xxx
 ATI Radeon 8xxx
@@ -79,189 +135,630 @@ ATI Radeon 9600
 ATI Radeon 9700
 ATI Radeon 9800
 ATI Radeon HD 2300
+ATI Radeon HD 2300
+ATI Radeon HD 2400
 ATI Radeon HD 2400
 ATI Radeon HD 2600
 ATI Radeon HD 2900
 ATI Radeon HD 3000
 ATI Radeon HD 3100
 ATI Radeon HD 3200
+ATI Radeon HD 3200
 ATI Radeon HD 3300
 ATI Radeon HD 3400
+ATI Radeon HD 3400
+ATI Radeon HD 3400
+ATI Radeon HD 3500
 ATI Radeon HD 3600
+ATI Radeon HD 3700
 ATI Radeon HD 3800
 ATI Radeon HD 4200
 ATI Radeon HD 4300
+ATI Radeon HD 4300
+ATI Radeon HD 4400
+ATI Radeon HD 4500
 ATI Radeon HD 4500
 ATI Radeon HD 4600
 ATI Radeon HD 4700
 ATI Radeon HD 4800
+ATI Radeon HD 4800
 ATI Radeon HD 5400
+ATI Radeon HD 5400
+ATI Radeon HD 5500
 ATI Radeon HD 5500
 ATI Radeon HD 5600
 ATI Radeon HD 5700
+ATI Radeon HD 5700
 ATI Radeon HD 5800
 ATI Radeon HD 5900
 ATI Radeon HD 6200
+ATI Radeon HD 6200
+ATI Radeon HD 6300
 ATI Radeon HD 6300
+ATI Radeon HD 6300
+ATI Radeon HD 6300M
+ATI Radeon HD 6400
+ATI Radeon HD 64xx
+ATI Radeon HD 64xx
 ATI Radeon HD 6500
+ATI Radeon HD 65xx
+ATI Radeon HD 65xx
+ATI Radeon HD 6600
+ATI Radeon HD 66xx
+ATI Radeon HD 6700
+ATI Radeon HD 6700
+ATI Radeon HD 6700M
 ATI Radeon HD 6800
 ATI Radeon HD 6900
-ATI Radeon OpenGL
-ATI Radeon RV250
-ATI Radeon RV600
-ATI Radeon RX9550
-ATI Radeon VE
+ATI Radeon HD 6900
+ATI Radeon HD 7200
+ATI Radeon HD 7300
+ATI Radeon HD 7300
+ATI Radeon HD 7400
+ATI Radeon HD 7400
+ATI Radeon HD 7500
+ATI Radeon HD 7600
+ATI Radeon HD 7700
+ATI Radeon HD 7800
+ATI Radeon HD 7900
 ATI Radeon X1000
 ATI Radeon X1200
 ATI Radeon X1300
 ATI Radeon X13xx
 ATI Radeon X1400
 ATI Radeon X1500
+ATI Radeon X15xx
 ATI Radeon X1600
 ATI Radeon X16xx
-ATI Radeon X1700
+ATI Radeon X17xx
 ATI Radeon X1800
+ATI Radeon X18xx
+ATI Radeon X1900
 ATI Radeon X1900
 ATI Radeon X19xx
 ATI Radeon X1xxx
+ATI Radeon X1xxx
+ATI Radeon X1xxx
+ATI Radeon X1xxx
+ATI Radeon X2xxx
+ATI Radeon X2xxx
 ATI Radeon X300
 ATI Radeon X500
+ATI Radeon X500
+ATI Radeon X500
 ATI Radeon X600
 ATI Radeon X700
-ATI Radeon X7xx
 ATI Radeon X800
 ATI Radeon Xpress
+ATI Radeon Xpress
 ATI Rage 128
+ATI Technologies
 ATI Technologies Inc.
-ATI Technologies Inc.  x86
-ATI Technologies Inc.  x86/SSE2
-ATI Technologies Inc.  x86/SSE2
+ATI Technologies Inc. (DNA-AMD GFX) AMD Radeon HD 6290 Graphics
+ATI Technologies Inc. (DNA-ATi 5.1.7.5x32) ATI Mobility Radeon HD 2
 ATI Technologies Inc. (Vista) ATI Mobility Radeon HD 5730
+ATI Technologies Inc. (Vista) ATI Mobility Radeon HD 5870
+ATI Technologies Inc. 128MB ATI RADEON X600 SE
+ATI Technologies Inc. 128MB ATI RADEON X600 SE x86/SSE2
+ATI Technologies Inc. 128MB ATI Radeon X1300
+ATI Technologies Inc. 128MB ATI Radeon X1300 x86/MMX/3DNow!/SSE2
 ATI Technologies Inc. 128MB ATI Radeon X1300 x86/SSE2
+ATI Technologies Inc. 256MB ATI RADEON X600
+ATI Technologies Inc. 256MB ATI Radeon X1300PRO
+ATI Technologies Inc. 256MB ATI Radeon X1300PRO x86/MMX/3DNow!/SSE2
 ATI Technologies Inc. 256MB ATI Radeon X1300PRO x86/SSE2
+ATI Technologies Inc. 3DP (ATI RADEON XPRESS 200M)
+ATI Technologies Inc. 3DP Edition v10.04 (Mobility Radeon X1600) x86/SSE2
+ATI Technologies Inc. 7900 MOD - AMD Radeon HD 7400M Series
+ATI Technologies Inc. 7900 MOD - AMD Radeon HD 7640G
+ATI Technologies Inc. ALL-IN-WONDER 9600 SERIES
+ATI Technologies Inc. AMD (ATI)  FirePro M5950 (FireGL) Mobility Pro Graphics
+ATI Technologies Inc. AMD (ATI) FirePro M4000 (FireGL V) Mobility Pro Graphics
+ATI Technologies Inc. AMD (ATI) FirePro M5950 (FireGL) Mobility Pro Graphics
+ATI Technologies Inc. AMD (ATI) FirePro M6000 (FireGL V) Mobility Pro Graphics
+ATI Technologies Inc. AMD (ATI) FirePro M8900 (FireGL) Mobility Pro
+ATI Technologies Inc. AMD (ATI) FirePro M8900 (FireGL) Mobility Pro Graphics
+ATI Technologies Inc. AMD (ATI) FirePro M8900 (FireGL) Mobility Pro Graphics
 ATI Technologies Inc. AMD 760G
 ATI Technologies Inc. AMD 760G
-ATI Technologies Inc. AMD 760G (Microsoft WDDM 1.1)
-ATI Technologies Inc. AMD 780L
+ATI Technologies Inc. AMD 760G (Microsoft Corporation WDDM 1.1)
 ATI Technologies Inc. AMD FirePro 2270
+ATI Technologies Inc. AMD FirePro 2460
+ATI Technologies Inc. AMD FirePro M2000
+ATI Technologies Inc. AMD FirePro M3900
+ATI Technologies Inc. AMD FirePro M4000
+ATI Technologies Inc. AMD FirePro M5950
+ATI Technologies Inc. AMD FirePro M5950 Mobility Professional Graphics
+ATI Technologies Inc. AMD FirePro M5950 Mobility Professional Graphics
+ATI Technologies Inc. AMD FirePro V3900
+ATI Technologies Inc. AMD FirePro V3900 (ATI FireGL)
+ATI Technologies Inc. AMD FirePro V4900
+ATI Technologies Inc. AMD FirePro V4900 (ATI FireGL)
+ATI Technologies Inc. AMD FirePro V4900 (FireGL V)
+ATI Technologies Inc. AMD FirePro V4900 (FireGL V) Graphics Adapter
+ATI Technologies Inc. AMD FirePro V5900
+ATI Technologies Inc. AMD FirePro V5900 (ATI FireGL)
+ATI Technologies Inc. AMD FirePro V5900 (FireGL V)
+ATI Technologies Inc. AMD FirePro V5900 (FireGL V) Graphics Adapter
+ATI Technologies Inc. AMD FirePro V7900
+ATI Technologies Inc. AMD FirePro V7900 (ATI FireGL)
+ATI Technologies Inc. AMD FirePro V7900 (FireGL V)
+ATI Technologies Inc. AMD FirePro V7900 (FireGL V) Graphics Adapter
+ATI Technologies Inc. AMD FirePro W5000 (FireGL V)
+ATI Technologies Inc. AMD FirePro W9000 (FireGL V)
 ATI Technologies Inc. AMD M860G with ATI Mobility Radeon 4100
 ATI Technologies Inc. AMD M860G with ATI Mobility Radeon 4100
 ATI Technologies Inc. AMD M880G with ATI Mobility Radeon HD 4200
 ATI Technologies Inc. AMD M880G with ATI Mobility Radeon HD 4200
+ATI Technologies Inc. AMD M880G with ATI Mobility Radeon HD 4200
+ATI Technologies Inc. AMD M880G with ATI Mobility Radeon HD 4225
 ATI Technologies Inc. AMD M880G with ATI Mobility Radeon HD 4250
 ATI Technologies Inc. AMD M880G with ATI Mobility Radeon HD 4250
 ATI Technologies Inc. AMD RADEON HD 6350
+ATI Technologies Inc. AMD RADEON HD 6350
 ATI Technologies Inc. AMD RADEON HD 6450
 ATI Technologies Inc. AMD RADEON HD 6450
+ATI Technologies Inc. AMD RADEON HD 6450A
+ATI Technologies Inc. AMD RADEON HD 6670
 ATI Technologies Inc. AMD RADEON HD 6670
+ATI Technologies Inc. AMD RADEON HD 7450
+ATI Technologies Inc. AMD RADEON HD6370D Graphics
+ATI Technologies Inc. AMD RADEON HD6370D Graphics
+ATI Technologies Inc. AMD RADEON HD6410D Graphics
+ATI Technologies Inc. AMD RADEON HD6410D Graphics
+ATI Technologies Inc. AMD RADEON HD6530D Graphics
+ATI Technologies Inc. AMD RADEON HD6550D Graphics
+ATI Technologies Inc. AMD Radeon
+ATI Technologies Inc. AMD Radeon
+ATI Technologies Inc. AMD Radeon (TM) HD 8500M/8700M
+ATI Technologies Inc. AMD Radeon (TM) HD 8500M/8700M
 ATI Technologies Inc. AMD Radeon 6600M and 6700M Series
+ATI Technologies Inc. AMD Radeon 6600M and 6700M Series
+ATI Technologies Inc. AMD Radeon 6600M and 6700M Series (Microsoft Corporation - WDDM v1.20)
+ATI Technologies Inc. AMD Radeon HD 5450
+ATI Technologies Inc. AMD Radeon HD 5500 Series
+ATI Technologies Inc. AMD Radeon HD 5500 Series
+ATI Technologies Inc. AMD Radeon HD 5500 Series (Microsoft Corporation - WDDM v1.20)
 ATI Technologies Inc. AMD Radeon HD 6200 series Graphics
 ATI Technologies Inc. AMD Radeon HD 6200 series Graphics
+ATI Technologies Inc. AMD Radeon HD 6250
 ATI Technologies Inc. AMD Radeon HD 6250 Graphics
 ATI Technologies Inc. AMD Radeon HD 6250 Graphics
+ATI Technologies Inc. AMD Radeon HD 6250M
+ATI Technologies Inc. AMD Radeon HD 6250M
+ATI Technologies Inc. AMD Radeon HD 6290
+ATI Technologies Inc. AMD Radeon HD 6290 Graphics
 ATI Technologies Inc. AMD Radeon HD 6290 Graphics
+ATI Technologies Inc. AMD Radeon HD 6290M
+ATI Technologies Inc. AMD Radeon HD 6290M
 ATI Technologies Inc. AMD Radeon HD 6300 series Graphics
 ATI Technologies Inc. AMD Radeon HD 6300 series Graphics
 ATI Technologies Inc. AMD Radeon HD 6300M Series
 ATI Technologies Inc. AMD Radeon HD 6300M Series
+ATI Technologies Inc. AMD Radeon HD 6310
+ATI Technologies Inc. AMD Radeon HD 6310
+ATI Technologies Inc. AMD Radeon HD 6310 Graphics
+ATI Technologies Inc. AMD Radeon HD 6310 Graphics
 ATI Technologies Inc. AMD Radeon HD 6310 Graphics
 ATI Technologies Inc. AMD Radeon HD 6310 Graphics
+ATI Technologies Inc. AMD Radeon HD 6310 Graphics (Engineering Sample - WDDM v1.20)
+ATI Technologies Inc. AMD Radeon HD 6310 Graphics (Microsoft Corporation - WDDM v1.3)
+ATI Technologies Inc. AMD Radeon HD 6310 Graphics (Microsoft Corporation- WDDM v1.20)
 ATI Technologies Inc. AMD Radeon HD 6310M
 ATI Technologies Inc. AMD Radeon HD 6310M
+ATI Technologies Inc. AMD Radeon HD 6320
+ATI Technologies Inc. AMD Radeon HD 6320  Graphics
+ATI Technologies Inc. AMD Radeon HD 6320 Graphic
+ATI Technologies Inc. AMD Radeon HD 6320 Graphics
+ATI Technologies Inc. AMD Radeon HD 6320 Graphics
+ATI Technologies Inc. AMD Radeon HD 6320 Graphics (Microsoft Corporation - WDDM v1.20)
+ATI Technologies Inc. AMD Radeon HD 6320 series Graphics
+ATI Technologies Inc. AMD Radeon HD 6320 series Graphics
+ATI Technologies Inc. AMD Radeon HD 6320M
 ATI Technologies Inc. AMD Radeon HD 6330M
-ATI Technologies Inc. AMD Radeon HD 6330M
 ATI Technologies Inc. AMD Radeon HD 6350
+ATI Technologies Inc. AMD Radeon HD 6350
+ATI Technologies Inc. AMD Radeon HD 6370D
 ATI Technologies Inc. AMD Radeon HD 6370M
 ATI Technologies Inc. AMD Radeon HD 6370M
+ATI Technologies Inc. AMD Radeon HD 6380G
+ATI Technologies Inc. AMD Radeon HD 6400 Series
 ATI Technologies Inc. AMD Radeon HD 6400M Series
-ATI Technologies Inc. AMD Radeon HD 6400M Series
+ATI Technologies Inc. AMD Radeon HD 6410D
+ATI Technologies Inc. AMD Radeon HD 6410D
+ATI Technologies Inc. AMD Radeon HD 6410D Graphics
+ATI Technologies Inc. AMD Radeon HD 6410D Graphics
 ATI Technologies Inc. AMD Radeon HD 6450
 ATI Technologies Inc. AMD Radeon HD 6450
+ATI Technologies Inc. AMD Radeon HD 6450 (Microsoft Corporation - WDDM v1.2)
+ATI Technologies Inc. AMD Radeon HD 6450 Graphics
+ATI Technologies Inc. AMD Radeon HD 6450A
+ATI Technologies Inc. AMD Radeon HD 6450A Graphics
+ATI Technologies Inc. AMD Radeon HD 6450M
+ATI Technologies Inc. AMD Radeon HD 6450M
 ATI Technologies Inc. AMD Radeon HD 6470M
 ATI Technologies Inc. AMD Radeon HD 6470M
+ATI Technologies Inc. AMD Radeon HD 6470M/7400M Series
+ATI Technologies Inc. AMD Radeon HD 6480G
+ATI Technologies Inc. AMD Radeon HD 6480M
 ATI Technologies Inc. AMD Radeon HD 6490M
-ATI Technologies Inc. AMD Radeon HD 6490M
 ATI Technologies Inc. AMD Radeon HD 6500 Series
+ATI Technologies Inc. AMD Radeon HD 6500 Series
+ATI Technologies Inc. AMD Radeon HD 6500 series graphics
 ATI Technologies Inc. AMD Radeon HD 6500M Series
 ATI Technologies Inc. AMD Radeon HD 6500M/5600/5700 Series
 ATI Technologies Inc. AMD Radeon HD 6500M/5600/5700 Series
+ATI Technologies Inc. AMD Radeon HD 6500M/5600/5700 Series
+ATI Technologies Inc. AMD Radeon HD 6510 Series
+ATI Technologies Inc. AMD Radeon HD 6510 Series
+ATI Technologies Inc. AMD Radeon HD 6520G
+ATI Technologies Inc. AMD Radeon HD 6520G
+ATI Technologies Inc. AMD Radeon HD 6530D
+ATI Technologies Inc. AMD Radeon HD 6530D
+ATI Technologies Inc. AMD Radeon HD 6530D Graphics
+ATI Technologies Inc. AMD Radeon HD 6530D Graphics
 ATI Technologies Inc. AMD Radeon HD 6530M
-ATI Technologies Inc. AMD Radeon HD 6530M
+ATI Technologies Inc. AMD Radeon HD 6550A
+ATI Technologies Inc. AMD Radeon HD 6550A
+ATI Technologies Inc. AMD Radeon HD 6550D
+ATI Technologies Inc. AMD Radeon HD 6550D
+ATI Technologies Inc. AMD Radeon HD 6550D Graphics
+ATI Technologies Inc. AMD Radeon HD 6550D Graphics
 ATI Technologies Inc. AMD Radeon HD 6550M
 ATI Technologies Inc. AMD Radeon HD 6550M
 ATI Technologies Inc. AMD Radeon HD 6570
 ATI Technologies Inc. AMD Radeon HD 6570
-ATI Technologies Inc. AMD Radeon HD 6570M
+ATI Technologies Inc. AMD Radeon HD 6570 (Microsoft Corporation - WDDM v1.2)
+ATI Technologies Inc. AMD Radeon HD 6570 (Microsoft Corporation - WDDM v1.20)
 ATI Technologies Inc. AMD Radeon HD 6570M
 ATI Technologies Inc. AMD Radeon HD 6570M/5700 Series
 ATI Technologies Inc. AMD Radeon HD 6570M/5700 Series
+ATI Technologies Inc. AMD Radeon HD 6570M/5730
+ATI Technologies Inc. AMD Radeon HD 6600 Series
 ATI Technologies Inc. AMD Radeon HD 6600 Series
 ATI Technologies Inc. AMD Radeon HD 6600M Series
+ATI Technologies Inc. AMD Radeon HD 6610M Graphics
+ATI Technologies Inc. AMD Radeon HD 6620G
+ATI Technologies Inc. AMD Radeon HD 6620G
+ATI Technologies Inc. AMD Radeon HD 6625M Graphics
+ATI Technologies Inc. AMD Radeon HD 6630M
 ATI Technologies Inc. AMD Radeon HD 6630M
+ATI Technologies Inc. AMD Radeon HD 6650A Graphics
 ATI Technologies Inc. AMD Radeon HD 6650M
 ATI Technologies Inc. AMD Radeon HD 6650M
 ATI Technologies Inc. AMD Radeon HD 6670
 ATI Technologies Inc. AMD Radeon HD 6670
+ATI Technologies Inc. AMD Radeon HD 6670 (Microsoft Corporation - WDDM v1.2)
+ATI Technologies Inc. AMD Radeon HD 6670 (Microsoft Corporation - WDDM v1.20)
 ATI Technologies Inc. AMD Radeon HD 6700 Series
 ATI Technologies Inc. AMD Radeon HD 6700 Series
-ATI Technologies Inc. AMD Radeon HD 6750
+ATI Technologies Inc. AMD Radeon HD 6700 series
+ATI Technologies Inc. AMD Radeon HD 6700M Series
+ATI Technologies Inc. AMD Radeon HD 6700M Series (Microsoft Corporation - WDDM v1.20)
+ATI Technologies Inc. AMD Radeon HD 6700M/7700M/7900M Series
+ATI Technologies Inc. AMD Radeon HD 6730M
 ATI Technologies Inc. AMD Radeon HD 6750
 ATI Technologies Inc. AMD Radeon HD 6750M
 ATI Technologies Inc. AMD Radeon HD 6750M
 ATI Technologies Inc. AMD Radeon HD 6770
-ATI Technologies Inc. AMD Radeon HD 6770
 ATI Technologies Inc. AMD Radeon HD 6770M
+ATI Technologies Inc. AMD Radeon HD 6770M
+ATI Technologies Inc. AMD Radeon HD 6770M OpenGL Engine
 ATI Technologies Inc. AMD Radeon HD 6800 Series
 ATI Technologies Inc. AMD Radeon HD 6800 Series
+ATI Technologies Inc. AMD Radeon HD 6800 Series
+ATI Technologies Inc. AMD Radeon HD 6800 Series (Engineering Sample - WDDM v1.20)
+ATI Technologies Inc. AMD Radeon HD 6800 Series (Microsoft Corporation - WDDM v1.2)
+ATI Technologies Inc. AMD Radeon HD 6800 Series (Microsoft Corporation - WDDM v1.20)
+ATI Technologies Inc. AMD Radeon HD 6800M Series
 ATI Technologies Inc. AMD Radeon HD 6800M Series
 ATI Technologies Inc. AMD Radeon HD 6850
+ATI Technologies Inc. AMD Radeon HD 6850
+ATI Technologies Inc. AMD Radeon HD 6850 X2
 ATI Technologies Inc. AMD Radeon HD 6850M
 ATI Technologies Inc. AMD Radeon HD 6850M
 ATI Technologies Inc. AMD Radeon HD 6870
-ATI Technologies Inc. AMD Radeon HD 6870
 ATI Technologies Inc. AMD Radeon HD 6870M
 ATI Technologies Inc. AMD Radeon HD 6870M
 ATI Technologies Inc. AMD Radeon HD 6900 Series
 ATI Technologies Inc. AMD Radeon HD 6900 Series
+ATI Technologies Inc. AMD Radeon HD 6900 Series
+ATI Technologies Inc. AMD Radeon HD 6900 Series
+ATI Technologies Inc. AMD Radeon HD 6900 Series (Microsoft Corporation - WDDM v1.2)
+ATI Technologies Inc. AMD Radeon HD 6900 Series (Microsoft Corporation - WDDM v1.2)
+ATI Technologies Inc. AMD Radeon HD 6900M Series
 ATI Technologies Inc. AMD Radeon HD 6900M Series
+ATI Technologies Inc. AMD Radeon HD 6970
+ATI Technologies Inc. AMD Radeon HD 6970
 ATI Technologies Inc. AMD Radeon HD 6970M
 ATI Technologies Inc. AMD Radeon HD 6970M
 ATI Technologies Inc. AMD Radeon HD 6990
 ATI Technologies Inc. AMD Radeon HD 6990
+ATI Technologies Inc. AMD Radeon HD 6990M
+ATI Technologies Inc. AMD Radeon HD 6990M
+ATI Technologies Inc. AMD Radeon HD 6990M
+ATI Technologies Inc. AMD Radeon HD 7000 series
+ATI Technologies Inc. AMD Radeon HD 7000 series
+ATI Technologies Inc. AMD Radeon HD 7290 Graphics
+ATI Technologies Inc. AMD Radeon HD 7300 Series (Microsoft Corporation - WDDM v1.2)
+ATI Technologies Inc. AMD Radeon HD 7300 Series Graphics
+ATI Technologies Inc. AMD Radeon HD 7300 Series Graphics
+ATI Technologies Inc. AMD Radeon HD 7310
+ATI Technologies Inc. AMD Radeon HD 7310
+ATI Technologies Inc. AMD Radeon HD 7310  Graphics
+ATI Technologies Inc. AMD Radeon HD 7310 Graphics
+ATI Technologies Inc. AMD Radeon HD 7310 Graphics
+ATI Technologies Inc. AMD Radeon HD 7310 Graphics (Microsoft Corporation - WDDM v1.2)
+ATI Technologies Inc. AMD Radeon HD 7310G
+ATI Technologies Inc. AMD Radeon HD 7310M
+ATI Technologies Inc. AMD Radeon HD 7310M
+ATI Technologies Inc. AMD Radeon HD 7340
+ATI Technologies Inc. AMD Radeon HD 7340
+ATI Technologies Inc. AMD Radeon HD 7340 Graphics
+ATI Technologies Inc. AMD Radeon HD 7340 Graphics
+ATI Technologies Inc. AMD Radeon HD 7340G
+ATI Technologies Inc. AMD Radeon HD 7340G
+ATI Technologies Inc. AMD Radeon HD 7340M
+ATI Technologies Inc. AMD Radeon HD 7340M
+ATI Technologies Inc. AMD Radeon HD 7350
+ATI Technologies Inc. AMD Radeon HD 7350
+ATI Technologies Inc. AMD Radeon HD 7350 Graphics
+ATI Technologies Inc. AMD Radeon HD 7370M
+ATI Technologies Inc. AMD Radeon HD 7400 Series
+ATI Technologies Inc. AMD Radeon HD 7400 Series (Microsoft Corporation - WDDM v1.2)
+ATI Technologies Inc. AMD Radeon HD 7400G
+ATI Technologies Inc. AMD Radeon HD 7400G
+ATI Technologies Inc. AMD Radeon HD 7400M Series
+ATI Technologies Inc. AMD Radeon HD 7400M Series
+ATI Technologies Inc. AMD Radeon HD 7400M Series (Microsoft Corporation - WDDM v1.20)
+ATI Technologies Inc. AMD Radeon HD 7410M
+ATI Technologies Inc. AMD Radeon HD 7420G
+ATI Technologies Inc. AMD Radeon HD 7420G
+ATI Technologies Inc. AMD Radeon HD 7450
+ATI Technologies Inc. AMD Radeon HD 7450
+ATI Technologies Inc. AMD Radeon HD 7450
+ATI Technologies Inc. AMD Radeon HD 7450 Graphics
+ATI Technologies Inc. AMD Radeon HD 7450A Graphics
+ATI Technologies Inc. AMD Radeon HD 7450A Graphics
+ATI Technologies Inc. AMD Radeon HD 7450M
+ATI Technologies Inc. AMD Radeon HD 7470
+ATI Technologies Inc. AMD Radeon HD 7470
+ATI Technologies Inc. AMD Radeon HD 7470
+ATI Technologies Inc. AMD Radeon HD 7470 Series
+ATI Technologies Inc. AMD Radeon HD 7470 Series
+ATI Technologies Inc. AMD Radeon HD 7470M
+ATI Technologies Inc. AMD Radeon HD 7470M
+ATI Technologies Inc. AMD Radeon HD 7480D
+ATI Technologies Inc. AMD Radeon HD 7480D
+ATI Technologies Inc. AMD Radeon HD 7500 Series
+ATI Technologies Inc. AMD Radeon HD 7500 Series (Microsoft Corporation - WDDM v1.2)
+ATI Technologies Inc. AMD Radeon HD 7500 Series (Microsoft Corporation - WDDM v1.20)
+ATI Technologies Inc. AMD Radeon HD 7500/7600 Series
+ATI Technologies Inc. AMD Radeon HD 7500G
+ATI Technologies Inc. AMD Radeon HD 7500G
+ATI Technologies Inc. AMD Radeon HD 7500G + 7500M/7600M Dual Graphics
+ATI Technologies Inc. AMD Radeon HD 7500M/7600M Series
+ATI Technologies Inc. AMD Radeon HD 7510
+ATI Technologies Inc. AMD Radeon HD 7510
+ATI Technologies Inc. AMD Radeon HD 7520G
+ATI Technologies Inc. AMD Radeon HD 7520G
+ATI Technologies Inc. AMD Radeon HD 7520G + 6400M Dual Graphics
+ATI Technologies Inc. AMD Radeon HD 7520G + 7470M Dual Graphics
+ATI Technologies Inc. AMD Radeon HD 7520G + 7470M Dual Graphics
+ATI Technologies Inc. AMD Radeon HD 7520G + 7500/7600 Dual Graphics
+ATI Technologies Inc. AMD Radeon HD 7520G + 7600M Dual Graphics
+ATI Technologies Inc. AMD Radeon HD 7520G + 7610M Dual Graphics
+ATI Technologies Inc. AMD Radeon HD 7520G + 7670M Dual Graphics
+ATI Technologies Inc. AMD Radeon HD 7520G + 7670M Dual Graphics
+ATI Technologies Inc. AMD Radeon HD 7540D
+ATI Technologies Inc. AMD Radeon HD 7540D
+ATI Technologies Inc. AMD Radeon HD 7540D + 7450 Dual Graphics
+ATI Technologies Inc. AMD Radeon HD 7550M
+ATI Technologies Inc. AMD Radeon HD 7550M
+ATI Technologies Inc. AMD Radeon HD 7550M/7650M Graphics
+ATI Technologies Inc. AMD Radeon HD 7550M/7650M Graphics
+ATI Technologies Inc. AMD Radeon HD 7560D
+ATI Technologies Inc. AMD Radeon HD 7560D
+ATI Technologies Inc. AMD Radeon HD 7560D (Microsoft Corporation - WDDM v1.20)
+ATI Technologies Inc. AMD Radeon HD 7560D + 6570 Dual Graphics
+ATI Technologies Inc. AMD Radeon HD 7560D + 6670 Dual Graphics
+ATI Technologies Inc. AMD Radeon HD 7560D + 7560D Dual Graphics
+ATI Technologies Inc. AMD Radeon HD 7560D + 7600 Dual Graphics
+ATI Technologies Inc. AMD Radeon HD 7560D + 7670 Dual Graphics
+ATI Technologies Inc. AMD Radeon HD 7570
+ATI Technologies Inc. AMD Radeon HD 7570
+ATI Technologies Inc. AMD Radeon HD 7570 Graphics
+ATI Technologies Inc. AMD Radeon HD 7570 Series
+ATI Technologies Inc. AMD Radeon HD 7570M
+ATI Technologies Inc. AMD Radeon HD 7570M/HD 7670M Graphics
+ATI Technologies Inc. AMD Radeon HD 7580D
+ATI Technologies Inc. AMD Radeon HD 7600 Series (Microsoft Corporation - WDDM v1.20)
+ATI Technologies Inc. AMD Radeon HD 7600G
+ATI Technologies Inc. AMD Radeon HD 7600G + 7500M/7600M Dual Graphics
+ATI Technologies Inc. AMD Radeon HD 7600G + 7550M Dual Graphics
+ATI Technologies Inc. AMD Radeon HD 7600M + 7600M Dual Graphics
+ATI Technologies Inc. AMD Radeon HD 7600M Series
+ATI Technologies Inc. AMD Radeon HD 7600M Series
+ATI Technologies Inc. AMD Radeon HD 7610M
+ATI Technologies Inc. AMD Radeon HD 7610M
+ATI Technologies Inc. AMD Radeon HD 7620G
+ATI Technologies Inc. AMD Radeon HD 7640G
+ATI Technologies Inc. AMD Radeon HD 7640G
+ATI Technologies Inc. AMD Radeon HD 7640G + 6400M Dual Graphics
+ATI Technologies Inc. AMD Radeon HD 7640G + 7450M Dual Graphics
+ATI Technologies Inc. AMD Radeon HD 7640G + 7470M Dual Graphics
+ATI Technologies Inc. AMD Radeon HD 7640G + 7470M Dual Graphics
+ATI Technologies Inc. AMD Radeon HD 7640G + 7500/7600 Dual Graphics
+ATI Technologies Inc. AMD Radeon HD 7640G + 7500M/7600M Dual Graphics
+ATI Technologies Inc. AMD Radeon HD 7640G + 7600M Dual Graphics
+ATI Technologies Inc. AMD Radeon HD 7640G + 7610M Dual Graphics
+ATI Technologies Inc. AMD Radeon HD 7640G + 7670M Dual Graphics
+ATI Technologies Inc. AMD Radeon HD 7650A
+ATI Technologies Inc. AMD Radeon HD 7650A Graphics
+ATI Technologies Inc. AMD Radeon HD 7650M
+ATI Technologies Inc. AMD Radeon HD 7650M
+ATI Technologies Inc. AMD Radeon HD 7650M Series
+ATI Technologies Inc. AMD Radeon HD 7660D
+ATI Technologies Inc. AMD Radeon HD 7660D
+ATI Technologies Inc. AMD Radeon HD 7660D + 6570 Dual Graphics
+ATI Technologies Inc. AMD Radeon HD 7660D + 6670 Dual Graphics
+ATI Technologies Inc. AMD Radeon HD 7660D + 7670 Dual Graphics
+ATI Technologies Inc. AMD Radeon HD 7660D + 7700 Dual Graphics
+ATI Technologies Inc. AMD Radeon HD 7660G
+ATI Technologies Inc. AMD Radeon HD 7660G
+ATI Technologies Inc. AMD Radeon HD 7660G + 6400M Dual Graphics
+ATI Technologies Inc. AMD Radeon HD 7660G + 7400M Dual Graphics
+ATI Technologies Inc. AMD Radeon HD 7660G + 7470M Dual Graphics
+ATI Technologies Inc. AMD Radeon HD 7660G + 7500/7600 Dual Graphics
+ATI Technologies Inc. AMD Radeon HD 7660G + 7600M Dual Graphics
+ATI Technologies Inc. AMD Radeon HD 7660G + 7610M Dual Graphics
+ATI Technologies Inc. AMD Radeon HD 7660G + 7670M Dual Graphics
+ATI Technologies Inc. AMD Radeon HD 7660G + 7670M Dual Graphics
+ATI Technologies Inc. AMD Radeon HD 7660G + 7700M Dual Graphics
+ATI Technologies Inc. AMD Radeon HD 7670
+ATI Technologies Inc. AMD Radeon HD 7670
+ATI Technologies Inc. AMD Radeon HD 7670M
+ATI Technologies Inc. AMD Radeon HD 7670M
+ATI Technologies Inc. AMD Radeon HD 7690M
+ATI Technologies Inc. AMD Radeon HD 7700 Series
+ATI Technologies Inc. AMD Radeon HD 7700 Series
+ATI Technologies Inc. AMD Radeon HD 7700 Series
+ATI Technologies Inc. AMD Radeon HD 7700 Series (Microsoft Corporation - WDDM v1.3)
+ATI Technologies Inc. AMD Radeon HD 7700M Series
+ATI Technologies Inc. AMD Radeon HD 7730M
+ATI Technologies Inc. AMD Radeon HD 7770
+ATI Technologies Inc. AMD Radeon HD 7770
+ATI Technologies Inc. AMD Radeon HD 7770 GHz Edition
+ATI Technologies Inc. AMD Radeon HD 7800 Series
+ATI Technologies Inc. AMD Radeon HD 7800 Series
+ATI Technologies Inc. AMD Radeon HD 7800 Series
+ATI Technologies Inc. AMD Radeon HD 7800 Series
+ATI Technologies Inc. AMD Radeon HD 7800 Series (Engineering Sample - WDDM v1.20)
+ATI Technologies Inc. AMD Radeon HD 7800 Series (Microsoft Corporation - WDDM v1.20)
+ATI Technologies Inc. AMD Radeon HD 7800 Series (Microsoft Corporation - WDDM v1.3)
+ATI Technologies Inc. AMD Radeon HD 7800 Series (Microsoft Corporation - WDDM v1.3)
+ATI Technologies Inc. AMD Radeon HD 7800M Series
+ATI Technologies Inc. AMD Radeon HD 7800M Series
+ATI Technologies Inc. AMD Radeon HD 7870
+ATI Technologies Inc. AMD Radeon HD 7870
+ATI Technologies Inc. AMD Radeon HD 7870M
+ATI Technologies Inc. AMD Radeon HD 7870M
+ATI Technologies Inc. AMD Radeon HD 7900 Series
+ATI Technologies Inc. AMD Radeon HD 7900 Series
+ATI Technologies Inc. AMD Radeon HD 7900 Series
+ATI Technologies Inc. AMD Radeon HD 7900 Series
+ATI Technologies Inc. AMD Radeon HD 7900 Series (Microsoft Corporation - WDDM v1.3)
+ATI Technologies Inc. AMD Radeon HD 7950
+ATI Technologies Inc. AMD Radeon HD 7950
+ATI Technologies Inc. AMD Radeon HD 7950
+ATI Technologies Inc. AMD Radeon HD 7970
+ATI Technologies Inc. AMD Radeon HD 7970
+ATI Technologies Inc. AMD Radeon HD 7970M
+ATI Technologies Inc. AMD Radeon HD 7970M
+ATI Technologies Inc. AMD Radeon HD 7970M
+ATI Technologies Inc. AMD Radeon HD 8210
+ATI Technologies Inc. AMD Radeon HD 8240
+ATI Technologies Inc. AMD Radeon HD 8250
+ATI Technologies Inc. AMD Radeon HD 8280G
+ATI Technologies Inc. AMD Radeon HD 8330
+ATI Technologies Inc. AMD Radeon HD 8330
+ATI Technologies Inc. AMD Radeon HD 8350
+ATI Technologies Inc. AMD Radeon HD 8350
+ATI Technologies Inc. AMD Radeon HD 8350G
+ATI Technologies Inc. AMD Radeon HD 8400
+ATI Technologies Inc. AMD Radeon HD 8450
+ATI Technologies Inc. AMD Radeon HD 8450G
+ATI Technologies Inc. AMD Radeon HD 8470
+ATI Technologies Inc. AMD Radeon HD 8470
+ATI Technologies Inc. AMD Radeon HD 8470D
+ATI Technologies Inc. AMD Radeon HD 8550G
+ATI Technologies Inc. AMD Radeon HD 8550G
+ATI Technologies Inc. AMD Radeon HD 8570
+ATI Technologies Inc. AMD Radeon HD 8570
+ATI Technologies Inc. AMD Radeon HD 8570D
+ATI Technologies Inc. AMD Radeon HD 8570D
+ATI Technologies Inc. AMD Radeon HD 8610G
+ATI Technologies Inc. AMD Radeon HD 8650G
+ATI Technologies Inc. AMD Radeon HD 8650G
+ATI Technologies Inc. AMD Radeon HD 8670D
+ATI Technologies Inc. AMD Radeon HD 8670D
+ATI Technologies Inc. AMD Radeon HD 8670D
+ATI Technologies Inc. AMD Radeon HD 8670D + 6670 Dual Graphics
+ATI Technologies Inc. AMD Radeon HD 8700M Series
+ATI Technologies Inc. AMD Radeon HD 8700M Series
+ATI Technologies Inc. AMD Radeon HD 8730M
+ATI Technologies Inc. AMD Radeon HD 8730M
+ATI Technologies Inc. AMD Radeon HD 8730M
+ATI Technologies Inc. AMD Radeon HD 8750M
+ATI Technologies Inc. AMD Radeon HD 8760
+ATI Technologies Inc. AMD Radeon HD 8760
+ATI Technologies Inc. AMD Radeon HD 8760
+ATI Technologies Inc. AMD Radeon HD 8800M Series
+ATI Technologies Inc. AMD Radeon HD 8800M Series
+ATI Technologies Inc. AMD Radeon HD 8900 Series (OEM)
+ATI Technologies Inc. AMD Radeon HD 8950
+ATI Technologies Inc. AMD Radeon HD 8950
+ATI Technologies Inc. AMD Radeon HD HD7850M
+ATI Technologies Inc. AMD Radeon HD HD7850M
+ATI Technologies Inc. AMD Radeon HD6370D Graphics
+ATI Technologies Inc. AMD Radeon HD6370D Graphics
+ATI Technologies Inc. AMD Radeon HD7610M
+ATI Technologies Inc. AMD Radeon HD7610M
+ATI Technologies Inc. AMD Radeon HD7700 Series
+ATI Technologies Inc. AMD Radeon HD7700 Series
+ATI Technologies Inc. AMD Radeon HD7700 Series
+ATI Technologies Inc. AMD Radeon HD7770
+ATI Technologies Inc. AMD Radeon HD7770
+ATI Technologies Inc. AMD Radeon HD7770 GHz Edition
+ATI Technologies Inc. AMD Radeon HD7770 GHz Edition
+ATI Technologies Inc. AMD Radeon HD8350
+ATI Technologies Inc. AMD Radeon(TM) HD 6380G
+ATI Technologies Inc. AMD Radeon(TM) HD 6380G
 ATI Technologies Inc. AMD Radeon(TM) HD 6470M
 ATI Technologies Inc. AMD Radeon(TM) HD 6470M
-ATI Technologies Inc. AMD Radeon(TM) HD 6470M
 ATI Technologies Inc. AMD Radeon(TM) HD 6480G
+ATI Technologies Inc. AMD Radeon(TM) HD 6480G
+ATI Technologies Inc. AMD Radeon(TM) HD 6480G (Microsoft Corporation - WDDM v1.20)
+ATI Technologies Inc. AMD Radeon(TM) HD 6520G
 ATI Technologies Inc. AMD Radeon(TM) HD 6520G
 ATI Technologies Inc. AMD Radeon(TM) HD 6620G
+ATI Technologies Inc. AMD Radeon(TM) HD 6620G
 ATI Technologies Inc. AMD Radeon(TM) HD 6630M
-ATI Technologies Inc. ASUS 5870 Eyefinity 6
-ATI Technologies Inc. ASUS A9550 Series
-ATI Technologies Inc. ASUS AH2600 Series
+ATI Technologies Inc. AMD Radeon(TM) HD 6650M
+ATI Technologies Inc. AMD Radeon(TM) HD 7450
+ATI Technologies Inc. AMD Radeon(TM) HD 7450A Graphics
+ATI Technologies Inc. AMD Radeon(TM) HD 7650A Graphics
+ATI Technologies Inc. AMD Radeon(TM) HD 7670A Graphics
+ATI Technologies Inc. AMD Radeon(TM) HD 7670M
+ATI Technologies Inc. AMD Radeon(TM) HD 8350
+ATI Technologies Inc. AMD Radeon(TM) HD8490
+ATI Technologies Inc. AMD Radeon. HD 7350
+ATI Technologies Inc. AMD Radeon. HD 7670M
+ATI Technologies Inc. AMD Radeon. HD 7730M
+ATI Technologies Inc. AMD Radeon. HD 7730M
+ATI Technologies Inc. ASUS AH3450 Series
 ATI Technologies Inc. ASUS AH3450 Series
-ATI Technologies Inc. ASUS AH3650 Series
 ATI Technologies Inc. ASUS AH3650 Series
 ATI Technologies Inc. ASUS AH4650 Series
 ATI Technologies Inc. ASUS ARES
-ATI Technologies Inc. ASUS ARES
-ATI Technologies Inc. ASUS EAH2900 Series
-ATI Technologies Inc. ASUS EAH3450 Series
+ATI Technologies Inc. ASUS ARES2
+ATI Technologies Inc. ASUS EAH2400 Series
+ATI Technologies Inc. ASUS EAH2600 Series
 ATI Technologies Inc. ASUS EAH3450 Series
 ATI Technologies Inc. ASUS EAH3650 Series
-ATI Technologies Inc. ASUS EAH3650 Series
+ATI Technologies Inc. ASUS EAH3850 Series
+ATI Technologies Inc. ASUS EAH3870 Series
 ATI Technologies Inc. ASUS EAH4350 series
 ATI Technologies Inc. ASUS EAH4350 series
 ATI Technologies Inc. ASUS EAH4550 series
-ATI Technologies Inc. ASUS EAH4550 series
 ATI Technologies Inc. ASUS EAH4650 series
 ATI Technologies Inc. ASUS EAH4670 series
-ATI Technologies Inc. ASUS EAH4670 series
-ATI Technologies Inc. ASUS EAH4750 Series
-ATI Technologies Inc. ASUS EAH4770 Series
 ATI Technologies Inc. ASUS EAH4770 Series
 ATI Technologies Inc. ASUS EAH4770 series
-ATI Technologies Inc. ASUS EAH4770 series
 ATI Technologies Inc. ASUS EAH4850 series
+ATI Technologies Inc. ASUS EAH4870 series
+ATI Technologies Inc. ASUS EAH4870x2
+ATI Technologies Inc. ASUS EAH4890
 ATI Technologies Inc. ASUS EAH5450 Series
 ATI Technologies Inc. ASUS EAH5450 Series
 ATI Technologies Inc. ASUS EAH5550 Series
@@ -269,21 +766,26 @@ ATI Technologies Inc. ASUS EAH5550 Series
 ATI Technologies Inc. ASUS EAH5570 series
 ATI Technologies Inc. ASUS EAH5570 series
 ATI Technologies Inc. ASUS EAH5670 Series
-ATI Technologies Inc. ASUS EAH5670 Series
 ATI Technologies Inc. ASUS EAH5750 Series
 ATI Technologies Inc. ASUS EAH5750 Series
 ATI Technologies Inc. ASUS EAH5770 Series
 ATI Technologies Inc. ASUS EAH5770 Series
 ATI Technologies Inc. ASUS EAH5830 Series
+ATI Technologies Inc. ASUS EAH5830 Series
 ATI Technologies Inc. ASUS EAH5850 Series
 ATI Technologies Inc. ASUS EAH5850 Series
 ATI Technologies Inc. ASUS EAH5870 Series
 ATI Technologies Inc. ASUS EAH5870 Series
-ATI Technologies Inc. ASUS EAH5970 Series
-ATI Technologies Inc. ASUS EAH5970 Series
 ATI Technologies Inc. ASUS EAH6450 Series
+ATI Technologies Inc. ASUS EAH6450 Series
+ATI Technologies Inc. ASUS EAH6570 Series
 ATI Technologies Inc. ASUS EAH6570 Series
 ATI Technologies Inc. ASUS EAH6670 Series
+ATI Technologies Inc. ASUS EAH6670 Series
+ATI Technologies Inc. ASUS EAH6750 Series
+ATI Technologies Inc. ASUS EAH6750 Series
+ATI Technologies Inc. ASUS EAH6770 Series
+ATI Technologies Inc. ASUS EAH6770 Series
 ATI Technologies Inc. ASUS EAH6850 Series
 ATI Technologies Inc. ASUS EAH6850 Series
 ATI Technologies Inc. ASUS EAH6870 Series
@@ -292,359 +794,476 @@ ATI Technologies Inc. ASUS EAH6950 Series
 ATI Technologies Inc. ASUS EAH6950 Series
 ATI Technologies Inc. ASUS EAH6970 Series
 ATI Technologies Inc. ASUS EAH6970 Series
-ATI Technologies Inc. ASUS EAHG4670 series
-ATI Technologies Inc. ASUS Extreme AX600 Series
+ATI Technologies Inc. ASUS Extreme AX300 Series
+ATI Technologies Inc. ASUS Extreme AX300SE/T
+ATI Technologies Inc. ASUS Extreme AX550 Series
+ATI Technologies Inc. ASUS Extreme AX550 Series x86/SSE2
 ATI Technologies Inc. ASUS Extreme AX600 Series
-ATI Technologies Inc. ASUS Extreme AX600XT-TD
-ATI Technologies Inc. ASUS Extreme AX600XT-TD
+ATI Technologies Inc. ASUS HD 7350
+ATI Technologies Inc. ASUS HD7470 Series
+ATI Technologies Inc. ASUS HD7670 Series
+ATI Technologies Inc. ASUS HD7670 Series
+ATI Technologies Inc. ASUS HD7750 Series
+ATI Technologies Inc. ASUS HD7750 Series
+ATI Technologies Inc. ASUS HD7770 Series
+ATI Technologies Inc. ASUS HD7770 Series
+ATI Technologies Inc. ASUS HD7790 Series
+ATI Technologies Inc. ASUS HD7850 Series
+ATI Technologies Inc. ASUS HD7850 Series
+ATI Technologies Inc. ASUS HD7850 Series
+ATI Technologies Inc. ASUS HD7870 Series
+ATI Technologies Inc. ASUS HD7870 Series
+ATI Technologies Inc. ASUS HD7870 Series
+ATI Technologies Inc. ASUS HD7870 Series
+ATI Technologies Inc. ASUS HD7950 Series
+ATI Technologies Inc. ASUS HD7950 Series
+ATI Technologies Inc. ASUS HD7950 Series
+ATI Technologies Inc. ASUS HD7970 Series
+ATI Technologies Inc. ASUS HD7970 Series
+ATI Technologies Inc. ASUS HD7970 Series
+ATI Technologies Inc. ASUS X1300 Series
+ATI Technologies Inc. ASUS X1300 Series x86/MMX/3DNow!/SSE2
 ATI Technologies Inc. ASUS X1300 Series x86/SSE2
+ATI Technologies Inc. ASUS X1300 x86/SSE2
 ATI Technologies Inc. ASUS X1550 Series
-ATI Technologies Inc. ASUS X1950 Series x86/SSE2
-ATI Technologies Inc. ASUS X800 Series
-ATI Technologies Inc. ASUS X800 Series
-ATI Technologies Inc. ASUS X850 Series
+ATI Technologies Inc. ASUS X1550 Series x86/MMX/3DNow!/SSE2
+ATI Technologies Inc. ASUS X1550 Series x86/SSE2
+ATI Technologies Inc. ASUS X1600 Series
+ATI Technologies Inc. ASUS X1600 Series x86
+ATI Technologies Inc. ASUS X1600 Series x86/MMX/3DNow!/SSE2
+ATI Technologies Inc. ASUS X1600 Series x86/SSE2
+ATI Technologies Inc. ASUS X1650 Series
+ATI Technologies Inc. ASUS X1650 Series x86/MMX/3DNow!/SSE2
+ATI Technologies Inc. ASUS X1650 Series x86/SSE2
+ATI Technologies Inc. ASUS X1950 Series x86/MMX/3DNow!/SSE2
+ATI Technologies Inc. ATI  Radeon HD 5000 Series
+ATI Technologies Inc. ATI  Radeon HD 6350
 ATI Technologies Inc. ATI All-in-Wonder HD
+ATI Technologies Inc. ATI Display Adapter
+ATI Technologies Inc. ATI FireGL V3100
+ATI Technologies Inc. ATI FireGL V3200 Pentium 4 (SSE2)
+ATI Technologies Inc. ATI FireGL V3300
+ATI Technologies Inc. ATI FireGL V3350
+ATI Technologies Inc. ATI FireGL V3350 Pentium 4 (SSE2)
+ATI Technologies Inc. ATI FireGL V3400 (Microsoft Corporation - WDDM)
+ATI Technologies Inc. ATI FireGL V3400 Pentium 4 (SSE2)
+ATI Technologies Inc. ATI FireGL V3600
+ATI Technologies Inc. ATI FireGL V5200 (Microsoft Corporation - WDDM)
+ATI Technologies Inc. ATI FireGL V5200 Pentium 4 (SSE2)
+ATI Technologies Inc. ATI FireGL V5600
+ATI Technologies Inc. ATI FireGL V7200
+ATI Technologies Inc. ATI FireGL V7200 Pentium 4 (SSE2)
+ATI Technologies Inc. ATI FireGL V7600
+ATI Technologies Inc. ATI FireGL V7700
+ATI Technologies Inc. ATI FireMV 2250
+ATI Technologies Inc. ATI FireMV 2250 x86/SSE2
 ATI Technologies Inc. ATI FirePro 2260
 ATI Technologies Inc. ATI FirePro 2260
 ATI Technologies Inc. ATI FirePro 2450
+ATI Technologies Inc. ATI FirePro 3800 (FireGL) Graphics Adapter
 ATI Technologies Inc. ATI FirePro M5800
-ATI Technologies Inc. ATI FirePro M5800
-ATI Technologies Inc. ATI FirePro M7740
 ATI Technologies Inc. ATI FirePro M7740
 ATI Technologies Inc. ATI FirePro M7820
 ATI Technologies Inc. ATI FirePro M7820
+ATI Technologies Inc. ATI FirePro M7820 (FireGL)
 ATI Technologies Inc. ATI FirePro V3700 (FireGL)
 ATI Technologies Inc. ATI FirePro V3800
+ATI Technologies Inc. ATI FirePro V3800 (FireGL V)
+ATI Technologies Inc. ATI FirePro V3800 (FireGL V) Graphics Adapter
+ATI Technologies Inc. ATI FirePro V3800 (FireGL)
 ATI Technologies Inc. ATI FirePro V4800
+ATI Technologies Inc. ATI FirePro V4800 (FireGL V)
 ATI Technologies Inc. ATI FirePro V4800 (FireGL)
-ATI Technologies Inc. ATI FirePro V5800
-ATI Technologies Inc. ATI FirePro V7800
+ATI Technologies Inc. ATI FirePro V5700 (FireGL)
+ATI Technologies Inc. ATI FirePro V5800 (FireGL V)
+ATI Technologies Inc. ATI FirePro V5800 (FireGL)
+ATI Technologies Inc. ATI FirePro V7800 (FireGL V)
+ATI Technologies Inc. ATI FirePro V7800 (FireGL)
+ATI Technologies Inc. ATI FirePro V8700 (FireGL)
+ATI Technologies Inc. ATI FirePro V9800 (FireGL V)
+ATI Technologies Inc. ATI MOBILITY FIRE GL T2/T2e
+ATI Technologies Inc. ATI MOBILITY FireGL V3200
+ATI Technologies Inc. ATI MOBILITY FireGL V5000 Pentium 4 (SSE2)
+ATI Technologies Inc. ATI MOBILITY FireGL V5200
+ATI Technologies Inc. ATI MOBILITY FireGL V5200 Pentium 4 (SSE2)
+ATI Technologies Inc. ATI MOBILITY FireGL V5250
+ATI Technologies Inc. ATI MOBILITY RADEON 9600 Series
+ATI Technologies Inc. ATI MOBILITY RADEON 9600/9700
+ATI Technologies Inc. ATI MOBILITY RADEON 9600/9700
+ATI Technologies Inc. ATI MOBILITY RADEON 9600/9700 Series
 ATI Technologies Inc. ATI MOBILITY RADEON 9600/9700 Series
-ATI Technologies Inc. ATI MOBILITY RADEON 9XXX x86/SSE2
-ATI Technologies Inc. ATI MOBILITY RADEON 9XXX x86/SSE2
+ATI Technologies Inc. ATI MOBILITY RADEON 9600/9700 Series (Omega 3
 ATI Technologies Inc. ATI MOBILITY RADEON HD 2300
+ATI Technologies Inc. ATI MOBILITY RADEON HD 2400
+ATI Technologies Inc. ATI MOBILITY RADEON HD 2600
+ATI Technologies Inc. ATI MOBILITY RADEON HD 3430
 ATI Technologies Inc. ATI MOBILITY RADEON HD 3450
 ATI Technologies Inc. ATI MOBILITY RADEON HD 3650
+ATI Technologies Inc. ATI MOBILITY RADEON HD 4530 / 4570
+ATI Technologies Inc. ATI MOBILITY RADEON X1300
+ATI Technologies Inc. ATI MOBILITY RADEON X1350
+ATI Technologies Inc. ATI MOBILITY RADEON X1400
 ATI Technologies Inc. ATI MOBILITY RADEON X1600
-ATI Technologies Inc. ATI MOBILITY RADEON X1600
-ATI Technologies Inc. ATI MOBILITY RADEON X2300
+ATI Technologies Inc. ATI MOBILITY RADEON X1700
+ATI Technologies Inc. ATI MOBILITY RADEON X1800
+ATI Technologies Inc. ATI MOBILITY RADEON X1900
 ATI Technologies Inc. ATI MOBILITY RADEON X2300
-ATI Technologies Inc. ATI MOBILITY RADEON X2300 HD x86/SSE2
 ATI Technologies Inc. ATI MOBILITY RADEON X2300 x86/MMX/3DNow!/SSE2
-ATI Technologies Inc. ATI MOBILITY RADEON X2300 x86/MMX/3DNow!/SSE2
-ATI Technologies Inc. ATI MOBILITY RADEON X2300 x86/SSE2
-ATI Technologies Inc. ATI MOBILITY RADEON X300
 ATI Technologies Inc. ATI MOBILITY RADEON X300
+ATI Technologies Inc. ATI MOBILITY RADEON X300 x86/SSE2
 ATI Technologies Inc. ATI MOBILITY RADEON X600
+ATI Technologies Inc. ATI MOBILITY RADEON X600 SE
 ATI Technologies Inc. ATI MOBILITY RADEON X700
 ATI Technologies Inc. ATI MOBILITY RADEON XPRESS 200
-ATI Technologies Inc. ATI MOBILITY RADEON XPRESS 200
+ATI Technologies Inc. ATI MOBILITY RADEON XPRESS 200 x86/MMX/3DNow!/SSE2
+ATI Technologies Inc. ATI MOBILITY Radeon HD 4650
 ATI Technologies Inc. ATI Mobility FireGL V5700
-ATI Technologies Inc. ATI Mobility FireGL V5700
-ATI Technologies Inc. ATI Mobility Radeon 4100
+ATI Technologies Inc. ATI Mobility FireGL V5725
+ATI Technologies Inc. ATI Mobility FireGL V5725
 ATI Technologies Inc. ATI Mobility Radeon 4100
 ATI Technologies Inc. ATI Mobility Radeon Graphics
-ATI Technologies Inc. ATI Mobility Radeon Graphics
-ATI Technologies Inc. ATI Mobility Radeon HD 2300
 ATI Technologies Inc. ATI Mobility Radeon HD 2300
+ATI Technologies Inc. ATI Mobility Radeon HD 2300 x86/SSE2
 ATI Technologies Inc. ATI Mobility Radeon HD 2400
 ATI Technologies Inc. ATI Mobility Radeon HD 2400
-ATI Technologies Inc. ATI Mobility Radeon HD 2400 XT
+ATI Technologies Inc. ATI Mobility Radeon HD 2400 (Omega 3.8.442)
 ATI Technologies Inc. ATI Mobility Radeon HD 2400 XT
 ATI Technologies Inc. ATI Mobility Radeon HD 2600
 ATI Technologies Inc. ATI Mobility Radeon HD 2600
 ATI Technologies Inc. ATI Mobility Radeon HD 2600 XT
-ATI Technologies Inc. ATI Mobility Radeon HD 2700
+ATI Technologies Inc. ATI Mobility Radeon HD 2600 XT (Microsoft Corporation WDDM 1.1)
 ATI Technologies Inc. ATI Mobility Radeon HD 2700
 ATI Technologies Inc. ATI Mobility Radeon HD 3400 Series
 ATI Technologies Inc. ATI Mobility Radeon HD 3400 Series
+ATI Technologies Inc. ATI Mobility Radeon HD 3400 Series (Microsoft Corporation WDDM 1.1)
+ATI Technologies Inc. ATI Mobility Radeon HD 3400 Series (Microsoft Corporation- WDDM v1.1)
 ATI Technologies Inc. ATI Mobility Radeon HD 3410
 ATI Technologies Inc. ATI Mobility Radeon HD 3430
 ATI Technologies Inc. ATI Mobility Radeon HD 3430
-ATI Technologies Inc. ATI Mobility Radeon HD 3450
+ATI Technologies Inc. ATI Mobility Radeon HD 3430 (Microsoft Corporation- WDDM v1.1)
 ATI Technologies Inc. ATI Mobility Radeon HD 3450
 ATI Technologies Inc. ATI Mobility Radeon HD 3470
 ATI Technologies Inc. ATI Mobility Radeon HD 3470
 ATI Technologies Inc. ATI Mobility Radeon HD 3470 Hybrid X2
+ATI Technologies Inc. ATI Mobility Radeon HD 3470 Series
 ATI Technologies Inc. ATI Mobility Radeon HD 3650
 ATI Technologies Inc. ATI Mobility Radeon HD 3650
 ATI Technologies Inc. ATI Mobility Radeon HD 3670
+ATI Technologies Inc. ATI Mobility Radeon HD 3850
+ATI Technologies Inc. ATI Mobility Radeon HD 3870
+ATI Technologies Inc. ATI Mobility Radeon HD 3870 X2
+ATI Technologies Inc. ATI Mobility Radeon HD 4200
 ATI Technologies Inc. ATI Mobility Radeon HD 4200
 ATI Technologies Inc. ATI Mobility Radeon HD 4200
 ATI Technologies Inc. ATI Mobility Radeon HD 4200 Series
 ATI Technologies Inc. ATI Mobility Radeon HD 4200 Series
+ATI Technologies Inc. ATI Mobility Radeon HD 4200 Series (Microsoft Corporation - WDDM v1.1)
 ATI Technologies Inc. ATI Mobility Radeon HD 4225
 ATI Technologies Inc. ATI Mobility Radeon HD 4225 Series
-ATI Technologies Inc. ATI Mobility Radeon HD 4225 Series
 ATI Technologies Inc. ATI Mobility Radeon HD 4250
 ATI Technologies Inc. ATI Mobility Radeon HD 4250
 ATI Technologies Inc. ATI Mobility Radeon HD 4250 Graphics
 ATI Technologies Inc. ATI Mobility Radeon HD 4250 Graphics
 ATI Technologies Inc. ATI Mobility Radeon HD 4250 Series
 ATI Technologies Inc. ATI Mobility Radeon HD 4270
+ATI Technologies Inc. ATI Mobility Radeon HD 4270 Series
 ATI Technologies Inc. ATI Mobility Radeon HD 4300 Series
 ATI Technologies Inc. ATI Mobility Radeon HD 4300 Series
 ATI Technologies Inc. ATI Mobility Radeon HD 4300/4500 Series
-ATI Technologies Inc. ATI Mobility Radeon HD 4300/4500 Series
 ATI Technologies Inc. ATI Mobility Radeon HD 4330
 ATI Technologies Inc. ATI Mobility Radeon HD 4330
 ATI Technologies Inc. ATI Mobility Radeon HD 4330 Series
 ATI Technologies Inc. ATI Mobility Radeon HD 4350
 ATI Technologies Inc. ATI Mobility Radeon HD 4350 Series
-ATI Technologies Inc. ATI Mobility Radeon HD 4350 Series
 ATI Technologies Inc. ATI Mobility Radeon HD 4500 Series
 ATI Technologies Inc. ATI Mobility Radeon HD 4500 Series
+ATI Technologies Inc. ATI Mobility Radeon HD 4500 Series (Microsoft Corporation - WDDM v1.1)
+ATI Technologies Inc. ATI Mobility Radeon HD 4500 Series (Microsoft Corporation WDDM 1.1)
 ATI Technologies Inc. ATI Mobility Radeon HD 4500/5100 Series
 ATI Technologies Inc. ATI Mobility Radeon HD 4500/5100 Series
 ATI Technologies Inc. ATI Mobility Radeon HD 4530
-ATI Technologies Inc. ATI Mobility Radeon HD 4530
 ATI Technologies Inc. ATI Mobility Radeon HD 4530 Series
 ATI Technologies Inc. ATI Mobility Radeon HD 4530 Series
 ATI Technologies Inc. ATI Mobility Radeon HD 4550
-ATI Technologies Inc. ATI Mobility Radeon HD 4550
 ATI Technologies Inc. ATI Mobility Radeon HD 4570
 ATI Technologies Inc. ATI Mobility Radeon HD 4570
 ATI Technologies Inc. ATI Mobility Radeon HD 4600 Series
-ATI Technologies Inc. ATI Mobility Radeon HD 4600 Series
 ATI Technologies Inc. ATI Mobility Radeon HD 4650
 ATI Technologies Inc. ATI Mobility Radeon HD 4650
-ATI Technologies Inc. ATI Mobility Radeon HD 4650 Series
+ATI Technologies Inc. ATI Mobility Radeon HD 4650 (Microsoft Corporation - WDDM v1.1)
+ATI Technologies Inc. ATI Mobility Radeon HD 4650 (Microsoft Corporation- WDDM v1.1)
 ATI Technologies Inc. ATI Mobility Radeon HD 4650 Series
 ATI Technologies Inc. ATI Mobility Radeon HD 4670
-ATI Technologies Inc. ATI Mobility Radeon HD 4670
+ATI Technologies Inc. ATI Mobility Radeon HD 4670 (Microsoft Corporation - WDDM v1.1)
+ATI Technologies Inc. ATI Mobility Radeon HD 4830
 ATI Technologies Inc. ATI Mobility Radeon HD 4830 Series
 ATI Technologies Inc. ATI Mobility Radeon HD 4850
 ATI Technologies Inc. ATI Mobility Radeon HD 4870
-ATI Technologies Inc. ATI Mobility Radeon HD 4870
 ATI Technologies Inc. ATI Mobility Radeon HD 5000
 ATI Technologies Inc. ATI Mobility Radeon HD 5000
 ATI Technologies Inc. ATI Mobility Radeon HD 5000 Series
 ATI Technologies Inc. ATI Mobility Radeon HD 5000 Series
+ATI Technologies Inc. ATI Mobility Radeon HD 5000 Series
+ATI Technologies Inc. ATI Mobility Radeon HD 5000 Series
+ATI Technologies Inc. ATI Mobility Radeon HD 5000 Series (Engineering Sample - WDDM v1.20)
+ATI Technologies Inc. ATI Mobility Radeon HD 5000 Series (Microsoft Corporation - WDDM v1.2)
+ATI Technologies Inc. ATI Mobility Radeon HD 5000 Series (Microsoft Corporation - WDDM v1.20)
+ATI Technologies Inc. ATI Mobility Radeon HD 5000 Series (Microsoft Corporation - WDDM v1.20)
+ATI Technologies Inc. ATI Mobility Radeon HD 5100
 ATI Technologies Inc. ATI Mobility Radeon HD 5145
 ATI Technologies Inc. ATI Mobility Radeon HD 5145
 ATI Technologies Inc. ATI Mobility Radeon HD 5165
 ATI Technologies Inc. ATI Mobility Radeon HD 5165
 ATI Technologies Inc. ATI Mobility Radeon HD 530v
 ATI Technologies Inc. ATI Mobility Radeon HD 530v
+ATI Technologies Inc. ATI Mobility Radeon HD 5400
 ATI Technologies Inc. ATI Mobility Radeon HD 5400 Series
 ATI Technologies Inc. ATI Mobility Radeon HD 5400 Series
 ATI Technologies Inc. ATI Mobility Radeon HD 540v
 ATI Technologies Inc. ATI Mobility Radeon HD 5430
-ATI Technologies Inc. ATI Mobility Radeon HD 5430
 ATI Technologies Inc. ATI Mobility Radeon HD 5450
-ATI Technologies Inc. ATI Mobility Radeon HD 5450
-ATI Technologies Inc. ATI Mobility Radeon HD 5450 Series
 ATI Technologies Inc. ATI Mobility Radeon HD 5450 Series
 ATI Technologies Inc. ATI Mobility Radeon HD 545v
 ATI Technologies Inc. ATI Mobility Radeon HD 545v
 ATI Technologies Inc. ATI Mobility Radeon HD 5470
 ATI Technologies Inc. ATI Mobility Radeon HD 5470
 ATI Technologies Inc. ATI Mobility Radeon HD 550v
-ATI Technologies Inc. ATI Mobility Radeon HD 550v
-ATI Technologies Inc. ATI Mobility Radeon HD 5600/5700 Series
+ATI Technologies Inc. ATI Mobility Radeon HD 5570
 ATI Technologies Inc. ATI Mobility Radeon HD 5600/5700 Series
 ATI Technologies Inc. ATI Mobility Radeon HD 560v
 ATI Technologies Inc. ATI Mobility Radeon HD 5650
 ATI Technologies Inc. ATI Mobility Radeon HD 5650
-ATI Technologies Inc. ATI Mobility Radeon HD 5700 Series
+ATI Technologies Inc. ATI Mobility Radeon HD 565v
 ATI Technologies Inc. ATI Mobility Radeon HD 5700 Series
 ATI Technologies Inc. ATI Mobility Radeon HD 5730
-ATI Technologies Inc. ATI Mobility Radeon HD 5730
 ATI Technologies Inc. ATI Mobility Radeon HD 5800 Series
 ATI Technologies Inc. ATI Mobility Radeon HD 5800 Series
+ATI Technologies Inc. ATI Mobility Radeon HD 5800 Series (Microsoft Corporation - WDDM v1.20)
 ATI Technologies Inc. ATI Mobility Radeon HD 5830 Series
 ATI Technologies Inc. ATI Mobility Radeon HD 5850
 ATI Technologies Inc. ATI Mobility Radeon HD 5850
 ATI Technologies Inc. ATI Mobility Radeon HD 5870
-ATI Technologies Inc. ATI Mobility Radeon HD 5870
-ATI Technologies Inc. ATI Mobility Radeon HD 6300 series
-ATI Technologies Inc. ATI Mobility Radeon HD 6300 series
 ATI Technologies Inc. ATI Mobility Radeon HD 6370
 ATI Technologies Inc. ATI Mobility Radeon HD 6370
-ATI Technologies Inc. ATI Mobility Radeon HD 6470M
+ATI Technologies Inc. ATI Mobility Radeon HD 6550
 ATI Technologies Inc. ATI Mobility Radeon HD 6550
 ATI Technologies Inc. ATI Mobility Radeon HD 6550
 ATI Technologies Inc. ATI Mobility Radeon HD 6570
 ATI Technologies Inc. ATI Mobility Radeon HD 6570
 ATI Technologies Inc. ATI Mobility Radeon X1300
-ATI Technologies Inc. ATI Mobility Radeon X1300
+ATI Technologies Inc. ATI Mobility Radeon X1300 (Omega 3.8.252) x86/SSE2
 ATI Technologies Inc. ATI Mobility Radeon X1300 x86/MMX/3DNow!/SSE2
 ATI Technologies Inc. ATI Mobility Radeon X1300 x86/SSE2
-ATI Technologies Inc. ATI Mobility Radeon X1300 x86/SSE2
 ATI Technologies Inc. ATI Mobility Radeon X1350
 ATI Technologies Inc. ATI Mobility Radeon X1350 x86/SSE2
 ATI Technologies Inc. ATI Mobility Radeon X1400
-ATI Technologies Inc. ATI Mobility Radeon X1400
+ATI Technologies Inc. ATI Mobility Radeon X1400 (Omega 3.8.442)
+ATI Technologies Inc. ATI Mobility Radeon X1400 x86
 ATI Technologies Inc. ATI Mobility Radeon X1400 x86/SSE2
-ATI Technologies Inc. ATI Mobility Radeon X1400 x86/SSE2
-ATI Technologies Inc. ATI Mobility Radeon X1600
+ATI Technologies Inc. ATI Mobility Radeon X1450 x86/SSE2
 ATI Technologies Inc. ATI Mobility Radeon X1600
+ATI Technologies Inc. ATI Mobility Radeon X1600 x86/MMX/3DNow!/SSE2
 ATI Technologies Inc. ATI Mobility Radeon X1600 x86/SSE2
-ATI Technologies Inc. ATI Mobility Radeon X1600 x86/SSE2
+ATI Technologies Inc. ATI Mobility Radeon X1700
+ATI Technologies Inc. ATI Mobility Radeon X1700 x86
 ATI Technologies Inc. ATI Mobility Radeon X1700 x86/SSE2
+ATI Technologies Inc. ATI Mobility Radeon X1800 x86/SSE2
+ATI Technologies Inc. ATI Mobility Radeon X1900
 ATI Technologies Inc. ATI Mobility Radeon X2300
 ATI Technologies Inc. ATI Mobility Radeon X2300
-ATI Technologies Inc. ATI Mobility Radeon X2300 (Omega 3.8.442)
-ATI Technologies Inc. ATI Mobility Radeon X2300 x86
-ATI Technologies Inc. ATI Mobility Radeon X2300 x86
+ATI Technologies Inc. ATI Mobility Radeon X2300 x86/MMX/3DNow!
 ATI Technologies Inc. ATI Mobility Radeon X2300 x86/MMX/3DNow!/SSE2
-ATI Technologies Inc. ATI Mobility Radeon X2300 x86/MMX/3DNow!/SSE2
-ATI Technologies Inc. ATI Mobility Radeon X2300 x86/SSE2
 ATI Technologies Inc. ATI Mobility Radeon X2300 x86/SSE2
 ATI Technologies Inc. ATI Mobility Radeon X2500
-ATI Technologies Inc. ATI Mobility Radeon X2500
-ATI Technologies Inc. ATI Mobility Radeon X2500 x86/SSE2
-ATI Technologies Inc. ATI Mobility Radeon. HD 530v
 ATI Technologies Inc. ATI Mobility Radeon. HD 530v
 ATI Technologies Inc. ATI Mobility Radeon. HD 5470
-ATI Technologies Inc. ATI Mobility Radeon. HD 5470
-ATI Technologies Inc. ATI RADEON HD 3200 T25XX by CAMILO
+ATI Technologies Inc. ATI RADEON 9600 Series
+ATI Technologies Inc. ATI RADEON 9600/X1050 Series
+ATI Technologies Inc. ATI RADEON E4690
+ATI Technologies Inc. ATI RADEON HD 3200 Graphics
 ATI Technologies Inc. ATI RADEON XPRESS 1100
+ATI Technologies Inc. ATI RADEON XPRESS 1100 Series
+ATI Technologies Inc. ATI RADEON XPRESS 1100 Series
 ATI Technologies Inc. ATI RADEON XPRESS 1100 x86/SSE2
+ATI Technologies Inc. ATI RADEON XPRESS 1200 Series
+ATI Technologies Inc. ATI RADEON XPRESS 200
 ATI Technologies Inc. ATI RADEON XPRESS 200 Series
 ATI Technologies Inc. ATI RADEON XPRESS 200 Series
 ATI Technologies Inc. ATI RADEON XPRESS 200 Series x86/SSE2
+ATI Technologies Inc. ATI RADEON XPRESS 200 x86/MMX/3DNow!/SSE2
 ATI Technologies Inc. ATI RADEON XPRESS 200M SERIES
-ATI Technologies Inc. ATI Radeon
+ATI Technologies Inc. ATI RADEON XPRESS 200M Series
+ATI Technologies Inc. ATI RADEON XPRESS 200M Series (Microsoft Corporation)
+ATI Technologies Inc. ATI RADEON XPRESS 200M Series (Omega 3.8.421) x86/SSE2
+ATI Technologies Inc. ATI RADEON XPRESS 200M Series x86/SSE2
 ATI Technologies Inc. ATI Radeon 2100
-ATI Technologies Inc. ATI Radeon 2100
-ATI Technologies Inc. ATI Radeon 2100 (Microsoft - WDDM)
+ATI Technologies Inc. ATI Radeon 2100 (Microsoft Corporation - WDDM)
+ATI Technologies Inc. ATI Radeon 2100 (Microsoft Corporation - WDDM)
 ATI Technologies Inc. ATI Radeon 2100 Graphics
 ATI Technologies Inc. ATI Radeon 3000
-ATI Technologies Inc. ATI Radeon 3000
 ATI Technologies Inc. ATI Radeon 3000 Graphics
 ATI Technologies Inc. ATI Radeon 3000 Graphics
+ATI Technologies Inc. ATI Radeon 3000 Graphics
+ATI Technologies Inc. ATI Radeon 3000 Graphics (Engineering Sample - WDDM v1.1)
+ATI Technologies Inc. ATI Radeon 3000 Series Graphics
 ATI Technologies Inc. ATI Radeon 3100 Graphics
 ATI Technologies Inc. ATI Radeon 3100 Graphics
-ATI Technologies Inc. ATI Radeon 5xxx series
+ATI Technologies Inc. ATI Radeon 3100 Graphics (Microsoft Corporation WDDM 1.1)
+ATI Technologies Inc. ATI Radeon 3100 Series Graphics
+ATI Technologies Inc. ATI Radeon 9550 / X1050
 ATI Technologies Inc. ATI Radeon 9550 / X1050 Series
-ATI Technologies Inc. ATI Radeon 9550 / X1050 Series x86/MMX/3DNow!/SSE
 ATI Technologies Inc. ATI Radeon 9550 / X1050 Series x86/SSE2
-ATI Technologies Inc. ATI Radeon 9550 / X1050 Series(Microsoft - WDDM)
+ATI Technologies Inc. ATI Radeon 9550 / X1050 Series(Microsoft Corporation - WDDM)
 ATI Technologies Inc. ATI Radeon 9600 / X1050 Series
+ATI Technologies Inc. ATI Radeon 9600 / X1050 Series x86/SSE2
 ATI Technologies Inc. ATI Radeon 9600/9550/X1050 Series
 ATI Technologies Inc. ATI Radeon BA Prototype OpenGL Engine
-ATI Technologies Inc. ATI Radeon BB Prototype OpenGL Engine
-ATI Technologies Inc. ATI Radeon Broadway XT Prototype OpenGL Engine
+ATI Technologies Inc. ATI Radeon BA Prototype OpenGL Engine
+ATI Technologies Inc. ATI Radeon Barts PRO Prototype OpenGL Engine
+ATI Technologies Inc. ATI Radeon Barts PRO Prototype OpenGL Engine
+ATI Technologies Inc. ATI Radeon Barts PRO Prototype OpenGL Engine
+ATI Technologies Inc. ATI Radeon Barts XT Prototype OpenGL Engine
+ATI Technologies Inc. ATI Radeon Barts XT Prototype OpenGL Engine
+ATI Technologies Inc. ATI Radeon Caicos PRO Prototype OpenGL Engine
+ATI Technologies Inc. ATI Radeon Caicos Unknown Prototype OpenGL Engine
 ATI Technologies Inc. ATI Radeon Cedar PRO Prototype OpenGL Engine
-ATI Technologies Inc. ATI Radeon Cypress PRO Prototype OpenGL Engine
-ATI Technologies Inc. ATI Radeon Graphics Processor
 ATI Technologies Inc. ATI Radeon Graphics Processor
-ATI Technologies Inc. ATI Radeon HD 2200 Graphics
 ATI Technologies Inc. ATI Radeon HD 2350
 ATI Technologies Inc. ATI Radeon HD 2400
-ATI Technologies Inc. ATI Radeon HD 2400
 ATI Technologies Inc. ATI Radeon HD 2400 OpenGL Engine
 ATI Technologies Inc. ATI Radeon HD 2400 OpenGL Engine
+ATI Technologies Inc. ATI Radeon HD 2400 PCI
 ATI Technologies Inc. ATI Radeon HD 2400 PRO
 ATI Technologies Inc. ATI Radeon HD 2400 PRO AGP
 ATI Technologies Inc. ATI Radeon HD 2400 Pro
-ATI Technologies Inc. ATI Radeon HD 2400 Pro
 ATI Technologies Inc. ATI Radeon HD 2400 Series
-ATI Technologies Inc. ATI Radeon HD 2400 Series
-ATI Technologies Inc. ATI Radeon HD 2400 XT
+ATI Technologies Inc. ATI Radeon HD 2400 Series AGP
 ATI Technologies Inc. ATI Radeon HD 2400 XT
 ATI Technologies Inc. ATI Radeon HD 2400 XT OpenGL Engine
 ATI Technologies Inc. ATI Radeon HD 2400 XT OpenGL Engine
+ATI Technologies Inc. ATI Radeon HD 2400 XT OpenGL Engine
 ATI Technologies Inc. ATI Radeon HD 2600 OpenGL Engine
 ATI Technologies Inc. ATI Radeon HD 2600 PRO
 ATI Technologies Inc. ATI Radeon HD 2600 PRO OpenGL Engine
 ATI Technologies Inc. ATI Radeon HD 2600 PRO OpenGL Engine
 ATI Technologies Inc. ATI Radeon HD 2600 Pro
-ATI Technologies Inc. ATI Radeon HD 2600 Pro
+ATI Technologies Inc. ATI Radeon HD 2600 Pro AGP
 ATI Technologies Inc. ATI Radeon HD 2600 Series
+ATI Technologies Inc. ATI Radeon HD 2600 Series AGP
 ATI Technologies Inc. ATI Radeon HD 2600 XT
-ATI Technologies Inc. ATI Radeon HD 2600 XT
+ATI Technologies Inc. ATI Radeon HD 2600/3600 Series
 ATI Technologies Inc. ATI Radeon HD 2900 GT
+ATI Technologies Inc. ATI Radeon HD 2900 PRO
 ATI Technologies Inc. ATI Radeon HD 2900 XT
 ATI Technologies Inc. ATI Radeon HD 3200 Graphics
 ATI Technologies Inc. ATI Radeon HD 3200 Graphics
+ATI Technologies Inc. ATI Radeon HD 3200 Graphics (Microsoft Corporation - WDDM v1.1)
+ATI Technologies Inc. ATI Radeon HD 3200 Graphics (Microsoft Corporation WDDM 1.1)
 ATI Technologies Inc. ATI Radeon HD 3300 Graphics
 ATI Technologies Inc. ATI Radeon HD 3400 Series
 ATI Technologies Inc. ATI Radeon HD 3400 Series
 ATI Technologies Inc. ATI Radeon HD 3450
 ATI Technologies Inc. ATI Radeon HD 3450
 ATI Technologies Inc. ATI Radeon HD 3450 - Dell Optiplex
-ATI Technologies Inc. ATI Radeon HD 3450 - Dell Optiplex
+ATI Technologies Inc. ATI Radeon HD 3450 AGP
 ATI Technologies Inc. ATI Radeon HD 3470
 ATI Technologies Inc. ATI Radeon HD 3470 - Dell Optiplex
-ATI Technologies Inc. ATI Radeon HD 3550
-ATI Technologies Inc. ATI Radeon HD 3550
 ATI Technologies Inc. ATI Radeon HD 3600 Series
 ATI Technologies Inc. ATI Radeon HD 3600 Series
-ATI Technologies Inc. ATI Radeon HD 3650
+ATI Technologies Inc. ATI Radeon HD 3600 Series (Microsoft Corporation - WDDM v1.1)
+ATI Technologies Inc. ATI Radeon HD 3600 Series (Microsoft Corporation WDDM 1.1)
 ATI Technologies Inc. ATI Radeon HD 3650
 ATI Technologies Inc. ATI Radeon HD 3650 AGP
-ATI Technologies Inc. ATI Radeon HD 3730
-ATI Technologies Inc. ATI Radeon HD 3800 Series
 ATI Technologies Inc. ATI Radeon HD 3800 Series
 ATI Technologies Inc. ATI Radeon HD 3850
-ATI Technologies Inc. ATI Radeon HD 3850
+ATI Technologies Inc. ATI Radeon HD 3850 (Microsoft Corporation - WDDM v1.1)
 ATI Technologies Inc. ATI Radeon HD 3850 AGP
 ATI Technologies Inc. ATI Radeon HD 3870
-ATI Technologies Inc. ATI Radeon HD 3870
+ATI Technologies Inc. ATI Radeon HD 3870 (Engineering Sample - WDDM v1.1)
+ATI Technologies Inc. ATI Radeon HD 3870 (Microsoft Corporation - WDDM v1.1)
+ATI Technologies Inc. ATI Radeon HD 3870 OpenGL Engine
+ATI Technologies Inc. ATI Radeon HD 3870 OpenGL Engine
 ATI Technologies Inc. ATI Radeon HD 3870 X2
 ATI Technologies Inc. ATI Radeon HD 4200
 ATI Technologies Inc. ATI Radeon HD 4200
+ATI Technologies Inc. ATI Radeon HD 4200 (Microsoft Corporation - WDDM v1.1)
 ATI Technologies Inc. ATI Radeon HD 4250
 ATI Technologies Inc. ATI Radeon HD 4250
+ATI Technologies Inc. ATI Radeon HD 4250 (Engineering Sample - WDDM v1.1)
+ATI Technologies Inc. ATI Radeon HD 4250 (Microsoft Corporation - WDDM v1.1)
 ATI Technologies Inc. ATI Radeon HD 4250 Graphics
 ATI Technologies Inc. ATI Radeon HD 4250 Graphics
 ATI Technologies Inc. ATI Radeon HD 4270
 ATI Technologies Inc. ATI Radeon HD 4270
 ATI Technologies Inc. ATI Radeon HD 4290
-ATI Technologies Inc. ATI Radeon HD 4290
-ATI Technologies Inc. ATI Radeon HD 4290 (Engineering Sample)
 ATI Technologies Inc. ATI Radeon HD 4300 Series
 ATI Technologies Inc. ATI Radeon HD 4300 Series
 ATI Technologies Inc. ATI Radeon HD 4300/4500 Series
 ATI Technologies Inc. ATI Radeon HD 4300/4500 Series
+ATI Technologies Inc. ATI Radeon HD 4300/4500 Series (Microsoft Corporation - WDDM v1.1)
+ATI Technologies Inc. ATI Radeon HD 4300/4500 Series (Microsoft Corporation- WDDM v1.1)
 ATI Technologies Inc. ATI Radeon HD 4350
 ATI Technologies Inc. ATI Radeon HD 4350
-ATI Technologies Inc. ATI Radeon HD 4350 (Microsoft WDDM 1.1)
-ATI Technologies Inc. ATI Radeon HD 4450
+ATI Technologies Inc. ATI Radeon HD 4350 (Microsoft Corporation WDDM 1.1)
 ATI Technologies Inc. ATI Radeon HD 4450
 ATI Technologies Inc. ATI Radeon HD 4500 Series
+ATI Technologies Inc. ATI Radeon HD 4520
 ATI Technologies Inc. ATI Radeon HD 4550
 ATI Technologies Inc. ATI Radeon HD 4550
+ATI Technologies Inc. ATI Radeon HD 4550 (Microsoft Corporation - WDDM v1.1)
+ATI Technologies Inc. ATI Radeon HD 4570
+ATI Technologies Inc. ATI Radeon HD 4580
+ATI Technologies Inc. ATI Radeon HD 4590
 ATI Technologies Inc. ATI Radeon HD 4600 Series
 ATI Technologies Inc. ATI Radeon HD 4600 Series
+ATI Technologies Inc. ATI Radeon HD 4600 Series (Engineering Sample - WDDM v1.1)
+ATI Technologies Inc. ATI Radeon HD 4600 Series (Microsoft Corporation - WDDM v1.1)
+ATI Technologies Inc. ATI Radeon HD 4600-serie (Microsoft Corporation - WDDM v1.1)
 ATI Technologies Inc. ATI Radeon HD 4650
 ATI Technologies Inc. ATI Radeon HD 4650
+ATI Technologies Inc. ATI Radeon HD 4650 (Microsoft Corporation WDDM 1.1)
 ATI Technologies Inc. ATI Radeon HD 4670
 ATI Technologies Inc. ATI Radeon HD 4670
 ATI Technologies Inc. ATI Radeon HD 4670 OpenGL Engine
 ATI Technologies Inc. ATI Radeon HD 4670 OpenGL Engine
+ATI Technologies Inc. ATI Radeon HD 4670 OpenGL Engine
+ATI Technologies Inc. ATI Radeon HD 4700
 ATI Technologies Inc. ATI Radeon HD 4700 Series
 ATI Technologies Inc. ATI Radeon HD 4700 Series
 ATI Technologies Inc. ATI Radeon HD 4720
-ATI Technologies Inc. ATI Radeon HD 4720
-ATI Technologies Inc. ATI Radeon HD 4730
 ATI Technologies Inc. ATI Radeon HD 4730
 ATI Technologies Inc. ATI Radeon HD 4730 Series
-ATI Technologies Inc. ATI Radeon HD 4730 Series
-ATI Technologies Inc. ATI Radeon HD 4750
 ATI Technologies Inc. ATI Radeon HD 4770
 ATI Technologies Inc. ATI Radeon HD 4770
+ATI Technologies Inc. ATI Radeon HD 4800
 ATI Technologies Inc. ATI Radeon HD 4800 Series
 ATI Technologies Inc. ATI Radeon HD 4800 Series
+ATI Technologies Inc. ATI Radeon HD 4800 Series (Microsoft Corporation - WDDM v1.1)
+ATI Technologies Inc. ATI Radeon HD 4810 series
+ATI Technologies Inc. ATI Radeon HD 4830
 ATI Technologies Inc. ATI Radeon HD 4850
-ATI Technologies Inc. ATI Radeon HD 4850
 ATI Technologies Inc. ATI Radeon HD 4850 OpenGL Engine
 ATI Technologies Inc. ATI Radeon HD 4850 OpenGL Engine
+ATI Technologies Inc. ATI Radeon HD 4850 OpenGL Engine
+ATI Technologies Inc. ATI Radeon HD 4850 PRO OpenGL Engine
 ATI Technologies Inc. ATI Radeon HD 4850 Series
-ATI Technologies Inc. ATI Radeon HD 4870
+ATI Technologies Inc. ATI Radeon HD 4850 X2
 ATI Technologies Inc. ATI Radeon HD 4870
 ATI Technologies Inc. ATI Radeon HD 4870 OpenGL Engine
-ATI Technologies Inc. ATI Radeon HD 4870 X2
+ATI Technologies Inc. ATI Radeon HD 4870 OpenGL Engine
+ATI Technologies Inc. ATI Radeon HD 4870 Series
 ATI Technologies Inc. ATI Radeon HD 4870 X2
 ATI Technologies Inc. ATI Radeon HD 5400 Series
 ATI Technologies Inc. ATI Radeon HD 5400 Series
 ATI Technologies Inc. ATI Radeon HD 5450
 ATI Technologies Inc. ATI Radeon HD 5450
+ATI Technologies Inc. ATI Radeon HD 5450
+ATI Technologies Inc. ATI Radeon HD 5450 (Microsoft Corporation - WDDM v1.20)
 ATI Technologies Inc. ATI Radeon HD 5470
+ATI Technologies Inc. ATI Radeon HD 5500
 ATI Technologies Inc. ATI Radeon HD 5500 Series
 ATI Technologies Inc. ATI Radeon HD 5500 Series
+ATI Technologies Inc. ATI Radeon HD 5530
 ATI Technologies Inc. ATI Radeon HD 5570
 ATI Technologies Inc. ATI Radeon HD 5570
 ATI Technologies Inc. ATI Radeon HD 5600 Series
@@ -655,16 +1274,24 @@ ATI Technologies Inc. ATI Radeon HD 5670
 ATI Technologies Inc. ATI Radeon HD 5670
 ATI Technologies Inc. ATI Radeon HD 5670 OpenGL Engine
 ATI Technologies Inc. ATI Radeon HD 5670 OpenGL Engine
+ATI Technologies Inc. ATI Radeon HD 5670 OpenGL Engine
 ATI Technologies Inc. ATI Radeon HD 5700 Series
 ATI Technologies Inc. ATI Radeon HD 5700 Series
-ATI Technologies Inc. ATI Radeon HD 5750
+ATI Technologies Inc. ATI Radeon HD 5700 Series (Microsoft Corporation - WDDM v1.2)
+ATI Technologies Inc. ATI Radeon HD 5700 Series (Microsoft Corporation - WDDM v1.20)
 ATI Technologies Inc. ATI Radeon HD 5750
 ATI Technologies Inc. ATI Radeon HD 5750 OpenGL Engine
 ATI Technologies Inc. ATI Radeon HD 5750 OpenGL Engine
+ATI Technologies Inc. ATI Radeon HD 5750 OpenGL Engine
+ATI Technologies Inc. ATI Radeon HD 5750 OpenGL Engine
+ATI Technologies Inc. ATI Radeon HD 5750 Series
 ATI Technologies Inc. ATI Radeon HD 5770
 ATI Technologies Inc. ATI Radeon HD 5770
 ATI Technologies Inc. ATI Radeon HD 5770 OpenGL Engine
 ATI Technologies Inc. ATI Radeon HD 5770 OpenGL Engine
+ATI Technologies Inc. ATI Radeon HD 5770 OpenGL Engine
+ATI Technologies Inc. ATI Radeon HD 5770 OpenGL Engine
+ATI Technologies Inc. ATI Radeon HD 5800 Series
 ATI Technologies Inc. ATI Radeon HD 5800 Series
 ATI Technologies Inc. ATI Radeon HD 5800 Series
 ATI Technologies Inc. ATI Radeon HD 5850
@@ -672,343 +1299,492 @@ ATI Technologies Inc. ATI Radeon HD 5850
 ATI Technologies Inc. ATI Radeon HD 5870
 ATI Technologies Inc. ATI Radeon HD 5870 OpenGL Engine
 ATI Technologies Inc. ATI Radeon HD 5870 OpenGL Engine
+ATI Technologies Inc. ATI Radeon HD 5870 OpenGL Engine
 ATI Technologies Inc. ATI Radeon HD 5900 Series
 ATI Technologies Inc. ATI Radeon HD 5900 Series
 ATI Technologies Inc. ATI Radeon HD 5970
 ATI Technologies Inc. ATI Radeon HD 6230
 ATI Technologies Inc. ATI Radeon HD 6230
-ATI Technologies Inc. ATI Radeon HD 6250
-ATI Technologies Inc. ATI Radeon HD 6250
+ATI Technologies Inc. ATI Radeon HD 6290
 ATI Technologies Inc. ATI Radeon HD 6350
 ATI Technologies Inc. ATI Radeon HD 6390
+ATI Technologies Inc. ATI Radeon HD 6490
+ATI Technologies Inc. ATI Radeon HD 6490M OpenGL Engine
 ATI Technologies Inc. ATI Radeon HD 6490M OpenGL Engine
 ATI Technologies Inc. ATI Radeon HD 6490M OpenGL Engine
 ATI Technologies Inc. ATI Radeon HD 6510
 ATI Technologies Inc. ATI Radeon HD 6510
 ATI Technologies Inc. ATI Radeon HD 6570M
-ATI Technologies Inc. ATI Radeon HD 6570M
 ATI Technologies Inc. ATI Radeon HD 6630M OpenGL Engine
-ATI Technologies Inc. ATI Radeon HD 6750
+ATI Technologies Inc. ATI Radeon HD 6630M OpenGL Engine
+ATI Technologies Inc. ATI Radeon HD 6630M OpenGL Engine
+ATI Technologies Inc. ATI Radeon HD 6750M OpenGL Engine
 ATI Technologies Inc. ATI Radeon HD 6750M OpenGL Engine
 ATI Technologies Inc. ATI Radeon HD 6750M OpenGL Engine
 ATI Technologies Inc. ATI Radeon HD 6770
 ATI Technologies Inc. ATI Radeon HD 6770
 ATI Technologies Inc. ATI Radeon HD 6770M OpenGL Engine
 ATI Technologies Inc. ATI Radeon HD 6770M OpenGL Engine
-ATI Technologies Inc. ATI Radeon HD 6800 Series
+ATI Technologies Inc. ATI Radeon HD 6770M OpenGL Engine
+ATI Technologies Inc. ATI Radeon HD 6970M OpenGL Engine
 ATI Technologies Inc. ATI Radeon HD 6970M OpenGL Engine
 ATI Technologies Inc. ATI Radeon HD 6970M OpenGL Engine
+ATI Technologies Inc. ATI Radeon HD 7350
+ATI Technologies Inc. ATI Radeon HD 7350
+ATI Technologies Inc. ATI Radeon HD 7950 OpenGL Engine
+ATI Technologies Inc. ATI Radeon HD 7950 OpenGL Engine
+ATI Technologies Inc. ATI Radeon HD 7950 OpenGL Engine
+ATI Technologies Inc. ATI Radeon HD Pitcairn XT Prototype OpenGL Engine
+ATI Technologies Inc. ATI Radeon HD Tahiti XT Prototype OpenGL Engine
+ATI Technologies Inc. ATI Radeon HD Tahiti XT Prototype OpenGL Engine
+ATI Technologies Inc. ATI Radeon HD Verde XT Prototype OpenGL Engine
 ATI Technologies Inc. ATI Radeon HD3750
 ATI Technologies Inc. ATI Radeon HD4300/HD4500 series
 ATI Technologies Inc. ATI Radeon HD4300/HD4500 series
+ATI Technologies Inc. ATI Radeon HD4650
 ATI Technologies Inc. ATI Radeon HD4670
 ATI Technologies Inc. ATI Radeon HD4670
-ATI Technologies Inc. ATI Radeon Juniper LE Prototype OpenGL Engine
-ATI Technologies Inc. ATI Radeon RV710 Prototype OpenGL Engine
 ATI Technologies Inc. ATI Radeon RV730 Prototype OpenGL Engine
-ATI Technologies Inc. ATI Radeon RV770 Prototype OpenGL Engine
 ATI Technologies Inc. ATI Radeon RV790 Prototype OpenGL Engine
 ATI Technologies Inc. ATI Radeon RV790 Prototype OpenGL Engine
-ATI Technologies Inc. ATI Radeon Redwood PRO Prototype OpenGL Engine
+ATI Technologies Inc. ATI Radeon RV790 Prototype OpenGL Engine
 ATI Technologies Inc. ATI Radeon Redwood XT Prototype OpenGL Engine
-ATI Technologies Inc. ATI Radeon Whistler PRO/LP Prototype OpenGL Engine
+ATI Technologies Inc. ATI Radeon Turks PRO Prototype OpenGL Engine
+ATI Technologies Inc. ATI Radeon Turks XT Prototype OpenGL Engine
+ATI Technologies Inc. ATI Radeon Turks XT Prototype OpenGL Engine
 ATI Technologies Inc. ATI Radeon X1050
 ATI Technologies Inc. ATI Radeon X1050 Series
+ATI Technologies Inc. ATI Radeon X1050 x86/MMX/3DNow!/SSE2
+ATI Technologies Inc. ATI Radeon X1050 x86/SSE2
 ATI Technologies Inc. ATI Radeon X1200
 ATI Technologies Inc. ATI Radeon X1200
 ATI Technologies Inc. ATI Radeon X1200 Series
 ATI Technologies Inc. ATI Radeon X1200 Series
+ATI Technologies Inc. ATI Radeon X1200 Series (Microsoft Corporation - WDDM)
 ATI Technologies Inc. ATI Radeon X1200 Series x86/MMX/3DNow!/SSE2
-ATI Technologies Inc. ATI Radeon X1200 Series x86/MMX/3DNow!/SSE2
+ATI Technologies Inc. ATI Radeon X1200 x86/MMX/3DNow!/SSE2
+ATI Technologies Inc. ATI Radeon X1250
 ATI Technologies Inc. ATI Radeon X1250
 ATI Technologies Inc. ATI Radeon X1250
 ATI Technologies Inc. ATI Radeon X1250 x86/MMX/3DNow!/SSE2
 ATI Technologies Inc. ATI Radeon X1270
-ATI Technologies Inc. ATI Radeon X1270
-ATI Technologies Inc. ATI Radeon X1270 x86/MMX/3DNow!/SSE2
 ATI Technologies Inc. ATI Radeon X1270 x86/MMX/3DNow!/SSE2
+ATI Technologies Inc. ATI Radeon X1300 / X1550 Series
 ATI Technologies Inc. ATI Radeon X1300/X1550 Series
+ATI Technologies Inc. ATI Radeon X1550
 ATI Technologies Inc. ATI Radeon X1550 Series
-ATI Technologies Inc. ATI Radeon X1550 Series
+ATI Technologies Inc. ATI Radeon X1550 Series x86/MMX/3DNow!/SSE2
+ATI Technologies Inc. ATI Radeon X1550 Series x86/SSE2
+ATI Technologies Inc. ATI Radeon X1550 x86/MMX/3DNow!/SSE2
+ATI Technologies Inc. ATI Radeon X1550 x86/SSE2
+ATI Technologies Inc. ATI Radeon X1600 OpenGL Engine
 ATI Technologies Inc. ATI Radeon X1600 OpenGL Engine
 ATI Technologies Inc. ATI Radeon X1600 OpenGL Engine
-ATI Technologies Inc. ATI Radeon X1900 OpenGL Engine
 ATI Technologies Inc. ATI Radeon X1900 OpenGL Engine
 ATI Technologies Inc. ATI Radeon X1950 GT
+ATI Technologies Inc. ATI Radeon X1950 GT x86/MMX/3DNow!/SSE2
+ATI Technologies Inc. ATI Radeon X1950 GT x86/SSE2
 ATI Technologies Inc. ATI Radeon X300/X550/X1050 Series
 ATI Technologies Inc. ATI Radeon X300/X550/X1050 Series
+ATI Technologies Inc. ATI Radeon X600/X550/X1050 Series
 ATI Technologies Inc. ATI Radeon Xpress 1100
+ATI Technologies Inc. ATI Radeon Xpress 1100 x86/SSE2
 ATI Technologies Inc. ATI Radeon Xpress 1150
-ATI Technologies Inc. ATI Radeon Xpress 1150
+ATI Technologies Inc. ATI Radeon Xpress 1150 Series
+ATI Technologies Inc. ATI Radeon Xpress 1150 Series
 ATI Technologies Inc. ATI Radeon Xpress 1150 x86/MMX/3DNow!/SSE2
-ATI Technologies Inc. ATI Radeon Xpress 1200
-ATI Technologies Inc. ATI Radeon Xpress 1200
-ATI Technologies Inc. ATI Radeon Xpress 1200 Series
 ATI Technologies Inc. ATI Radeon Xpress 1200 Series
-ATI Technologies Inc. ATI Radeon Xpress 1200 Series x86/MMX/3DNow!/SSE2
+ATI Technologies Inc. ATI Radeon Xpress 1200 Series (Microsoft Corporation - WDDM)
 ATI Technologies Inc. ATI Radeon Xpress 1200 Series x86/MMX/3DNow!/SSE2
 ATI Technologies Inc. ATI Radeon Xpress 1200 x86/MMX/3DNow!/SSE2
-ATI Technologies Inc. ATI Radeon Xpress 1250
+ATI Technologies Inc. ATI Radeon Xpress 1200 x86/MMX/3DNow!/SSE2
 ATI Technologies Inc. ATI Radeon Xpress 1250
 ATI Technologies Inc. ATI Radeon Xpress 1250 x86/MMX/3DNow!/SSE2
 ATI Technologies Inc. ATI Radeon Xpress 1250 x86/SSE2
-ATI Technologies Inc. ATI Radeon Xpress Series
+ATI Technologies Inc. ATI Radeon Xpress 1270 x86/MMX/3DNow!/SSE2
 ATI Technologies Inc. ATI Radeon Xpress Series
 ATI Technologies Inc. ATI Radeon Xpress Series x86/MMX/3DNow!/SSE2
-ATI Technologies Inc. ATI Yamaha HD 9000
-ATI Technologies Inc. ATi RS880M
-ATI Technologies Inc. ATi RS880M
-ATI Technologies Inc. Carte graphique VGA standard
+ATI Technologies Inc. All-in-Wonder 2006 PCI-E Edition
+ATI Technologies Inc. All-in-Wonder 2006 PCI-E Edition x86/MMX/3DNow!/SSE2
+ATI Technologies Inc. Diamond Radeon X1550
 ATI Technologies Inc. Diamond Radeon X1550 Series
-ATI Technologies Inc. EG JUNIPER
-ATI Technologies Inc. EG PARK
+ATI Technologies Inc. Diamond Radeon X1550 Series x86/SSE2
+ATI Technologies Inc. Diamond Radeon X1550 x86/SSE2
+ATI Technologies Inc. Diamond X1600 PRO 512MB PCI-E x86/MMX/3DNow!/SSE2
 ATI Technologies Inc. FireGL V3100 Pentium 4 (SSE2)
+ATI Technologies Inc. FireGL V3200 Pentium 4 (SSE2)
+ATI Technologies Inc. FireGL X1-128
 ATI Technologies Inc. FireMV 2400 PCI DDR x86
 ATI Technologies Inc. FireMV 2400 PCI DDR x86/SSE2
-ATI Technologies Inc. FireMV 2400 PCI DDR x86/SSE2
+ATI Technologies Inc. FirePro M3900 Mobility Professional Graphics
+ATI Technologies Inc. GIGABYTE RADEON 9600 PRO
+ATI Technologies Inc. GIGABYTE Radeon X1300 Pro
+ATI Technologies Inc. GIGABYTE Radeon X1300 Series
+ATI Technologies Inc. GIGABYTE Radeon X1600 PRO
+ATI Technologies Inc. GeCube RADEON 9600XT
+ATI Technologies Inc. GeCube RADEON X550 x86/SSE2
+ATI Technologies Inc. GeCube RADEON X700 Series
 ATI Technologies Inc. GeCube Radeon X1550
-ATI Technologies Inc. GeForce 9600 GT      x86/SSE2
-ATI Technologies Inc. Geforce 9500 GT
-ATI Technologies Inc. Geforce 9500GT
-ATI Technologies Inc. Geforce 9800 GT
+ATI Technologies Inc. GeCube Radeon X1550 Series
+ATI Technologies Inc. GeCube Radeon X1550 Series
+ATI Technologies Inc. GeForce 9600 GT x86/SSE2
+ATI Technologies Inc. GigaByte Radeon X1050
+ATI Technologies Inc. Gigabyte RADEON X300
+ATI Technologies Inc. Gigabyte RADEON X300
+ATI Technologies Inc. Gigabyte RADEON X300 SE
+ATI Technologies Inc. Gigabyte RADEON X300 x86/SSE2
 ATI Technologies Inc. HD3730
 ATI Technologies Inc. HIGHTECH EXCALIBUR RADEON 9550SE Series
-ATI Technologies Inc. HIGHTECH EXCALIBUR X700 PRO
-ATI Technologies Inc. M21 x86/MMX/3DNow!/SSE2
-ATI Technologies Inc. M76M
+ATI Technologies Inc. HIGHTECH EXCALIBUR RADEON 9550SE Series x86/SSE2
+ATI Technologies Inc. HIGHTECH RADEON 9600XT
+ATI Technologies Inc. HIS Radeon X1550 x86/SSE2
+ATI Technologies Inc. M52 x86
+ATI Technologies Inc. M72-M
+ATI Technologies Inc. MEDION RADEON 9600 TX
+ATI Technologies Inc. MEDION RADEON X740XL x86/SSE2
+ATI Technologies Inc. MOBILITY FIREGL T2 Pentium 4 (SSE2)
+ATI Technologies Inc. MOBILITY RADEON 7000 IGP DDR x86/SSE2
 ATI Technologies Inc. MOBILITY RADEON 7500 DDR x86/SSE2
-ATI Technologies Inc. MOBILITY RADEON 7500 DDR x86/SSE2
-ATI Technologies Inc. MOBILITY RADEON 9000 DDR x86/SSE2
+ATI Technologies Inc. MOBILITY RADEON 9000 DDR x86
 ATI Technologies Inc. MOBILITY RADEON 9000 DDR x86/SSE2
+ATI Technologies Inc. MOBILITY RADEON 9000 IGPRADEON 9100 IGP DDR x86
 ATI Technologies Inc. MOBILITY RADEON 9000 IGPRADEON 9100 IGP DDR x86/SSE2
-ATI Technologies Inc. MOBILITY RADEON 9100 IGP DDR x86/SSE2
-ATI Technologies Inc. MOBILITY RADEON 9600 x86/SSE2
+ATI Technologies Inc. MOBILITY RADEON 9000/9100 IGP Series DDR x86/SSE2
+ATI Technologies Inc. MOBILITY RADEON 9000/9100 PRO IGP Series DDR x86/SSE2
+ATI Technologies Inc. MOBILITY RADEON 9200 DDR x86/SSE2
+ATI Technologies Inc. MOBILITY RADEON 9600 x86
+ATI Technologies Inc. MOBILITY RADEON 9600 x86/MMX/3DNow!/SSE2
 ATI Technologies Inc. MOBILITY RADEON 9600 x86/SSE2
+ATI Technologies Inc. MOBILITY RADEON 9700 x86
+ATI Technologies Inc. MOBILITY RADEON 9700 x86/MMX/3DNow!/SSE2
 ATI Technologies Inc. MOBILITY RADEON 9700 x86/SSE2
+ATI Technologies Inc. MOBILITY RADEON 9800 x86/SSE2
+ATI Technologies Inc. MOBILITY RADEON X300 x86
 ATI Technologies Inc. MOBILITY RADEON X300 x86/SSE2
 ATI Technologies Inc. MOBILITY RADEON X300 x86/SSE2
+ATI Technologies Inc. MOBILITY RADEON X600 SE x86/SSE2
+ATI Technologies Inc. MOBILITY RADEON X600 x86
 ATI Technologies Inc. MOBILITY RADEON X600 x86/SSE2
-ATI Technologies Inc. MOBILITY RADEON X600 x86/SSE2
-ATI Technologies Inc. MOBILITY RADEON X700 SE x86
-ATI Technologies Inc. MOBILITY RADEON X700 x86/SSE2
+ATI Technologies Inc. MOBILITY RADEON X700 SE x86/SSE2
+ATI Technologies Inc. MOBILITY RADEON X700 x86/MMX/3DNow!/SSE2
 ATI Technologies Inc. MOBILITY RADEON X700 x86/SSE2
 ATI Technologies Inc. MOBILITY RADEON Xpress 200 Series SW TCL x86/MMX/3DNow!/SSE2
-ATI Technologies Inc. MSI RX9550SE
-ATI Technologies Inc. MSI Radeon X1550 Series
-ATI Technologies Inc. Mobility Radeon HD 6000 series
+ATI Technologies Inc. MOBILITY/RADEON 9000 DDR x86/MMX/3DNow!/SSE2
+ATI Technologies Inc. MOBILITY/RADEON 9000 DDR x86/SSE2
+ATI Technologies Inc. MOBILITY/RADEON 9250/9200 Series DDR x86/MMX/3DNow!/SSE2
+ATI Technologies Inc. MOBILITY/RADEON 9250/9200 Series DDR x86/SSE2
+ATI Technologies Inc. MSI RX9550SE x86/MMX/3DNow!/SSE
+ATI Technologies Inc. MSI Radeon X1550
 ATI Technologies Inc. Mobility Radeon X2300 HD
-ATI Technologies Inc. Mobility Radeon X2300 HD
-ATI Technologies Inc. Mobility Radeon X2300 HD x86/SSE2
 ATI Technologies Inc. Mobility Radeon X2300 HD x86/SSE2
-ATI Technologies Inc. RADEON 7000 DDR x86/MMX/3DNow!/SSE
+ATI Technologies Inc. RADEON 7000 DDR x86/MMX/3DNow!/SSE2
 ATI Technologies Inc. RADEON 7000 DDR x86/SSE2
-ATI Technologies Inc. RADEON 7500 DDR x86/MMX/3DNow!/SSE2
-ATI Technologies Inc. RADEON 7500 DDR x86/MMX/3DNow!/SSE2
+ATI Technologies Inc. RADEON 7000 SDR x86
+ATI Technologies Inc. RADEON 7000 SW TCL x86/SSE2
+ATI Technologies Inc. RADEON 7200 DDR x86/MMX/3DNow!/SSE2
+ATI Technologies Inc. RADEON 7200 DDR x86/SSE2
+ATI Technologies Inc. RADEON 7200 SDR x86/SSE2
 ATI Technologies Inc. RADEON 7500 DDR x86/SSE2
+ATI Technologies Inc. RADEON 8500 DDR x86/MMX/3DNow!/SSE2
+ATI Technologies Inc. RADEON 8500 DDR x86/SSE2
+ATI Technologies Inc. RADEON 9000 DDR x86/MMX/3DNow!/SSE2
+ATI Technologies Inc. RADEON 9000 DDR x86/SSE2
+ATI Technologies Inc. RADEON 9000 PRO DDR x86/SSE2
+ATI Technologies Inc. RADEON 9000 XT IGPRADEON 9100 XT IGP DDR x86/SSE2
+ATI Technologies Inc. RADEON 9100 DDR x86/MMX/3DNow!/SSE2
+ATI Technologies Inc. RADEON 9100 DDR x86/SSE2
+ATI Technologies Inc. RADEON 9100 IGP DDR x86
 ATI Technologies Inc. RADEON 9100 IGP DDR x86/SSE2
-ATI Technologies Inc. RADEON 9200 DDR x86/MMX/3DNow!/SSE
+ATI Technologies Inc. RADEON 9200 DDR x86/MMX/3DNow!/SSE2
 ATI Technologies Inc. RADEON 9200 DDR x86/SSE2
-ATI Technologies Inc. RADEON 9200 PRO DDR x86/MMX/3DNow!/SSE
-ATI Technologies Inc. RADEON 9200 Series DDR x86/MMX/3DNow!/SSE
-ATI Technologies Inc. RADEON 9200 Series DDR x86/MMX/3DNow!/SSE
+ATI Technologies Inc. RADEON 9200 LE DDR x86/SSE2
+ATI Technologies Inc. RADEON 9200 PRO DDR x86/SSE2
+ATI Technologies Inc. RADEON 9200 Series DDR x86
+ATI Technologies Inc. RADEON 9200 Series DDR x86/MMX/3DNow!
 ATI Technologies Inc. RADEON 9200 Series DDR x86/MMX/3DNow!/SSE2
 ATI Technologies Inc. RADEON 9200 Series DDR x86/MMX/3DNow!/SSE2
-ATI Technologies Inc. RADEON 9200 Series DDR x86/SSE
-ATI Technologies Inc. RADEON 9200 Series DDR x86/SSE
 ATI Technologies Inc. RADEON 9200 Series DDR x86/SSE2
 ATI Technologies Inc. RADEON 9200 Series DDR x86/SSE2
 ATI Technologies Inc. RADEON 9200SE DDR x86/MMX/3DNow!/SSE2
 ATI Technologies Inc. RADEON 9200SE DDR x86/SSE2
-ATI Technologies Inc. RADEON 9250/9200 Series DDR x86/MMX/3DNow!/SSE
-ATI Technologies Inc. RADEON 9250/9200 Series DDR x86/MMX/3DNow!/SSE
+ATI Technologies Inc. RADEON 9200SE DDR x86/SSE2
+ATI Technologies Inc. RADEON 9250/9000 Series DDR x86/MMX/3DNow!/SSE2
 ATI Technologies Inc. RADEON 9250/9200 Series DDR x86/MMX/3DNow!/SSE2
 ATI Technologies Inc. RADEON 9250/9200 Series DDR x86/SSE2
-ATI Technologies Inc. RADEON 9250/9200 Series DDR x86/SSE2
 ATI Technologies Inc. RADEON 9500
+ATI Technologies Inc. RADEON 9500 PRO / 9700
+ATI Technologies Inc. RADEON 9550
+ATI Technologies Inc. RADEON 9550 x86/MMX/3DNow!/SSE2
 ATI Technologies Inc. RADEON 9550 x86/SSE2
 ATI Technologies Inc. RADEON 9600 SERIES
-ATI Technologies Inc. RADEON 9600 SERIES x86/MMX/3DNow!/SSE2
-ATI Technologies Inc. RADEON 9600 SERIES x86/SSE2
-ATI Technologies Inc. RADEON 9600 TX x86/SSE2
+ATI Technologies Inc. RADEON 9600 TX
 ATI Technologies Inc. RADEON 9600 TX x86/SSE2
+ATI Technologies Inc. RADEON 9600 XT x86/MMX/3DNow!/SSE2
+ATI Technologies Inc. RADEON 9600 XT x86/SSE2
 ATI Technologies Inc. RADEON 9600 x86/MMX/3DNow!/SSE2
 ATI Technologies Inc. RADEON 9600 x86/SSE2
-ATI Technologies Inc. RADEON 9600 x86/SSE2
-ATI Technologies Inc. RADEON 9700 PRO x86/MMX/3DNow!/SSE
+ATI Technologies Inc. RADEON 9600SE x86/MMX/3DNow!/SSE2
+ATI Technologies Inc. RADEON 9600SE x86/SSE2
+ATI Technologies Inc. RADEON 9700 PRO
 ATI Technologies Inc. RADEON 9800 PRO
+ATI Technologies Inc. RADEON 9800 PRO (Microsoft Corporation - WDDM)
+ATI Technologies Inc. RADEON 9800 PRO - Secondary
+ATI Technologies Inc. RADEON 9800 Pro x86/SSE2
+ATI Technologies Inc. RADEON 9800 SERIES
+ATI Technologies Inc. RADEON 9800 XT
+ATI Technologies Inc. RADEON 9800 XT x86/SSE2
 ATI Technologies Inc. RADEON 9800 x86/SSE2
 ATI Technologies Inc. RADEON IGP 340M DDR x86/SSE2
-ATI Technologies Inc. RADEON IGP 340M DDR x86/SSE2
+ATI Technologies Inc. RADEON Radeon X300/X550/X1050 Series x86/SSE2
+ATI Technologies Inc. RADEON X1600 Series x86/MMX/3DNow!/SSE2
+ATI Technologies Inc. RADEON X1600 Series x86/SSE2
+ATI Technologies Inc. RADEON X300 SE 128MB HyperMemory x86/SSE2
+ATI Technologies Inc. RADEON X300 SE x86/MMX/3DNow!/SSE2
+ATI Technologies Inc. RADEON X300 Series
 ATI Technologies Inc. RADEON X300 Series x86/SSE2
+ATI Technologies Inc. RADEON X300 x86/MMX/3DNow!/SSE2
 ATI Technologies Inc. RADEON X300 x86/SSE2
-ATI Technologies Inc. RADEON X300 x86/SSE2
+ATI Technologies Inc. RADEON X300/X550 Series x86
+ATI Technologies Inc. RADEON X300/X550 Series x86/MMX/3DNow!/SSE2
 ATI Technologies Inc. RADEON X300/X550 Series x86/SSE2
 ATI Technologies Inc. RADEON X300/X550 Series x86/SSE2
+ATI Technologies Inc. RADEON X550 x86/MMX/3DNow!
 ATI Technologies Inc. RADEON X550 x86/MMX/3DNow!/SSE2
 ATI Technologies Inc. RADEON X550 x86/SSE2
+ATI Technologies Inc. RADEON X550XT
+ATI Technologies Inc. RADEON X600 256MB HyperMemory x86/SSE2
+ATI Technologies Inc. RADEON X600 PRO x86/MMX/3DNow!/SSE2
+ATI Technologies Inc. RADEON X600 PRO x86/SSE2
+ATI Technologies Inc. RADEON X600 SE x86/SSE2
 ATI Technologies Inc. RADEON X600 Series
-ATI Technologies Inc. RADEON X600 x86/SSE2
+ATI Technologies Inc. RADEON X600 x86/MMX/3DNow!/SSE2
 ATI Technologies Inc. RADEON X600 x86/SSE2
 ATI Technologies Inc. RADEON X600/X550 Series
+ATI Technologies Inc. RADEON X600/X550 Series (Microsoft Corporation - WDDM)
+ATI Technologies Inc. RADEON X600/X550 Series Secondary
+ATI Technologies Inc. RADEON X600/X550 Series x86/SSE2
+ATI Technologies Inc. RADEON X700 PRO x86/MMX/3DNow!/SSE2
 ATI Technologies Inc. RADEON X700 PRO x86/SSE2
+ATI Technologies Inc. RADEON X700 SE
+ATI Technologies Inc. RADEON X700 SE x86/MMX/3DNow!/SSE2
+ATI Technologies Inc. RADEON X700 SE x86/SSE2
+ATI Technologies Inc. RADEON X700 Series
+ATI Technologies Inc. RADEON X700 Series x86/MMX/3DNow!/SSE2
+ATI Technologies Inc. RADEON X700 Series x86/SSE2
+ATI Technologies Inc. RADEON X700 x86/SSE2
+ATI Technologies Inc. RADEON X700/X550 Series x86/SSE2
+ATI Technologies Inc. RADEON X800 GT x86/MMX/3DNow!/SSE2
+ATI Technologies Inc. RADEON X800 GTO
+ATI Technologies Inc. RADEON X800 GTO x86/MMX/3DNow!/SSE2
+ATI Technologies Inc. RADEON X800 GTO x86/SSE2
+ATI Technologies Inc. RADEON X800 PRO/GTO
 ATI Technologies Inc. RADEON X800 SE x86/MMX/3DNow!/SSE2
+ATI Technologies Inc. RADEON X800 SE x86/SSE2
+ATI Technologies Inc. RADEON X800 Series
+ATI Technologies Inc. RADEON X800 Series
+ATI Technologies Inc. RADEON X800 XL x86/MMX/3DNow!/SSE2
+ATI Technologies Inc. RADEON X800 XL x86/SSE2
 ATI Technologies Inc. RADEON X800 XT
+ATI Technologies Inc. RADEON X800 XT (Microsoft Corporation - WDDM)
+ATI Technologies Inc. RADEON X800 XT x86/SSE2
+ATI Technologies Inc. RADEON X800/X850 Series
 ATI Technologies Inc. RADEON X800GT
+ATI Technologies Inc. RADEON X850 Series
+ATI Technologies Inc. RADEON X850 XT Platinum Edition (Microsoft Corporation - WDDM)
+ATI Technologies Inc. RADEON X850 XT Platinum Edition x86/SSE2
+ATI Technologies Inc. RADEON X850 XT x86/SSE2
+ATI Technologies Inc. RADEON XPRESS 200 Series SW TCL x86
+ATI Technologies Inc. RADEON XPRESS 200 Series SW TCL x86/MMX/3DNow!
 ATI Technologies Inc. RADEON XPRESS 200 Series SW TCL x86/MMX/3DNow!/SSE2
 ATI Technologies Inc. RADEON XPRESS 200 Series SW TCL x86/MMX/3DNow!/SSE2
 ATI Technologies Inc. RADEON XPRESS 200 Series SW TCL x86/SSE2
-ATI Technologies Inc. RADEON XPRESS 200 Series SW TCL x86/SSE2
+ATI Technologies Inc. RADEON XPRESS 200 Series x86/MMX/3DNow!/SSE2
 ATI Technologies Inc. RADEON XPRESS 200 Series x86/SSE2
+ATI Technologies Inc. RADEON XPRESS 200M Series (Microsoft Corporation - WDDM)
+ATI Technologies Inc. RADEON XPRESS 200M Series SW TCL x86
+ATI Technologies Inc. RADEON XPRESS 200M Series SW TCL x86/MMX/3DNow!
 ATI Technologies Inc. RADEON XPRESS 200M Series SW TCL x86/MMX/3DNow!/SSE2
 ATI Technologies Inc. RADEON XPRESS 200M Series SW TCL x86/MMX/3DNow!/SSE2
 ATI Technologies Inc. RADEON XPRESS 200M Series SW TCL x86/SSE2
 ATI Technologies Inc. RADEON XPRESS 200M Series SW TCL x86/SSE2
-ATI Technologies Inc. RADEON XPRESS 200M Series x86/MMX/3DNow!/SSE2
+ATI Technologies Inc. RADEON XPRESS 200M Series x86/MMX/3DNow!
 ATI Technologies Inc. RADEON XPRESS 200M Series x86/MMX/3DNow!/SSE2
 ATI Technologies Inc. RADEON XPRESS 200M Series x86/SSE2
 ATI Technologies Inc. RADEON XPRESS Series x86/MMX/3DNow!/SSE2
-ATI Technologies Inc. RADEON XPRESS Series x86/MMX/3DNow!/SSE2
-ATI Technologies Inc. RADEON XPRESS Series x86/SSE2
 ATI Technologies Inc. RADEON XPRESS Series x86/SSE2
-ATI Technologies Inc. RS740
-ATI Technologies Inc. RS780C
-ATI Technologies Inc. RS780M
+ATI Technologies Inc. RADEON Xpress 200 Series SW TCL x86/MMX/3DNow!/SSE2
+ATI Technologies Inc. RADEON Xpress 200G Series SW TCL x86/MMX/3DNow!/SSE2
+ATI Technologies Inc. ROBSON CE
+ATI Technologies Inc. ROBSON LE
 ATI Technologies Inc. RS780M
 ATI Technologies Inc. RS880
 ATI Technologies Inc. RS880
-ATI Technologies Inc. RV410 Pro x86/SSE2
-ATI Technologies Inc. RV790
-ATI Technologies Inc. RV790
+ATI Technologies Inc. RV250 DDR x86/SSE2
+ATI Technologies Inc. Radeon  X1300XT/X1600 Pro Series
+ATI Technologies Inc. Radeon  X1300XT/X1600Pro/X1650 Series
+ATI Technologies Inc. Radeon  X1300XT/X1600Pro/X1650 Series
+ATI Technologies Inc. Radeon (TM)  HD 7670M
+ATI Technologies Inc. Radeon (TM)  HD 7670M
+ATI Technologies Inc. Radeon (TM) HD 6370M
 ATI Technologies Inc. Radeon (TM) HD 6470M
 ATI Technologies Inc. Radeon (TM) HD 6470M
 ATI Technologies Inc. Radeon (TM) HD 6490M
 ATI Technologies Inc. Radeon (TM) HD 6490M
+ATI Technologies Inc. Radeon (TM) HD 6490M
+ATI Technologies Inc. Radeon (TM) HD 6630M
+ATI Technologies Inc. Radeon (TM) HD 6750M
 ATI Technologies Inc. Radeon (TM) HD 6750M
 ATI Technologies Inc. Radeon (TM) HD 6770M
 ATI Technologies Inc. Radeon (TM) HD 6770M
+ATI Technologies Inc. Radeon (TM) HD 6770M
+ATI Technologies Inc. Radeon (TM) HD 6850M
 ATI Technologies Inc. Radeon (TM) HD 6850M
-ATI Technologies Inc. Radeon 7000 DDR x86/SSE
+ATI Technologies Inc. Radeon (TM) HD 7450M
+ATI Technologies Inc. Radeon (TM) HD 7470M
+ATI Technologies Inc. Radeon (TM) HD 7670M
+ATI Technologies Inc. Radeon (TM) HD 7670M
+ATI Technologies Inc. Radeon (TM) HD 7670M
+ATI Technologies Inc. Radeon (TM) HD 7690M XT
+ATI Technologies Inc. Radeon (TM) HD 7690M XT
+ATI Technologies Inc. Radeon (TM) HD 7690M XT
+ATI Technologies Inc. Radeon (TM) HD 7750M
+ATI Technologies Inc. Radeon (TM) HD 7750M
+ATI Technologies Inc. Radeon (TM) HD 7850M
+ATI Technologies Inc. Radeon (TM) HD 7850M
+ATI Technologies Inc. Radeon (TM) HD 8750M
+ATI Technologies Inc. Radeon (TM) HD 8750M
 ATI Technologies Inc. Radeon 7000 DDR x86/SSE2
-ATI Technologies Inc. Radeon 7000 SDR x86/SSE2
-ATI Technologies Inc. Radeon 7500 DDR x86/SSE2
+ATI Technologies Inc. Radeon 7500 DDR x86
 ATI Technologies Inc. Radeon 7500 DDR x86/SSE2
-ATI Technologies Inc. Radeon 9000 DDR x86/SSE2
-ATI Technologies Inc. Radeon DDR x86/MMX/3DNow!/SSE2
-ATI Technologies Inc. Radeon DDR x86/SSE
-ATI Technologies Inc. Radeon DDR x86/SSE2
-ATI Technologies Inc. Radeon HD 6310
-ATI Technologies Inc. Radeon HD 6310
+ATI Technologies Inc. Radeon 9100 DDR x86/MMX/3DNow!/SSE2
+ATI Technologies Inc. Radeon 9200 DDR x86/SSE2
+ATI Technologies Inc. Radeon HD 2600 PRO (Omega 3.8.442)
+ATI Technologies Inc. Radeon HD 6470M
 ATI Technologies Inc. Radeon HD 6470M
 ATI Technologies Inc. Radeon HD 6490M
 ATI Technologies Inc. Radeon HD 6800 Series
 ATI Technologies Inc. Radeon HD 6800 Series
-ATI Technologies Inc. Radeon SDR x86/SSE2
-ATI Technologies Inc. Radeon SDR x86/SSE2
+ATI Technologies Inc. Radeon Radeon X300/X550/X1050 Series x86/SSE2
+ATI Technologies Inc. Radeon X1050
+ATI Technologies Inc. Radeon X1050 Series (Omega 3.8.442)
+ATI Technologies Inc. Radeon X1200 Series (Omega 3.8.442)
+ATI Technologies Inc. Radeon X1300 / X1550 Series
+ATI Technologies Inc. Radeon X1300 / X1550 Series  (Microsoft Corporation - WDDM)
+ATI Technologies Inc. Radeon X1300 / X1550 Series (Microsoft Corporation - WDDM)
+ATI Technologies Inc. Radeon X1300 / X1600 Series
 ATI Technologies Inc. Radeon X1300 Series
 ATI Technologies Inc. Radeon X1300 Series x86/MMX/3DNow!/SSE2
 ATI Technologies Inc. Radeon X1300 Series x86/SSE2
+ATI Technologies Inc. Radeon X1300 Series x86/SSE2
 ATI Technologies Inc. Radeon X1300/X1550 Series
-ATI Technologies Inc. Radeon X1300/X1550 Series
+ATI Technologies Inc. Radeon X1300/X1550 Series  (Microsoft Corporation - WDDM)
+ATI Technologies Inc. Radeon X1300/X1550 Series (Microsoft Corporation - WDDM)
+ATI Technologies Inc. Radeon X1300/X1550 Series (Omega 3.8.442)
+ATI Technologies Inc. Radeon X1300/X1550 Series x86/MMX/3DNow!/SSE2
 ATI Technologies Inc. Radeon X1300/X1550 Series x86/SSE2
-ATI Technologies Inc. Radeon X1550 64-bit (Microsoft - WDDM)
+ATI Technologies Inc. Radeon X1550 64-bit (Microsoft Corporation - WDDM)
+ATI Technologies Inc. Radeon X1550 64-bit x86/SSE2
+ATI Technologies Inc. Radeon X1550 Series
 ATI Technologies Inc. Radeon X1550 Series
+ATI Technologies Inc. Radeon X1550 Series (Microsoft Corporation - WDDM)
+ATI Technologies Inc. Radeon X1550 Series x86/MMX/3DNow!/SSE2
+ATI Technologies Inc. Radeon X1550 Series x86/MMX/3DNow!/SSE2
 ATI Technologies Inc. Radeon X1550 Series x86/SSE2
 ATI Technologies Inc. Radeon X1600
-ATI Technologies Inc. Radeon X1600 Pro / X1300XT x86/MMX/3DNow!/SSE2
+ATI Technologies Inc. Radeon X1600 Pro / X1300XT
+ATI Technologies Inc. Radeon X1600 Pro / X1300XT x86/SSE2
 ATI Technologies Inc. Radeon X1600 Series
+ATI Technologies Inc. Radeon X1600 Series (Microsoft Corporation - WDDM)
+ATI Technologies Inc. Radeon X1600 Series (Omega 3.8.442)
+ATI Technologies Inc. Radeon X1600 Series x86/MMX/3DNow!/SSE2
 ATI Technologies Inc. Radeon X1600 Series x86/SSE2
+ATI Technologies Inc. Radeon X1600 x86/SSE2
 ATI Technologies Inc. Radeon X1600/1650 Series
 ATI Technologies Inc. Radeon X1600/X1650 Series
+ATI Technologies Inc. Radeon X1600/X1650 Series x86/SSE2
+ATI Technologies Inc. Radeon X1650 GTO
+ATI Technologies Inc. Radeon X1650 SE
+ATI Technologies Inc. Radeon X1650 SE x86/SSE2
 ATI Technologies Inc. Radeon X1650 Series
+ATI Technologies Inc. Radeon X1650 Series  (Microsoft Corporation - WDDM)
 ATI Technologies Inc. Radeon X1650 Series
+ATI Technologies Inc. Radeon X1650 Series (Microsoft Corporation - WDDM)
+ATI Technologies Inc. Radeon X1650 Series (Microsoft Corporation - WDDM)
+ATI Technologies Inc. Radeon X1650 Series (Omega 3.8.442)
 ATI Technologies Inc. Radeon X1650 Series x86/MMX/3DNow!/SSE2
 ATI Technologies Inc. Radeon X1650 Series x86/SSE2
 ATI Technologies Inc. Radeon X1650 Series x86/SSE2
+ATI Technologies Inc. Radeon X1650/X1700 Series (Omega 3.8.442)
+ATI Technologies Inc. Radeon X1700 FSC
+ATI Technologies Inc. Radeon X1800 CrossFire Edition
+ATI Technologies Inc. Radeon X1800 Series
+ATI Technologies Inc. Radeon X1800 Series x86/MMX/3DNow!/SSE2
+ATI Technologies Inc. Radeon X1900 CrossFire Edition
+ATI Technologies Inc. Radeon X1900 GT
+ATI Technologies Inc. Radeon X1900 GT x86/SSE2
+ATI Technologies Inc. Radeon X1900 Series
+ATI Technologies Inc. Radeon X1900 Series (Microsoft Corporation - WDDM)
 ATI Technologies Inc. Radeon X1900 Series x86/MMX/3DNow!/SSE2
+ATI Technologies Inc. Radeon X1900 Series x86/SSE2
+ATI Technologies Inc. Radeon X1950 CrossFire Edition
 ATI Technologies Inc. Radeon X1950 Pro
+ATI Technologies Inc. Radeon X1950 Pro (Omega 3.8.442)
 ATI Technologies Inc. Radeon X1950 Pro x86/MMX/3DNow!/SSE2
+ATI Technologies Inc. Radeon X1950 Pro x86/SSE2
+ATI Technologies Inc. Radeon X1950 Series
 ATI Technologies Inc. Radeon X1950 Series
-ATI Technologies Inc. Radeon X1950 Series  (Microsoft - WDDM)
+ATI Technologies Inc. Radeon X1950 Series  (Microsoft Corporation - WDDM)
+ATI Technologies Inc. Radeon X1950 Series (Microsoft Corporation - WDDM)
+ATI Technologies Inc. Radeon X1950 Series x86/MMX/3DNow!/SSE2
+ATI Technologies Inc. Radeon X1950 Series x86/SSE2
 ATI Technologies Inc. Radeon X300/X550/X1050 Series
+ATI Technologies Inc. Radeon X300/X550/X1050 Series
+ATI Technologies Inc. Radeon X300/X550/X1050 Series  (Microsoft Corporation - WDDM)
+ATI Technologies Inc. Radeon X300/X550/X1050 Series (Microsoft Corporation - WDDM)
+ATI Technologies Inc. Radeon X300/X550/X1050 Series (Omega 3.8.442)
+ATI Technologies Inc. Radeon X300/X550/X1050 Series x86/SSE2
 ATI Technologies Inc. Radeon X550/X700 Series
-ATI Technologies Inc. Radeon X550XTX x86/MMX/3DNow!/SSE2
-ATI Technologies Inc. SAPPHIRE RADEON X300SE
+ATI Technologies Inc. Radeon X550XTX
+ATI Technologies Inc. Radeon Xpress 200 Series (Omega 3.8.442) x86/SSE2
+ATI Technologies Inc. Radeon Xpress 200M Series (Omega 3.8.442)
+ATI Technologies Inc. SAPPHIRE RADEON 9600 ATLANTIS
 ATI Technologies Inc. SAPPHIRE RADEON X300SE
-ATI Technologies Inc. SAPPHIRE RADEON X300SE x86/MMX/3DNow!/SSE2
-ATI Technologies Inc. SAPPHIRE RADEON X300SE x86/SSE2
+ATI Technologies Inc. SAPPHIRE Radeon X1550
 ATI Technologies Inc. SAPPHIRE Radeon X1550 Series
-ATI Technologies Inc. SAPPHIRE Radeon X1550 Series x86/MMX/3DNow!/SSE2
 ATI Technologies Inc. SAPPHIRE Radeon X1550 Series x86/SSE2
-ATI Technologies Inc. SAPPHIRE Radeon X1550 x86/SSE2
-ATI Technologies Inc. Sapphire Radeon HD 3730
-ATI Technologies Inc. Sapphire Radeon HD 3730
-ATI Technologies Inc. Sapphire Radeon HD 3750
-ATI Technologies Inc. Standard VGA Graphics Adapter
-ATI Technologies Inc. Standard VGA Graphics Adapter
-ATI Technologies Inc. Tul, RADEON  X600 PRO
-ATI Technologies Inc. Tul, RADEON  X600 PRO x86/SSE2
-ATI Technologies Inc. Tul, RADEON  X700 PRO
-ATI Technologies Inc. Tul, RADEON  X700 PRO x86/MMX/3DNow!/SSE2
+ATI Technologies Inc. SUMO 9640
+ATI Technologies Inc. SUMO 964A
+ATI Technologies Inc. Sapphire RADEON X1600 PRO
+ATI Technologies Inc. Sapphire RADEON X1600 PRO x86/SSE2
+ATI Technologies Inc. Sapphire RADEON X1600 XT
+ATI Technologies Inc. Tul Corporation, RADEON  X1300 Series
+ATI Technologies Inc. Tul Corporation, RADEON  X300SE
 ATI Technologies Inc. VisionTek Radeon 4350
 ATI Technologies Inc. VisionTek Radeon 4350
+ATI Technologies Inc. VisionTek Radeon HD 2400 PCI
+ATI Technologies Inc. VisionTek Radeon HD 2600 XT AGP
+ATI Technologies Inc. VisionTek Radeon HD 5450
+ATI Technologies Inc. VisionTek Radeon HD2400 Pro AGP
+ATI Technologies Inc. VisionTek Radeon HD2400 Pro PCI
+ATI Technologies Inc. VisionTek Radeon X1300
+ATI Technologies Inc. VisionTek Radeon X1300 Series
+ATI Technologies Inc. VisionTek Radeon X1300 XGE
 ATI Technologies Inc. VisionTek Radeon X1550 Series
 ATI Technologies Inc. WRESTLER 9802
-ATI Technologies Inc. WRESTLER 9803
 ATI Technologies Inc. XFX Radeon HD 4570
-ATI Technologies Inc. Yamaha ATI HD 9000da/s
-ATI Technologies Inc. Yamaha ATI HD 9000da/s 2048
-Advanced Micro Devices, Inc. Mesa DRI R600 (RS780 9612) 20090101 x86/MMX+/3DNow!+/SSE2 TCL DRI2
-Advanced Micro Devices, Inc. Mesa DRI R600 (RS880 9710) 20090101 x86/MMX+/3DNow!+/SSE2 TCL DRI2
-Advanced Micro Devices, Inc. Mesa DRI R600 (RS880 9712) 20090101  TCL
-Advanced Micro Devices, Inc. Mesa DRI R600 (RV610 94C1) 20090101 x86/MMX+/3DNow!+/SSE2 TCL DRI2
-Advanced Micro Devices, Inc. Mesa DRI R600 (RV610 94C9) 20090101 x86/MMX/SSE2 TCL DRI2
-Advanced Micro Devices, Inc. Mesa DRI R600 (RV620 95C4) 20090101 x86/MMX/SSE2 TCL DRI2
-Advanced Micro Devices, Inc. Mesa DRI R600 (RV620 95C5) 20090101 x86/MMX+/3DNow!+/SSE2 TCL DRI2
-Advanced Micro Devices, Inc. Mesa DRI R600 (RV620 95C5) 20090101 x86/MMX/SSE2 TCL DRI2
-Advanced Micro Devices, Inc. Mesa DRI R600 (RV635 9596) 20090101 x86/MMX+/3DNow!+/SSE TCL DRI2
-Advanced Micro Devices, Inc. Mesa DRI R600 (RV670 9505) 20090101 x86/MMX+/3DNow!+/SSE2 TCL DRI2
-Advanced Micro Devices, Inc. Mesa DRI R600 (RV670 9505) 20090101 x86/MMX/SSE2 TCL DRI2
-Advanced Micro Devices, Inc. Mesa DRI R600 (RV710 9552) 20090101 x86/MMX/SSE2 TCL DRI2
-Advanced Micro Devices, Inc. Mesa DRI R600 (RV730 9490) 20090101 x86/MMX+/3DNow!+/SSE2 TCL DRI2
-Advanced Micro Devices, Inc. Mesa DRI R600 (RV730 9490) 20090101 x86/MMX/SSE2 TCL DRI2
-Advanced Micro Devices, Inc. Mesa DRI R600 (RV730 9498) 20090101  TCL DRI2
-Advanced Micro Devices, Inc. Mesa DRI R600 (RV770 9440) 20090101 x86/MMX+/3DNow!+/SSE2 TCL DRI2
-Advanced Micro Devices, Inc. Mesa DRI R600 (RV770 9442) 20090101 x86/MMX/SSE2 TCL DRI2
+Advanced Micro Devices, Inc. Mesa DRI R600 (RS880 9712) 20090101 x86/MMX+/3DNow!+/SSE2 TCL DRI2
 Alex Mohr GL Hijacker!
-Apple Software Renderer
-DRI R300 Project Mesa DRI R300 (RS400 5954) 20090101 x86/MMX+/3DNow!+/SSE2 NO-TCL DRI2
-DRI R300 Project Mesa DRI R300 (RS400 5975) 20090101 x86/MMX+/3DNow!+/SSE2 NO-TCL DRI2
-DRI R300 Project Mesa DRI R300 (RS400 5A62) 20090101 x86/MMX/SSE2 NO-TCL DRI2
-DRI R300 Project Mesa DRI R300 (RS600 7941) 20090101 x86/MMX/SSE2 NO-TCL
-DRI R300 Project Mesa DRI R300 (RS690 791F) 20090101 x86/MMX+/3DNow!+/SSE2 NO-TCL DRI2
-DRI R300 Project Mesa DRI R300 (RV350 4151) 20090101 AGP 4x x86/MMX+/3DNow!+/SSE TCL
-DRI R300 Project Mesa DRI R300 (RV350 4153) 20090101 AGP 8x x86/MMX+/3DNow!+/SSE TCL
-DRI R300 Project Mesa DRI R300 (RV380 3150) 20090101 x86/MMX+/3DNow!+/SSE2 TCL DRI2
-DRI R300 Project Mesa DRI R300 (RV380 3150) 20090101 x86/MMX/SSE2 TCL DRI2
-DRI R300 Project Mesa DRI R300 (RV380 5B60) 20090101 x86/MMX/SSE2 TCL DRI2
-DRI R300 Project Mesa DRI R300 (RV380 5B60) 20090101 x86/MMX/SSE2 TCL DRI2
-DRI R300 Project Mesa DRI R300 (RV380 5B62) 20090101 x86/MMX+/3DNow!+/SSE2 TCL DRI2
-DRI R300 Project Mesa DRI R300 (RV515 7145) 20090101 x86/MMX/SSE2 TCL DRI2
-DRI R300 Project Mesa DRI R300 (RV515 7146) 20090101 x86/MMX+/3DNow!+/SSE2 TCL DRI2
-DRI R300 Project Mesa DRI R300 (RV515 7146) 20090101 x86/MMX/SSE2 TCL DRI2
-DRI R300 Project Mesa DRI R300 (RV515 7149) 20090101 x86/MMX/SSE2 TCL DRI2
-DRI R300 Project Mesa DRI R300 (RV515 714A) 20090101 x86/MMX/SSE2 TCL
-DRI R300 Project Mesa DRI R300 (RV515 714A) 20090101 x86/MMX/SSE2 TCL DRI2
-DRI R300 Project Mesa DRI R300 (RV530 71C4) 20090101 x86/MMX/SSE2 TCL DRI2
-GPU_CLASS_UNKNOWN
-Humper 3D-Analyze v2.3 - http://www.tommti-systems.com
+Brian Paul Mesa X11
+Gallium
+Humper
 Humper Chromium
 Humper Chromium
+Imagination Technologies 3D-Analyze v2.3 - http://www.tommti-systems.com
+Imagination Technologies PowerVR SGX545
 Imagination Technologies PowerVR SGX545
 Intel
-Intel  HD Graphics Family
-Intel  HD Graphics Family
-Intel 3D-Analyze v2.2 - http://www.tommti-systems.com
-Intel 3D-Analyze v2.3 - http://www.tommti-systems.com
 Intel 3D-Analyze v2.3 - http://www.tommti-systems.com
-Intel 4 Series Internal Chipset
-Intel 4 Series Internal Chipset
-Intel 830M
+Intel 4 Series Internal
 Intel 845G
 Intel 855GM
 Intel 865G
@@ -1018,61 +1794,46 @@ Intel 945G
 Intel 945GM
 Intel 950
 Intel 965
-Intel B43 Express Chipset
-Intel B43 Express Chipset
+Intel 965
+Intel 965
 Intel Bear Lake
 Intel Broadwater
 Intel Brookdale
 Intel Cantiga
-Intel EMGD on PowerVR SGX535
+Intel Corporation Intel(R) Graphics Media Accelerator 3600 Series
+Intel Corporation Intel(R) Graphics Media Accelerator 3600 Series
 Intel Eaglelake
-Intel Familia Mobile 45 Express Chipset (Microsoft Corporation - WDDM 1.1)
-Intel Familia Mobile 45 Express Chipset (Microsoft Corporation - WDDM 1.1)
 Intel G33
 Intel G41
-Intel G41 Express Chipset
-Intel G41 Express Chipset
 Intel G45
-Intel G45/G43 Express Chipset
-Intel G45/G43 Express Chipset
-Intel Graphics Media Accelerator HD
-Intel Graphics Media Accelerator HD
+Intel Graphics Media HD
+Intel Graphics Media HD
+Intel HD Graphics
 Intel HD Graphics
 Intel HD Graphics
-Intel HD Graphics 100
-Intel HD Graphics 200
-Intel HD Graphics 200 BR-1101-00SH
-Intel HD Graphics 200 BR-1101-00SJ
-Intel HD Graphics 200 BR-1101-00SK
-Intel HD Graphics 200 BR-1101-01M5
-Intel HD Graphics 200 BR-1101-01M6
-Intel HD Graphics BR-1004-01Y1
-Intel HD Graphics BR-1004-01Y1
-Intel HD Graphics BR-1006-0364
-Intel HD Graphics BR-1006-0365
-Intel HD Graphics BR-1006-0366
-Intel HD Graphics BR-1007-02G4
-Intel HD Graphics BR-1101-04SY
-Intel HD Graphics BR-1101-04SZ
-Intel HD Graphics BR-1101-04T0
-Intel HD Graphics BR-1101-04T9
-Intel HD Graphics Family
-Intel HD Graphics Family
-Intel HD Graphics Family BR-1012-00Y8
-Intel HD Graphics Family BR-1012-00YF
-Intel HD Graphics Family BR-1012-00ZD
-Intel HD Graphics Family BR-1102-00ML
-Intel Inc. Intel GMA 900 OpenGL Engine
-Intel Inc. Intel GMA 900 OpenGL Engine
+Intel HD Graphics
+Intel HD Graphics 2000
+Intel HD Graphics 2000
+Intel HD Graphics 3000
+Intel HD Graphics 3000
+Intel HD Graphics 4000
+Intel HD Graphics 4000
 Intel Inc. Intel GMA 950 OpenGL Engine
 Intel Inc. Intel GMA 950 OpenGL Engine
 Intel Inc. Intel GMA X3100 OpenGL Engine
 Intel Inc. Intel GMA X3100 OpenGL Engine
+Intel Inc. Intel GMA X3100 OpenGL Engine
 Intel Inc. Intel HD Graphics 3000 OpenGL Engine
 Intel Inc. Intel HD Graphics 3000 OpenGL Engine
+Intel Inc. Intel HD Graphics 3000 OpenGL Engine
+Intel Inc. Intel HD Graphics 4000 OpenGL Engine
+Intel Inc. Intel HD Graphics 4000 OpenGL Engine
+Intel Inc. Intel HD Graphics 4000 OpenGL Engine
+Intel Inc. Intel HD Graphics 4000 OpenGL Engine
+Intel Inc. Intel HD Graphics 5000 OpenGL Engine
+Intel Inc. Intel HD Graphics 5000 OpenGL Engine
+Intel Inc. Intel HD Graphics 5000 OpenGL Engine
 Intel Inc. Intel HD Graphics OpenGL Engine
-Intel Inc. Intel HD Graphics OpenGL Engine
-Intel Inc. Intel HD xxxx OpenGL Engine
 Intel Intel 845G
 Intel Intel 845G
 Intel Intel 855GM
@@ -1093,144 +1854,1931 @@ Intel Intel Bear Lake B
 Intel Intel Bear Lake B
 Intel Intel Broadwater G
 Intel Intel Brookdale-G
-Intel Intel Brookdale-G
-Intel Intel Calistoga
 Intel Intel Cantiga
 Intel Intel Cantiga
 Intel Intel Eaglelake
 Intel Intel Eaglelake
-Intel Intel Generic Renderer
 Intel Intel Grantsdale-G
 Intel Intel Grantsdale-G
-Intel Intel HD Graphics 3000
-Intel Intel Lakeport
+Intel Intel Iris Pro Graphics 5200
 Intel Intel Montara-GM
 Intel Intel Pineview Platform
 Intel Intel Pineview Platform
 Intel Intel Springdale-G
-Intel Mobile - famiglia Express Chipset 45 (Microsoft Corporation - WDDM 1.1)
+Intel Intel(R)  HD Graphics Family
+Intel Intel(R) 4 Series Internal Chipset
+Intel Intel(R) 4 Series Internal Chipset
+Intel Intel(R) B43 Express Chipset
+Intel Intel(R) B43 Express Chipset
+Intel Intel(R) G41 Express Chipset
+Intel Intel(R) G41 Express Chipset
+Intel Intel(R) G41 Express Chipset
+Intel Intel(R) G41 Express Chipset (Microsoft Corporation - WDDM 1.1)
+Intel Intel(R) G41 Express Chipset v2
+Intel Intel(R) G45/G43 Express Chipset
+Intel Intel(R) G45/G43 Express Chipset
+Intel Intel(R) G45/G43 Express Chipset
+Intel Intel(R) G45/G43/G41 Express Chipset
+Intel Intel(R) Graphics Media Accelerator HD
+Intel Intel(R) Graphics Media Accelerator HD
+Intel Intel(R) Graphics Media Accelerator HD
+Intel Intel(R) HD Graphics
+Intel Intel(R) HD Graphics
+Intel Intel(R) HD Graphics
+Intel Intel(R) HD Graphics 100
+Intel Intel(R) HD Graphics 2000
+Intel Intel(R) HD Graphics 2000
+Intel Intel(R) HD Graphics 2500
+Intel Intel(R) HD Graphics 2500
+Intel Intel(R) HD Graphics 3000
+Intel Intel(R) HD Graphics 3000
+Intel Intel(R) HD Graphics 3000
+Intel Intel(R) HD Graphics 4000
+Intel Intel(R) HD Graphics 4000
+Intel Intel(R) HD Graphics 4000
+Intel Intel(R) HD Graphics 4000
+Intel Intel(R) HD Graphics 4400
+Intel Intel(R) HD Graphics 4600
+Intel Intel(R) HD Graphics 4600
+Intel Intel(R) HD Graphics 5000
+Intel Intel(R) HD Graphics BR-1004-01Y1
+Intel Intel(R) HD Graphics Family
+Intel Intel(R) HD Graphics Family
+Intel Intel(R) HD Graphics P3000
+Intel Intel(R) HD Graphics P4000
+Intel Intel(R) Q45/Q43 Express Chipset
+Intel Intel(R) Q45/Q43 Express Chipset
+Intel Iris OpenGL Graphics Engine
 Intel Mobile 4 Series
-Intel Mobile 4 Series Express Chipset Family
-Intel Mobile 4 Series Express Chipset Family
-Intel Mobile 45 Express Chipset Family
-Intel Mobile 45 Express Chipset Family (Microsoft Corporation - WDDM 1.1)
-Intel Mobile 45 Express Chipset Family (Microsoft Corporation - WDDM 1.1)
-Intel Mobile HD Graphics
-Intel Mobile HD Graphics
 Intel Mobile Intel(R) 4 Series Express Chipset Family
-Intel Mobile SandyBridge HD Graphics
+Intel Mobile Intel(R) 4 Series Express Chipset Family
+Intel Mobile Intel(R) 4 Series Express Chipset Family v2
+Intel Mobile Intel(R) 45 Express Chipset Family (Microsoft Corporation - WDDM 1.1)
+Intel Mobile Intel(R) HD Graphics
+Intel Mobile Intel(R) HD Graphics
 Intel Montara
+Intel Open Source Technology Center Mesa DRI Intel(R) 852GM/855GM x86/MMX/SSE2
+Intel Open Source Technology Center Mesa DRI Intel(R) 915G
+Intel Open Source Technology Center Mesa DRI Intel(R) 915G x86/MMX/SSE2
+Intel Open Source Technology Center Mesa DRI Intel(R) 915GM x86/MMX/SSE2
+Intel Open Source Technology Center Mesa DRI Intel(R) 945G
+Intel Open Source Technology Center Mesa DRI Intel(R) 945G x86/MMX/SSE2
+Intel Open Source Technology Center Mesa DRI Intel(R) 945GM
+Intel Open Source Technology Center Mesa DRI Intel(R) 945GM x86/MMX/SSE2
+Intel Open Source Technology Center Mesa DRI Intel(R) 945GME x86/MMX/SSE2
+Intel Open Source Technology Center Mesa DRI Intel(R) 965G x86/MMX/SSE2
+Intel Open Source Technology Center Mesa DRI Intel(R) 965GM
+Intel Open Source Technology Center Mesa DRI Intel(R) 965GM x86/MMX/SSE2
+Intel Open Source Technology Center Mesa DRI Intel(R) 965GME/GLE
+Intel Open Source Technology Center Mesa DRI Intel(R) 965Q
+Intel Open Source Technology Center Mesa DRI Intel(R) 965Q x86/MMX/SSE2
+Intel Open Source Technology Center Mesa DRI Intel(R) G33 x86/MMX/SSE2
+Intel Open Source Technology Center Mesa DRI Intel(R) G41 x86/MMX/SSE2
+Intel Open Source Technology Center Mesa DRI Intel(R) G45/G43
+Intel Open Source Technology Center Mesa DRI Intel(R) G45/G43 x86/MMX/SSE2
+Intel Open Source Technology Center Mesa DRI Intel(R) IGD
+Intel Open Source Technology Center Mesa DRI Intel(R) IGD x86/MMX/SSE2
+Intel Open Source Technology Center Mesa DRI Intel(R) Ironlake Desktop x86/MMX/SSE2
+Intel Open Source Technology Center Mesa DRI Intel(R) Ironlake Mobile
+Intel Open Source Technology Center Mesa DRI Intel(R) Ironlake Mobile x86/MMX/SSE2
+Intel Open Source Technology Center Mesa DRI Intel(R) Ivybridge Desktop
+Intel Open Source Technology Center Mesa DRI Intel(R) Ivybridge Desktop x86/MMX/SSE2
+Intel Open Source Technology Center Mesa DRI Intel(R) Ivybridge Mobile
+Intel Open Source Technology Center Mesa DRI Intel(R) Ivybridge Mobile x86/MMX/SSE2
+Intel Open Source Technology Center Mesa DRI Intel(R) Q35
+Intel Open Source Technology Center Mesa DRI Intel(R) Q35 x86/MMX/SSE2
+Intel Open Source Technology Center Mesa DRI Intel(R) Q45/Q43
+Intel Open Source Technology Center Mesa DRI Intel(R) Q45/Q43 x86/MMX/SSE2
+Intel Open Source Technology Center Mesa DRI Intel(R) Sandybridge Desktop
+Intel Open Source Technology Center Mesa DRI Intel(R) Sandybridge Desktop x86/MMX/SSE2
+Intel Open Source Technology Center Mesa DRI Intel(R) Sandybridge Mobile
+Intel Open Source Technology Center Mesa DRI Intel(R) Sandybridge Mobile x86/MMX/SSE2
+Intel Open Source Technology Center Mesa DRI Intel(R) Sandybridge Mobile x86/MMX/SSE2
+Intel Open Source Technology Center Mesa DRI Mobile Intelå¨ GM45 Express Chipset
+Intel Open Source Technology Center Mesa DRI Mobile Intelå¨ GM45 Express Chipset x86/MMX/SSE2
 Intel Pineview
-Intel Q45/Q43 Express Chipset
-Intel Q45/Q43 Express Chipset
-Intel Royal BNA Driver
+Intel Q45/Q43
 Intel Royal BNA Driver
-Intel SandyBridge HD Graphics
-Intel SandyBridge HD Graphics BR-1006-00V8
 Intel Springdale
 Intel X3100
-Intergraph wcgdrv 06.05.06.18
-Intergraph wcgdrv 06.06.00.35
-Intergraph wcgdrv 06.06.00.35
-LegendgrafiX Mobile 945 Express C/TitaniumGL/GAC/D3D ACCELERATION/6x86/1 THREADs | http://LegendgrafiX.tk
-LegendgrafiX NVIDIA GeForce GT 430/TitaniumGL/GAC/D3D ACCELERATION/6x86/1 THREADs | http://LegendgrafiX.tk
-Linden Lab Headless
-Matrox
+Intel X3100
+Matrox Graphics Inc.  Matrox ICD for M-Series
+Matrox Graphics Inc. Matrox G400
+Matrox Graphics Inc. Matrox ICD for Parhelia
+Mesa
 Mesa
 Mesa Project Software Rasterizer
-Mesa Project Software Rasterizer
-NVIDIA /PCI/SSE2
-NVIDIA /PCI/SSE2
-NVIDIA /PCI/SSE2/3DNOW!
-NVIDIA /PCI/SSE2/3DNOW!
+Mesa project: www.mesa3d.org Mesa GLX Indirect
 NVIDIA 205
 NVIDIA 210
+NVIDIA 210
+NVIDIA 310
 NVIDIA 310
+NVIDIA 310
+NVIDIA 310M
 NVIDIA 310M
 NVIDIA 315
 NVIDIA 315M
+NVIDIA 315M
+NVIDIA 320M
 NVIDIA 320M
-NVIDIA C51
+NVIDIA 405
+NVIDIA 410
+NVIDIA 510
+NVIDIA 610M
+NVIDIA Corporation /PCI/SSE2
+NVIDIA Corporation 3D-Analyze v2.3 - http://www.tommti-systems.com
+NVIDIA Corporation C51/PCI/SSE2/3DNOW!
+NVIDIA Corporation C51G/PCI/SSE2/3DNOW!
+NVIDIA Corporation D10P1-25/PCI/SSE2/3DNOW!
+NVIDIA Corporation D14P1-30/PCIe/SSE2
+NVIDIA Corporation D9M-20/PCI/SSE2
+NVIDIA Corporation D9M-20/PCI/SSE2/3DNOW!
+NVIDIA Corporation G72/PCI/SSE2/3DNOW!
+NVIDIA Corporation G73/AGP/SSE2/3DNOW!
+NVIDIA Corporation G73/PCI/SSE2/3DNOW!
+NVIDIA Corporation G84-50/PCI/SSE2
+NVIDIA Corporation G92-100/PCI/SSE2/3DNOW!
+NVIDIA Corporation GK106/PCIe/SSE2
+NVIDIA Corporation GRID K2/PCIe/SSE2
+NVIDIA Corporation GeForce  GTX 555/PCI/SSE2
+NVIDIA Corporation GeForce  GTX 555/PCI/SSE2
+NVIDIA Corporation GeForce  GTX 555/PCIe/SSE2
+NVIDIA Corporation GeForce  GTX 555/PCIe/SSE2
+NVIDIA Corporation GeForce  GTX 555/PCIe/SSE2
+NVIDIA Corporation GeForce 205/PCI/SSE2
+NVIDIA Corporation GeForce 210/PCI/SSE2
+NVIDIA Corporation GeForce 210/PCI/SSE2
+NVIDIA Corporation GeForce 210/PCI/SSE2/3DNOW!
+NVIDIA Corporation GeForce 210/PCI/SSE2/3DNOW!
+NVIDIA Corporation GeForce 210/PCIe/SSE2
+NVIDIA Corporation GeForce 210/PCIe/SSE2
+NVIDIA Corporation GeForce 210/PCIe/SSE2
+NVIDIA Corporation GeForce 210/PCIe/SSE2/3DNOW!
+NVIDIA Corporation GeForce 210/PCIe/SSE2/3DNOW!
+NVIDIA Corporation GeForce 310/PCI/SSE2
+NVIDIA Corporation GeForce 310/PCI/SSE2
+NVIDIA Corporation GeForce 310/PCI/SSE2/3DNOW!
+NVIDIA Corporation GeForce 310/PCIe/SSE2
+NVIDIA Corporation GeForce 310/PCIe/SSE2
+NVIDIA Corporation GeForce 310/PCIe/SSE2/3DNOW!
+NVIDIA Corporation GeForce 310M/PCI/SSE2
+NVIDIA Corporation GeForce 310M/PCI/SSE2
+NVIDIA Corporation GeForce 310M/PCIe/SSE2
+NVIDIA Corporation GeForce 310M/PCIe/SSE2
+NVIDIA Corporation GeForce 310M/PCIe/SSE2
+NVIDIA Corporation GeForce 315/PCI/SSE2
+NVIDIA Corporation GeForce 315/PCI/SSE2
+NVIDIA Corporation GeForce 315/PCI/SSE2/3DNOW!
+NVIDIA Corporation GeForce 315/PCIe/SSE2
+NVIDIA Corporation GeForce 315/PCIe/SSE2
+NVIDIA Corporation GeForce 315/PCIe/SSE2/3DNOW!
+NVIDIA Corporation GeForce 315M/PCI/SSE2
+NVIDIA Corporation GeForce 315M/PCI/SSE2
+NVIDIA Corporation GeForce 315M/PCI/SSE2
+NVIDIA Corporation GeForce 315M/PCIe/SSE2
+NVIDIA Corporation GeForce 315M/PCIe/SSE2
+NVIDIA Corporation GeForce 320M/PCI/SSE2
+NVIDIA Corporation GeForce 320M/PCI/SSE2
+NVIDIA Corporation GeForce 320M/integrated/SSE2
+NVIDIA Corporation GeForce 405/PCI/SSE2
+NVIDIA Corporation GeForce 405/PCI/SSE2/3DNOW!
+NVIDIA Corporation GeForce 405/PCIe/SSE2
+NVIDIA Corporation GeForce 405/PCIe/SSE2
+NVIDIA Corporation GeForce 405/PCIe/SSE2/3DNOW!
+NVIDIA Corporation GeForce 410M/PCI/SSE2
+NVIDIA Corporation GeForce 410M/PCI/SSE2
+NVIDIA Corporation GeForce 410M/PCIe/SSE2
+NVIDIA Corporation GeForce 410M/PCIe/SSE2
+NVIDIA Corporation GeForce 505/PCIe/SSE2
+NVIDIA Corporation GeForce 510/PCI/SSE2
+NVIDIA Corporation GeForce 510/PCI/SSE2
+NVIDIA Corporation GeForce 510/PCIe/SSE2
+NVIDIA Corporation GeForce 510/PCIe/SSE2
+NVIDIA Corporation GeForce 510/PCIe/SSE2
+NVIDIA Corporation GeForce 605/PCI/SSE2
+NVIDIA Corporation GeForce 605/PCIe/SSE2
+NVIDIA Corporation GeForce 605/PCIe/SSE2/3DNOW!
+NVIDIA Corporation GeForce 610/PCIe/SSE2
+NVIDIA Corporation GeForce 6100 nForce 400/PCI/SSE2/3DNOW!
+NVIDIA Corporation GeForce 6100 nForce 400/integrated/SSE2
+NVIDIA Corporation GeForce 6100 nForce 400/integrated/SSE2/3DNOW!
+NVIDIA Corporation GeForce 6100 nForce 405/PCI/SSE2
+NVIDIA Corporation GeForce 6100 nForce 405/PCI/SSE2/3DNOW!
+NVIDIA Corporation GeForce 6100 nForce 405/PCI/SSE2/3DNOW!
+NVIDIA Corporation GeForce 6100 nForce 405/integrated/SSE2
+NVIDIA Corporation GeForce 6100 nForce 405/integrated/SSE2/3DNOW!
+NVIDIA Corporation GeForce 6100 nForce 405/integrated/SSE2/3DNOW!
+NVIDIA Corporation GeForce 6100 nForce 420/PCI/SSE2/3DNOW!
+NVIDIA Corporation GeForce 6100 nForce 430/PCI/SSE2/3DNOW!
+NVIDIA Corporation GeForce 6100 nForce 430/PCI/SSE2/3DNOW!
+NVIDIA Corporation GeForce 6100/PCI/SSE2
+NVIDIA Corporation GeForce 6100/PCI/SSE2/3DNOW!
+NVIDIA Corporation GeForce 6100/PCI/SSE2/3DNOW!
+NVIDIA Corporation GeForce 6100/integrated/SSE2
+NVIDIA Corporation GeForce 6100/integrated/SSE2/3DNOW!
+NVIDIA Corporation GeForce 610M/PCI/SSE2
+NVIDIA Corporation GeForce 610M/PCIe/SSE2
+NVIDIA Corporation GeForce 610M/PCIe/SSE2
+NVIDIA Corporation GeForce 610M/PCIe/SSE2
+NVIDIA Corporation GeForce 615/PCIe/SSE2
+NVIDIA Corporation GeForce 6150 LE/PCI/SSE2
+NVIDIA Corporation GeForce 6150 LE/PCI/SSE2/3DNOW!
+NVIDIA Corporation GeForce 6150 LE/PCI/SSE2/3DNOW!
+NVIDIA Corporation GeForce 6150 LE/integrated/SSE2
+NVIDIA Corporation GeForce 6150 LE/integrated/SSE2/3DNOW!
+NVIDIA Corporation GeForce 6150 LE/integrated/SSE2/3DNOW!
+NVIDIA Corporation GeForce 6150 SE/PCI/SSE2/3DNOW!
+NVIDIA Corporation GeForce 6150/PCI/SSE2/3DNOW!
+NVIDIA Corporation GeForce 6150/integrated/SSE2
+NVIDIA Corporation GeForce 6150/integrated/SSE2/3DNOW!
+NVIDIA Corporation GeForce 6150SE nForce 430/PCI/SSE2
+NVIDIA Corporation GeForce 6150SE nForce 430/PCI/SSE2
+NVIDIA Corporation GeForce 6150SE nForce 430/PCI/SSE2/3DNOW!
+NVIDIA Corporation GeForce 6150SE nForce 430/PCI/SSE2/3DNOW!
+NVIDIA Corporation GeForce 6150SE nForce 430/PCI/SSE2/3DNOW!
+NVIDIA Corporation GeForce 6150SE nForce 430/integrated/SSE2
+NVIDIA Corporation GeForce 6150SE nForce 430/integrated/SSE2
+NVIDIA Corporation GeForce 6150SE nForce 430/integrated/SSE2/3DNOW!
+NVIDIA Corporation GeForce 6150SE nForce 430/integrated/SSE2/3DNOW!
+NVIDIA Corporation GeForce 6150SE/PCI/SSE2/3DNOW!
+NVIDIA Corporation GeForce 6200 A-LE/AGP/SSE2
+NVIDIA Corporation GeForce 6200 A-LE/AGP/SSE2/3DNOW!
+NVIDIA Corporation GeForce 6200 A-LE/PCI/SSE2
+NVIDIA Corporation GeForce 6200 A-LE/PCI/SSE2/3DNOW!
+NVIDIA Corporation GeForce 6200 LE/PCI/SSE2
+NVIDIA Corporation GeForce 6200 LE/PCI/SSE2/3DNOW!
+NVIDIA Corporation GeForce 6200 LE/PCIe/SSE2
+NVIDIA Corporation GeForce 6200 LE/PCIe/SSE2/3DNOW!
+NVIDIA Corporation GeForce 6200 TurboCache(TM)/PCI/SSE2
+NVIDIA Corporation GeForce 6200 TurboCache(TM)/PCI/SSE2/3DNOW!
+NVIDIA Corporation GeForce 6200 TurboCache(TM)/PCIe/SSE2
+NVIDIA Corporation GeForce 6200 TurboCache(TM)/PCIe/SSE2
+NVIDIA Corporation GeForce 6200 TurboCache(TM)/PCIe/SSE2/3DNOW!
+NVIDIA Corporation GeForce 6200/AGP/SSE2
+NVIDIA Corporation GeForce 6200/AGP/SSE2
+NVIDIA Corporation GeForce 6200/AGP/SSE2/3DNOW!
+NVIDIA Corporation GeForce 6200/AGP/SSE2/3DNOW!
+NVIDIA Corporation GeForce 6200/PCI/SSE2
+NVIDIA Corporation GeForce 6200/PCI/SSE2/3DNOW!
+NVIDIA Corporation GeForce 6200/PCIe/SSE2
+NVIDIA Corporation GeForce 6200/PCIe/SSE2/3DNOW!
+NVIDIA Corporation GeForce 6200SE TurboCache(TM)/PCI/SSE2
+NVIDIA Corporation GeForce 6200SE TurboCache(TM)/PCI/SSE2/3DNOW!
+NVIDIA Corporation GeForce 6200SE TurboCache(TM)/PCIe/SSE2
+NVIDIA Corporation GeForce 6200SE TurboCache(TM)/PCIe/SSE2/3DNOW!
+NVIDIA Corporation GeForce 6500/PCI/SSE2
+NVIDIA Corporation GeForce 6500/PCI/SSE2
+NVIDIA Corporation GeForce 6500/PCI/SSE2/3DNOW!
+NVIDIA Corporation GeForce 6500/PCIe/SSE2
+NVIDIA Corporation GeForce 6500/PCIe/SSE2/3DNOW!
+NVIDIA Corporation GeForce 6600 GT/AGP/SSE2
+NVIDIA Corporation GeForce 6600 GT/AGP/SSE2/3DNOW!
+NVIDIA Corporation GeForce 6600 GT/PCI/SSE2
+NVIDIA Corporation GeForce 6600 GT/PCI/SSE2/3DNOW!
+NVIDIA Corporation GeForce 6600 GT/PCIe/SSE2
+NVIDIA Corporation GeForce 6600 GT/PCIe/SSE2
+NVIDIA Corporation GeForce 6600 GT/PCIe/SSE2/3DNOW!
+NVIDIA Corporation GeForce 6600 GT/PCIe/SSE2/3DNOW!
+NVIDIA Corporation GeForce 6600 LE/AGP/SSE2/3DNOW!
+NVIDIA Corporation GeForce 6600 LE/PCI/SSE2
+NVIDIA Corporation GeForce 6600 LE/PCI/SSE2/3DNOW!
+NVIDIA Corporation GeForce 6600 LE/PCIe/SSE2
+NVIDIA Corporation GeForce 6600 LE/PCIe/SSE2/3DNOW!
+NVIDIA Corporation GeForce 6600/AGP/SSE2
+NVIDIA Corporation GeForce 6600/AGP/SSE2/3DNOW!
+NVIDIA Corporation GeForce 6600/PCI/SSE2
+NVIDIA Corporation GeForce 6600/PCI/SSE2/3DNOW!
+NVIDIA Corporation GeForce 6600/PCIe/SSE2
+NVIDIA Corporation GeForce 6600/PCIe/SSE2/3DNOW!
+NVIDIA Corporation GeForce 6610 XL/PCI/SSE2
+NVIDIA Corporation GeForce 6610 XL/PCIe/SSE2
+NVIDIA Corporation GeForce 6700 XL/PCI/SSE2
+NVIDIA Corporation GeForce 6700 XL/PCIe/SSE2
+NVIDIA Corporation GeForce 6800 GS/AGP/SSE2/3DNOW!
+NVIDIA Corporation GeForce 6800 GS/PCI/SSE2
+NVIDIA Corporation GeForce 6800 GS/PCIe/SSE2
+NVIDIA Corporation GeForce 6800 GS/PCIe/SSE2/3DNOW!
+NVIDIA Corporation GeForce 6800 GT/AGP/SSE2
+NVIDIA Corporation GeForce 6800 GT/AGP/SSE2/3DNOW!
+NVIDIA Corporation GeForce 6800 GT/PCIe/SSE2
+NVIDIA Corporation GeForce 6800 GT/PCIe/SSE2/3DNOW!
+NVIDIA Corporation GeForce 6800 LE/AGP/SSE2
+NVIDIA Corporation GeForce 6800 LE/AGP/SSE2/3DNOW!
+NVIDIA Corporation GeForce 6800 LE/PCI/SSE2/3DNOW!
+NVIDIA Corporation GeForce 6800 Ultra/AGP/SSE2
+NVIDIA Corporation GeForce 6800 Ultra/AGP/SSE2/3DNOW!
+NVIDIA Corporation GeForce 6800 Ultra/PCI/SSE2
+NVIDIA Corporation GeForce 6800 Ultra/PCIe/SSE2
+NVIDIA Corporation GeForce 6800 Ultra/PCIe/SSE2/3DNOW!
+NVIDIA Corporation GeForce 6800 XT/AGP/SSE2
+NVIDIA Corporation GeForce 6800 XT/AGP/SSE2/3DNOW!
+NVIDIA Corporation GeForce 6800 XT/PCI/SSE2
+NVIDIA Corporation GeForce 6800 XT/PCI/SSE2/3DNOW!
+NVIDIA Corporation GeForce 6800 XT/PCIe/SSE2
+NVIDIA Corporation GeForce 6800 XT/PCIe/SSE2/3DNOW!
+NVIDIA Corporation GeForce 6800/AGP/SSE2
+NVIDIA Corporation GeForce 6800/AGP/SSE2/3DNOW!
+NVIDIA Corporation GeForce 6800/PCI/SSE2
+NVIDIA Corporation GeForce 6800/PCIe/SSE2
+NVIDIA Corporation GeForce 6800/PCIe/SSE2/3DNOW!
+NVIDIA Corporation GeForce 7000M / nForce 610M/PCI/SSE2
+NVIDIA Corporation GeForce 7000M / nForce 610M/PCI/SSE2/3DNOW!
+NVIDIA Corporation GeForce 7000M / nForce 610M/PCI/SSE2/3DNOW!
+NVIDIA Corporation GeForce 7000M / nForce 610M/PCI/SSE2/3DNOW!
+NVIDIA Corporation GeForce 7025 / NVIDIA nForce 630a/PCI/SSE2
+NVIDIA Corporation GeForce 7025 / NVIDIA nForce 630a/PCI/SSE2/3DNOW!
+NVIDIA Corporation GeForce 7025 / NVIDIA nForce 630a/PCI/SSE2/3DNOW!
+NVIDIA Corporation GeForce 7025 / nForce 630a/PCI/SSE2
+NVIDIA Corporation GeForce 7025 / nForce 630a/PCI/SSE2
+NVIDIA Corporation GeForce 7025 / nForce 630a/PCI/SSE2/3DNOW!
+NVIDIA Corporation GeForce 7025 / nForce 630a/PCI/SSE2/3DNOW!
+NVIDIA Corporation GeForce 7025 / nForce 630a/integrated/SSE2
+NVIDIA Corporation GeForce 7025 / nForce 630a/integrated/SSE2/3DNOW!
+NVIDIA Corporation GeForce 7025 / nForce 630a/integrated/SSE2/3DNOW!
+NVIDIA Corporation GeForce 7050 / NVIDIA nForce 610i/PCI/SSE2
+NVIDIA Corporation GeForce 7050 / NVIDIA nForce 620i/PCI/SSE2
+NVIDIA Corporation GeForce 7050 / NVIDIA nForce 630i/PCI/SSE2
+NVIDIA Corporation GeForce 7050 / nForce 610i/PCI/SSE2
+NVIDIA Corporation GeForce 7050 / nForce 610i/integrated/SSE2
+NVIDIA Corporation GeForce 7050 / nForce 610i/integrated/SSE2
+NVIDIA Corporation GeForce 7050 / nForce 620i/PCI/SSE2
+NVIDIA Corporation GeForce 7050 / nForce 620i/PCI/SSE2
+NVIDIA Corporation GeForce 7050 / nForce 620i/integrated/SSE2
+NVIDIA Corporation GeForce 7050 / nForce 620i/integrated/SSE2
+NVIDIA Corporation GeForce 7050 / nForce 630i/PCI/SSE2
+NVIDIA Corporation GeForce 7050 / nForce 630i/integrated/SSE2
+NVIDIA Corporation GeForce 7050 PV / NVIDIA nForce 630a/PCI/SSE2/3DNOW!
+NVIDIA Corporation GeForce 7050 PV / nForce 630a/PCI/SSE2
+NVIDIA Corporation GeForce 7050 PV / nForce 630a/PCI/SSE2/3DNOW!
+NVIDIA Corporation GeForce 7050 PV / nForce 630a/integrated/SSE2
+NVIDIA Corporation GeForce 7050 PV / nForce 630a/integrated/SSE2/3DNOW!
+NVIDIA Corporation GeForce 7050 PV / nForce 630a/integrated/SSE2/3DNOW!
+NVIDIA Corporation GeForce 7100 / NVIDIA nForce 620i/PCI/SSE2
+NVIDIA Corporation GeForce 7100 / NVIDIA nForce 630i/PCI/SSE2
+NVIDIA Corporation GeForce 7100 / nForce 630i/PCI/SSE2
+NVIDIA Corporation GeForce 7100 / nForce 630i/PCI/SSE2
+NVIDIA Corporation GeForce 7100 / nForce 630i/integrated/SSE2
+NVIDIA Corporation GeForce 7100 / nForce 630i/integrated/SSE2
+NVIDIA Corporation GeForce 7100 GS/PCI/SSE2
+NVIDIA Corporation GeForce 7100 GS/PCI/SSE2/3DNOW!
+NVIDIA Corporation GeForce 7100 GS/PCIe/SSE2
+NVIDIA Corporation GeForce 7100 GS/PCIe/SSE2
+NVIDIA Corporation GeForce 7100 GS/PCIe/SSE2/3DNOW!
+NVIDIA Corporation GeForce 710A/PCIe/SSE2
+NVIDIA Corporation GeForce 710M/PCIe/SSE2
+NVIDIA Corporation GeForce 710M/PCIe/SSE2
+NVIDIA Corporation GeForce 710M/PCIe/SSE2
+NVIDIA Corporation GeForce 7150 / nForce 630i/PCI/SSE2
+NVIDIA Corporation GeForce 7150M / nForce 630M/PCI/SSE2
+NVIDIA Corporation GeForce 7150M / nForce 630M/PCI/SSE2
+NVIDIA Corporation GeForce 7150M / nForce 630M/PCI/SSE2
+NVIDIA Corporation GeForce 7150M / nForce 630M/PCI/SSE2/3DNOW!
+NVIDIA Corporation GeForce 7150M / nForce 630M/PCI/SSE2/3DNOW!
+NVIDIA Corporation GeForce 7150M / nForce 630M/PCI/SSE2/3DNOW!
+NVIDIA Corporation GeForce 7150M / nForce 630M/integrated/SSE2/3DNOW!
+NVIDIA Corporation GeForce 7300 GS/PCI/SSE2
+NVIDIA Corporation GeForce 7300 GS/PCI/SSE2/3DNOW!
+NVIDIA Corporation GeForce 7300 GS/PCIe/SSE2
+NVIDIA Corporation GeForce 7300 GS/PCIe/SSE2
+NVIDIA Corporation GeForce 7300 GS/PCIe/SSE2/3DNOW!
+NVIDIA Corporation GeForce 7300 GT/AGP/SSE2
+NVIDIA Corporation GeForce 7300 GT/AGP/SSE2/3DNOW!
+NVIDIA Corporation GeForce 7300 GT/PCI/SSE2
+NVIDIA Corporation GeForce 7300 GT/PCI/SSE2/3DNOW!
+NVIDIA Corporation GeForce 7300 GT/PCIe/SSE2
+NVIDIA Corporation GeForce 7300 GT/PCIe/SSE2
+NVIDIA Corporation GeForce 7300 GT/PCIe/SSE2/3DNOW!
+NVIDIA Corporation GeForce 7300 LE/PCI/SSE2
+NVIDIA Corporation GeForce 7300 LE/PCI/SSE2/3DNOW!
+NVIDIA Corporation GeForce 7300 LE/PCIe/SSE2
+NVIDIA Corporation GeForce 7300 LE/PCIe/SSE2
+NVIDIA Corporation GeForce 7300 LE/PCIe/SSE2/3DNOW!
+NVIDIA Corporation GeForce 7300 SE/7200 GS/PCI/SSE2
+NVIDIA Corporation GeForce 7300 SE/7200 GS/PCI/SSE2
+NVIDIA Corporation GeForce 7300 SE/7200 GS/PCI/SSE2/3DNOW!
+NVIDIA Corporation GeForce 7300 SE/7200 GS/PCIe/SSE2
+NVIDIA Corporation GeForce 7300 SE/7200 GS/PCIe/SSE2
+NVIDIA Corporation GeForce 7300 SE/7200 GS/PCIe/SSE2/3DNOW!
+NVIDIA Corporation GeForce 7300 SE/7200 GS/PCIe/SSE2/3DNOW!
+NVIDIA Corporation GeForce 7300 SE/PCI/SSE2
+NVIDIA Corporation GeForce 7300 SE/PCI/SSE2/3DNOW!
+NVIDIA Corporation GeForce 7300 SE/PCIe/SSE2
+NVIDIA Corporation GeForce 7350 LE/PCI/SSE2
+NVIDIA Corporation GeForce 7350 LE/PCIe/SSE2
+NVIDIA Corporation GeForce 7350 LE/PCIe/SSE2/3DNOW!
+NVIDIA Corporation GeForce 7500 LE/PCI/SSE2
+NVIDIA Corporation GeForce 7500 LE/PCI/SSE2/3DNOW!
+NVIDIA Corporation GeForce 7500 LE/PCIe/SSE2
+NVIDIA Corporation GeForce 7500 LE/PCIe/SSE2/3DNOW!
+NVIDIA Corporation GeForce 7600 GS/AGP/SSE2
+NVIDIA Corporation GeForce 7600 GS/AGP/SSE2/3DNOW!
+NVIDIA Corporation GeForce 7600 GS/PCI/SSE2
+NVIDIA Corporation GeForce 7600 GS/PCI/SSE2/3DNOW!
+NVIDIA Corporation GeForce 7600 GS/PCI/SSE2/3DNOW!
+NVIDIA Corporation GeForce 7600 GS/PCIe/SSE2
+NVIDIA Corporation GeForce 7600 GS/PCIe/SSE2/3DNOW!
+NVIDIA Corporation GeForce 7600 GT/AGP/SSE2
+NVIDIA Corporation GeForce 7600 GT/AGP/SSE2/3DNOW!
+NVIDIA Corporation GeForce 7600 GT/PCI/SSE2
+NVIDIA Corporation GeForce 7600 GT/PCI/SSE2/3DNOW!
+NVIDIA Corporation GeForce 7600 GT/PCIe/SSE2
+NVIDIA Corporation GeForce 7600 GT/PCIe/SSE2
+NVIDIA Corporation GeForce 7600 GT/PCIe/SSE2/3DNOW!
+NVIDIA Corporation GeForce 7600 LE/PCIe/SSE2
+NVIDIA Corporation GeForce 7650 GS/AGP/SSE2
+NVIDIA Corporation GeForce 7650 GS/PCI/SSE2
+NVIDIA Corporation GeForce 7650 GS/PCI/SSE2/3DNOW!
+NVIDIA Corporation GeForce 7650 GS/PCIe/SSE2
+NVIDIA Corporation GeForce 7800 GS/AGP/SSE2
+NVIDIA Corporation GeForce 7800 GS/AGP/SSE2/3DNOW!
+NVIDIA Corporation GeForce 7800 GS/PCI/SSE2/3DNOW!
+NVIDIA Corporation GeForce 7800 GT/PCI/SSE2
+NVIDIA Corporation GeForce 7800 GT/PCIe/SSE2
+NVIDIA Corporation GeForce 7800 GT/PCIe/SSE2/3DNOW!
+NVIDIA Corporation GeForce 7800 GTX/PCI/SSE2
+NVIDIA Corporation GeForce 7800 GTX/PCIe/SSE2
+NVIDIA Corporation GeForce 7800 GTX/PCIe/SSE2/3DNOW!
+NVIDIA Corporation GeForce 7900 GS/AGP/SSE2
+NVIDIA Corporation GeForce 7900 GS/AGP/SSE2/3DNOW!
+NVIDIA Corporation GeForce 7900 GS/PCI/SSE2
+NVIDIA Corporation GeForce 7900 GS/PCI/SSE2/3DNOW!
+NVIDIA Corporation GeForce 7900 GS/PCIe/SSE2
+NVIDIA Corporation GeForce 7900 GS/PCIe/SSE2/3DNOW!
+NVIDIA Corporation GeForce 7900 GT/GTO/PCI/SSE2/3DNOW!
+NVIDIA Corporation GeForce 7900 GT/GTO/PCIe/SSE2
+NVIDIA Corporation GeForce 7900 GT/GTO/PCIe/SSE2/3DNOW!
+NVIDIA Corporation GeForce 7900 GT/PCI/SSE2
+NVIDIA Corporation GeForce 7900 GTX/PCI/SSE2
+NVIDIA Corporation GeForce 7900 GTX/PCI/SSE2/3DNOW!
+NVIDIA Corporation GeForce 7900 GTX/PCIe/SSE2
+NVIDIA Corporation GeForce 7900 GTX/PCIe/SSE2/3DNOW!
+NVIDIA Corporation GeForce 7950 GT/AGP/SSE2
+NVIDIA Corporation GeForce 7950 GT/AGP/SSE2/3DNOW!
+NVIDIA Corporation GeForce 7950 GT/PCI/SSE2
+NVIDIA Corporation GeForce 7950 GT/PCI/SSE2/3DNOW!
+NVIDIA Corporation GeForce 7950 GT/PCIe/SSE2
+NVIDIA Corporation GeForce 7950 GT/PCIe/SSE2/3DNOW!
+NVIDIA Corporation GeForce 7950 GX2/PCI/SSE2
+NVIDIA Corporation GeForce 7950 GX2/PCIe/SSE2
+NVIDIA Corporation GeForce 7950 GX2/PCIe/SSE2/3DNOW!
+NVIDIA Corporation GeForce 8100 / nForce 720a/PCI/SSE2
+NVIDIA Corporation GeForce 8100 / nForce 720a/PCI/SSE2/3DNOW!
+NVIDIA Corporation GeForce 8100 / nForce 720a/integrated/SSE2
+NVIDIA Corporation GeForce 8100 / nForce 720a/integrated/SSE2/3DNOW!
+NVIDIA Corporation GeForce 8200/PCI/SSE2
+NVIDIA Corporation GeForce 8200/PCI/SSE2/3DNOW!
+NVIDIA Corporation GeForce 8200/PCI/SSE2/3DNOW!
+NVIDIA Corporation GeForce 8200/integrated/SSE2
+NVIDIA Corporation GeForce 8200/integrated/SSE2/3DNOW!
+NVIDIA Corporation GeForce 8200/integrated/SSE2/3DNOW!
+NVIDIA Corporation GeForce 8200M G/PCI/SSE2
+NVIDIA Corporation GeForce 8200M G/PCI/SSE2
+NVIDIA Corporation GeForce 8200M G/PCI/SSE2/3DNOW!
+NVIDIA Corporation GeForce 8200M G/integrated/SSE2
+NVIDIA Corporation GeForce 8200M G/integrated/SSE2/3DNOW!
+NVIDIA Corporation GeForce 8200M/PCI/SSE2/3DNOW!
+NVIDIA Corporation GeForce 8300 GS/PCI/SSE2
+NVIDIA Corporation GeForce 8300 GS/PCI/SSE2/3DNOW!
+NVIDIA Corporation GeForce 8300 GS/PCIe/SSE2
+NVIDIA Corporation GeForce 8300 GS/PCIe/SSE2/3DNOW!
+NVIDIA Corporation GeForce 8300/PCI/SSE2
+NVIDIA Corporation GeForce 8300/PCI/SSE2/3DNOW!
+NVIDIA Corporation GeForce 8300/integrated/SSE2
+NVIDIA Corporation GeForce 8300/integrated/SSE2/3DNOW!
+NVIDIA Corporation GeForce 8400 GS/PCI/SSE2
+NVIDIA Corporation GeForce 8400 GS/PCI/SSE2
+NVIDIA Corporation GeForce 8400 GS/PCI/SSE2/3DNOW!
+NVIDIA Corporation GeForce 8400 GS/PCI/SSE2/3DNOW!
+NVIDIA Corporation GeForce 8400 GS/PCIe/SSE2
+NVIDIA Corporation GeForce 8400 GS/PCIe/SSE2
+NVIDIA Corporation GeForce 8400 GS/PCIe/SSE2/3DNOW!
+NVIDIA Corporation GeForce 8400 GS/PCIe/SSE2/3DNOW!
+NVIDIA Corporation GeForce 8400 SE/PCI/SSE2
+NVIDIA Corporation GeForce 8400 SE/PCIe/SSE2
+NVIDIA Corporation GeForce 8400/PCI/SSE2
+NVIDIA Corporation GeForce 8400/PCI/SSE2/3DNOW!
+NVIDIA Corporation GeForce 8400/PCIe/SSE2
+NVIDIA Corporation GeForce 8400/PCIe/SSE2/3DNOW!
+NVIDIA Corporation GeForce 8400GS/PCI/SSE2
+NVIDIA Corporation GeForce 8400GS/PCI/SSE2/3DNOW!
+NVIDIA Corporation GeForce 8400GS/PCIe/SSE2
+NVIDIA Corporation GeForce 8400GS/PCIe/SSE2
+NVIDIA Corporation GeForce 8400GS/PCIe/SSE2/3DNOW!
+NVIDIA Corporation GeForce 8400M G/PCI/SSE2
+NVIDIA Corporation GeForce 8400M G/PCI/SSE2
+NVIDIA Corporation GeForce 8400M G/PCI/SSE2/3DNOW!
+NVIDIA Corporation GeForce 8400M G/PCIe/SSE2
+NVIDIA Corporation GeForce 8400M G/PCIe/SSE2
+NVIDIA Corporation GeForce 8400M G/PCIe/SSE2/3DNOW!
+NVIDIA Corporation GeForce 8400M GS/PCI/SSE2
+NVIDIA Corporation GeForce 8400M GS/PCI/SSE2
+NVIDIA Corporation GeForce 8400M GS/PCI/SSE2/3DNOW!
+NVIDIA Corporation GeForce 8400M GS/PCIe/SSE2
+NVIDIA Corporation GeForce 8400M GS/PCIe/SSE2
+NVIDIA Corporation GeForce 8400M GS/PCIe/SSE2/3DNOW!
+NVIDIA Corporation GeForce 8400M GS/PCIe/SSE2/3DNOW!
+NVIDIA Corporation GeForce 8400M GT/PCI/SSE2
+NVIDIA Corporation GeForce 8400M GT/PCIe/SSE2
+NVIDIA Corporation GeForce 8500 GT/PCI/SSE2
+NVIDIA Corporation GeForce 8500 GT/PCI/SSE2/3DNOW!
+NVIDIA Corporation GeForce 8500 GT/PCI/SSE2/3DNOW!
+NVIDIA Corporation GeForce 8500 GT/PCIe/SSE2
+NVIDIA Corporation GeForce 8500 GT/PCIe/SSE2/3DNOW!
+NVIDIA Corporation GeForce 8500 GT/PCIe/SSE2/3DNOW!
+NVIDIA Corporation GeForce 8600 GS/PCI/SSE2
+NVIDIA Corporation GeForce 8600 GS/PCI/SSE2/3DNOW!
+NVIDIA Corporation GeForce 8600 GS/PCIe/SSE2
+NVIDIA Corporation GeForce 8600 GS/PCIe/SSE2/3DNOW!
+NVIDIA Corporation GeForce 8600 GT/PCI/SSE2
+NVIDIA Corporation GeForce 8600 GT/PCI/SSE2/3DNOW!
+NVIDIA Corporation GeForce 8600 GT/PCIe/SSE2
+NVIDIA Corporation GeForce 8600 GT/PCIe/SSE2
+NVIDIA Corporation GeForce 8600 GT/PCIe/SSE2/3DNOW!
+NVIDIA Corporation GeForce 8600 GTS/PCI/SSE2
+NVIDIA Corporation GeForce 8600 GTS/PCI/SSE2
+NVIDIA Corporation GeForce 8600 GTS/PCI/SSE2/3DNOW!
+NVIDIA Corporation GeForce 8600 GTS/PCIe/SSE2
+NVIDIA Corporation GeForce 8600 GTS/PCIe/SSE2
+NVIDIA Corporation GeForce 8600 GTS/PCIe/SSE2/3DNOW!
+NVIDIA Corporation GeForce 8600GS/PCI/SSE2
+NVIDIA Corporation GeForce 8600GS/PCI/SSE2/3DNOW!
+NVIDIA Corporation GeForce 8600M GS/PCI/SSE2
+NVIDIA Corporation GeForce 8600M GS/PCI/SSE2
+NVIDIA Corporation GeForce 8600M GS/PCI/SSE2/3DNOW!
+NVIDIA Corporation GeForce 8600M GS/PCIe/SSE2
+NVIDIA Corporation GeForce 8600M GS/PCIe/SSE2
+NVIDIA Corporation GeForce 8600M GS/PCIe/SSE2/3DNOW!
+NVIDIA Corporation GeForce 8600M GT/PCI/SSE2
+NVIDIA Corporation GeForce 8600M GT/PCI/SSE2
+NVIDIA Corporation GeForce 8600M GT/PCI/SSE2/3DNOW!
+NVIDIA Corporation GeForce 8600M GT/PCIe/SSE2
+NVIDIA Corporation GeForce 8600M GT/PCIe/SSE2
+NVIDIA Corporation GeForce 8600M GT/PCIe/SSE2/3DNOW!
+NVIDIA Corporation GeForce 8700M GT/PCI/SSE2
+NVIDIA Corporation GeForce 8700M GT/PCIe/SSE2
+NVIDIA Corporation GeForce 8700M GT/PCIe/SSE2
+NVIDIA Corporation GeForce 8800 GS/PCI/SSE2
+NVIDIA Corporation GeForce 8800 GS/PCI/SSE2/3DNOW!
+NVIDIA Corporation GeForce 8800 GS/PCIe/SSE2
+NVIDIA Corporation GeForce 8800 GS/PCIe/SSE2
+NVIDIA Corporation GeForce 8800 GS/PCIe/SSE2/3DNOW!
+NVIDIA Corporation GeForce 8800 GT/PCI/SSE2
+NVIDIA Corporation GeForce 8800 GT/PCI/SSE2/3DNOW!
+NVIDIA Corporation GeForce 8800 GT/PCIe/SSE2
+NVIDIA Corporation GeForce 8800 GT/PCIe/SSE2
+NVIDIA Corporation GeForce 8800 GT/PCIe/SSE2/3DNOW!
+NVIDIA Corporation GeForce 8800 GTS 512/PCI/SSE2
+NVIDIA Corporation GeForce 8800 GTS 512/PCI/SSE2/3DNOW!
+NVIDIA Corporation GeForce 8800 GTS 512/PCIe/SSE2
+NVIDIA Corporation GeForce 8800 GTS 512/PCIe/SSE2/3DNOW!
+NVIDIA Corporation GeForce 8800 GTS/PCI/SSE2
+NVIDIA Corporation GeForce 8800 GTS/PCI/SSE2/3DNOW!
+NVIDIA Corporation GeForce 8800 GTS/PCIe/SSE2
+NVIDIA Corporation GeForce 8800 GTS/PCIe/SSE2
+NVIDIA Corporation GeForce 8800 GTS/PCIe/SSE2/3DNOW!
+NVIDIA Corporation GeForce 8800 GTX/PCI/SSE2
+NVIDIA Corporation GeForce 8800 GTX/PCI/SSE2
+NVIDIA Corporation GeForce 8800 GTX/PCI/SSE2/3DNOW!
+NVIDIA Corporation GeForce 8800 GTX/PCIe/SSE2
+NVIDIA Corporation GeForce 8800 GTX/PCIe/SSE2/3DNOW!
+NVIDIA Corporation GeForce 8800 Ultra/PCI/SSE2
+NVIDIA Corporation GeForce 8800 Ultra/PCIe/SSE2
+NVIDIA Corporation GeForce 8800 Ultra/PCIe/SSE2/3DNOW!
+NVIDIA Corporation GeForce 8800M GTS/PCI/SSE2
+NVIDIA Corporation GeForce 8800M GTS/PCIe/SSE2
+NVIDIA Corporation GeForce 8800M GTX/PCI/SSE2
+NVIDIA Corporation GeForce 8800M GTX/PCIe/SSE2
+NVIDIA Corporation GeForce 9100/PCI/SSE2
+NVIDIA Corporation GeForce 9100/PCI/SSE2
+NVIDIA Corporation GeForce 9100/PCI/SSE2/3DNOW!
+NVIDIA Corporation GeForce 9100/integrated/SSE2
+NVIDIA Corporation GeForce 9100/integrated/SSE2
+NVIDIA Corporation GeForce 9100/integrated/SSE2/3DNOW!
+NVIDIA Corporation GeForce 9100M G/PCI/SSE2
+NVIDIA Corporation GeForce 9100M G/PCI/SSE2
+NVIDIA Corporation GeForce 9100M G/PCI/SSE2/3DNOW!
+NVIDIA Corporation GeForce 9100M G/integrated/SSE2
+NVIDIA Corporation GeForce 9100M G/integrated/SSE2/3DNOW!
+NVIDIA Corporation GeForce 9200/PCI/SSE2
+NVIDIA Corporation GeForce 9200/PCI/SSE2
+NVIDIA Corporation GeForce 9200/PCI/SSE2/3DNOW!
+NVIDIA Corporation GeForce 9200/integrated/SSE2
+NVIDIA Corporation GeForce 9200/integrated/SSE2
+NVIDIA Corporation GeForce 9200/integrated/SSE2/3DNOW!
+NVIDIA Corporation GeForce 9200/integrated/SSE2/3DNOW!
+NVIDIA Corporation GeForce 9200M GE/PCI/SSE2
+NVIDIA Corporation GeForce 9200M GE/PCI/SSE2
+NVIDIA Corporation GeForce 9200M GE/PCIe/SSE2
+NVIDIA Corporation GeForce 9200M GS/PCI/SSE2
+NVIDIA Corporation GeForce 9200M GS/PCI/SSE2
+NVIDIA Corporation GeForce 9200M GS/PCIe/SSE2
+NVIDIA Corporation GeForce 9200M GS/PCIe/SSE2
+NVIDIA Corporation GeForce 9300 / nForce 730i/integrated/SSE2
+NVIDIA Corporation GeForce 9300 GE/PCI/SSE2
+NVIDIA Corporation GeForce 9300 GE/PCI/SSE2/3DNOW!
+NVIDIA Corporation GeForce 9300 GE/PCIe/SSE2
+NVIDIA Corporation GeForce 9300 GE/PCIe/SSE2
+NVIDIA Corporation GeForce 9300 GE/PCIe/SSE2/3DNOW!
+NVIDIA Corporation GeForce 9300 GS/PCI/SSE2
+NVIDIA Corporation GeForce 9300 GS/PCI/SSE2/3DNOW!
+NVIDIA Corporation GeForce 9300 GS/PCIe/SSE2
+NVIDIA Corporation GeForce 9300 GS/PCIe/SSE2/3DNOW!
+NVIDIA Corporation GeForce 9300 SE/PCIe/SSE2
+NVIDIA Corporation GeForce 9300/PCI/SSE2
+NVIDIA Corporation GeForce 9300/integrated/SSE2
+NVIDIA Corporation GeForce 9300M G/PCI/SSE2
+NVIDIA Corporation GeForce 9300M G/PCI/SSE2
+NVIDIA Corporation GeForce 9300M G/PCI/SSE2
+NVIDIA Corporation GeForce 9300M G/PCIe/SSE2
+NVIDIA Corporation GeForce 9300M G/PCIe/SSE2
+NVIDIA Corporation GeForce 9300M G/PCIe/SSE2/3DNOW!
+NVIDIA Corporation GeForce 9300M GS/PCI/SSE2
+NVIDIA Corporation GeForce 9300M GS/PCI/SSE2
+NVIDIA Corporation GeForce 9300M GS/PCI/SSE2
+NVIDIA Corporation GeForce 9300M GS/PCI/SSE2/3DNOW!
+NVIDIA Corporation GeForce 9300M GS/PCIe/SSE2
+NVIDIA Corporation GeForce 9300M GS/PCIe/SSE2
+NVIDIA Corporation GeForce 9300M GS/PCIe/SSE2
+NVIDIA Corporation GeForce 9400 GT/PCI/SSE2
+NVIDIA Corporation GeForce 9400 GT/PCI/SSE2
+NVIDIA Corporation GeForce 9400 GT/PCI/SSE2/3DNOW!
+NVIDIA Corporation GeForce 9400 GT/PCIe/SSE2
+NVIDIA Corporation GeForce 9400 GT/PCIe/SSE2
+NVIDIA Corporation GeForce 9400 GT/PCIe/SSE2/3DNOW!
+NVIDIA Corporation GeForce 9400/PCI/SSE2
+NVIDIA Corporation GeForce 9400/integrated/SSE2
+NVIDIA Corporation GeForce 9400/integrated/SSE2
+NVIDIA Corporation GeForce 9400M G/PCI/SSE2
+NVIDIA Corporation GeForce 9400M G/PCI/SSE2
+NVIDIA Corporation GeForce 9400M G/integrated/SSE2
+NVIDIA Corporation GeForce 9400M/PCI/SSE2
+NVIDIA Corporation GeForce 9400M/integrated/SSE2
+NVIDIA Corporation GeForce 9500 GS/PCI/SSE2
+NVIDIA Corporation GeForce 9500 GS/PCI/SSE2/3DNOW!
+NVIDIA Corporation GeForce 9500 GS/PCIe/SSE2
+NVIDIA Corporation GeForce 9500 GS/PCIe/SSE2
+NVIDIA Corporation GeForce 9500 GS/PCIe/SSE2/3DNOW!
+NVIDIA Corporation GeForce 9500 GT/PCI/SSE2
+NVIDIA Corporation GeForce 9500 GT/PCI/SSE2
+NVIDIA Corporation GeForce 9500 GT/PCI/SSE2/3DNOW!
+NVIDIA Corporation GeForce 9500 GT/PCI/SSE2/3DNOW!
+NVIDIA Corporation GeForce 9500 GT/PCIe/SSE2
+NVIDIA Corporation GeForce 9500 GT/PCIe/SSE2
+NVIDIA Corporation GeForce 9500 GT/PCIe/SSE2
+NVIDIA Corporation GeForce 9500 GT/PCIe/SSE2/3DNOW!
+NVIDIA Corporation GeForce 9500 GT/PCIe/SSE2/3DNOW!
+NVIDIA Corporation GeForce 9500 GT/PCIe/SSE2/3DNOW!
+NVIDIA Corporation GeForce 9500M GS/PCI/SSE2
+NVIDIA Corporation GeForce 9500M GS/PCI/SSE2/3DNOW!
+NVIDIA Corporation GeForce 9500M GS/PCIe/SSE2
+NVIDIA Corporation GeForce 9600 GS/PCI/SSE2
+NVIDIA Corporation GeForce 9600 GS/PCI/SSE2/3DNOW!
+NVIDIA Corporation GeForce 9600 GS/PCIe/SSE2
+NVIDIA Corporation GeForce 9600 GS/PCIe/SSE2/3DNOW!
+NVIDIA Corporation GeForce 9600 GSO 512/PCI/SSE2
+NVIDIA Corporation GeForce 9600 GSO 512/PCI/SSE2/3DNOW!
+NVIDIA Corporation GeForce 9600 GSO 512/PCIe/SSE2
+NVIDIA Corporation GeForce 9600 GSO 512/PCIe/SSE2/3DNOW!
+NVIDIA Corporation GeForce 9600 GSO/PCI/SSE2
+NVIDIA Corporation GeForce 9600 GSO/PCI/SSE2/3DNOW!
+NVIDIA Corporation GeForce 9600 GSO/PCIe/SSE2
+NVIDIA Corporation GeForce 9600 GSO/PCIe/SSE2/3DNOW!
+NVIDIA Corporation GeForce 9600 GT/PCI/SSE2
+NVIDIA Corporation GeForce 9600 GT/PCI/SSE2/3DNOW!
+NVIDIA Corporation GeForce 9600 GT/PCIe/SSE2
+NVIDIA Corporation GeForce 9600 GT/PCIe/SSE2
+NVIDIA Corporation GeForce 9600 GT/PCIe/SSE2
+NVIDIA Corporation GeForce 9600 GT/PCIe/SSE2/3DNOW!
+NVIDIA Corporation GeForce 9600 GT/PCIe/SSE2/3DNOW!
+NVIDIA Corporation GeForce 9600M GS/PCI/SSE2
+NVIDIA Corporation GeForce 9600M GS/PCI/SSE2
+NVIDIA Corporation GeForce 9600M GS/PCI/SSE2/3DNOW!
+NVIDIA Corporation GeForce 9600M GS/PCIe/SSE2
+NVIDIA Corporation GeForce 9600M GT/PCI/SSE2
+NVIDIA Corporation GeForce 9600M GT/PCI/SSE2
+NVIDIA Corporation GeForce 9600M GT/PCI/SSE2/3DNOW!
+NVIDIA Corporation GeForce 9600M GT/PCIe/SSE2
+NVIDIA Corporation GeForce 9600M GT/PCIe/SSE2
+NVIDIA Corporation GeForce 9600M GT/PCIe/SSE2
+NVIDIA Corporation GeForce 9600M GT/PCIe/SSE2/3DNOW!
+NVIDIA Corporation GeForce 9650M GS/PCIe/SSE2
+NVIDIA Corporation GeForce 9650M GT/PCI/SSE2
+NVIDIA Corporation GeForce 9650M GT/PCI/SSE2
+NVIDIA Corporation GeForce 9650M GT/PCIe/SSE2
+NVIDIA Corporation GeForce 9700M GT/PCI/SSE2
+NVIDIA Corporation GeForce 9700M GT/PCIe/SSE2
+NVIDIA Corporation GeForce 9700M GTS/PCI/SSE2
+NVIDIA Corporation GeForce 9700M GTS/PCI/SSE2
+NVIDIA Corporation GeForce 9700M GTS/PCIe/SSE2
+NVIDIA Corporation GeForce 9800 GT/PCI/SSE2
+NVIDIA Corporation GeForce 9800 GT/PCI/SSE2
+NVIDIA Corporation GeForce 9800 GT/PCI/SSE2/3DNOW!
+NVIDIA Corporation GeForce 9800 GT/PCI/SSE2/3DNOW!
+NVIDIA Corporation GeForce 9800 GT/PCIe/SSE2
+NVIDIA Corporation GeForce 9800 GT/PCIe/SSE2
+NVIDIA Corporation GeForce 9800 GT/PCIe/SSE2
+NVIDIA Corporation GeForce 9800 GT/PCIe/SSE2/3DNOW!
+NVIDIA Corporation GeForce 9800 GT/PCIe/SSE2/3DNOW!
+NVIDIA Corporation GeForce 9800 GTX+/PCI/SSE2
+NVIDIA Corporation GeForce 9800 GTX+/PCI/SSE2/3DNOW!
+NVIDIA Corporation GeForce 9800 GTX+/PCIe/SSE2
+NVIDIA Corporation GeForce 9800 GTX+/PCIe/SSE2
+NVIDIA Corporation GeForce 9800 GTX+/PCIe/SSE2/3DNOW!
+NVIDIA Corporation GeForce 9800 GTX/9800 GTX+/PCI/SSE2
+NVIDIA Corporation GeForce 9800 GTX/9800 GTX+/PCI/SSE2/3DNOW!
+NVIDIA Corporation GeForce 9800 GTX/9800 GTX+/PCIe/SSE2
+NVIDIA Corporation GeForce 9800 GTX/9800 GTX+/PCIe/SSE2
+NVIDIA Corporation GeForce 9800 GTX/9800 GTX+/PCIe/SSE2/3DNOW!
+NVIDIA Corporation GeForce 9800 GTX/PCI/SSE2
+NVIDIA Corporation GeForce 9800 GTX/PCI/SSE2
+NVIDIA Corporation GeForce 9800 GX2/PCIe/SSE2
+NVIDIA Corporation GeForce 9800 S/PCI/SSE2
+NVIDIA Corporation GeForce 9800M GS/PCI/SSE2
+NVIDIA Corporation GeForce 9800M GS/PCIe/SSE2
+NVIDIA Corporation GeForce 9800M GT/PCI/SSE2
+NVIDIA Corporation GeForce 9800M GT/PCIe/SSE2
+NVIDIA Corporation GeForce 9800M GTS/PCI/SSE2
+NVIDIA Corporation GeForce 9800M GTS/PCIe/SSE2
+NVIDIA Corporation GeForce 9800M GTX/PCI/SSE2
+NVIDIA Corporation GeForce 9800M GTX/PCIe/SSE2
+NVIDIA Corporation GeForce FX 5100/AGP/SSE2
+NVIDIA Corporation GeForce FX 5200 Ultra/AGP/SSE2
+NVIDIA Corporation GeForce FX 5200 Ultra/AGP/SSE2/3DNOW!
+NVIDIA Corporation GeForce FX 5200/AGP/SSE/3DNOW!
+NVIDIA Corporation GeForce FX 5200/AGP/SSE2
+NVIDIA Corporation GeForce FX 5200/AGP/SSE2
+NVIDIA Corporation GeForce FX 5200/AGP/SSE2/3DNOW!
+NVIDIA Corporation GeForce FX 5200/PCI/SSE2
+NVIDIA Corporation GeForce FX 5200/PCI/SSE2/3DNOW!
+NVIDIA Corporation GeForce FX 5200LE/AGP/SSE2
+NVIDIA Corporation GeForce FX 5200LE/AGP/SSE2/3DNOW!
+NVIDIA Corporation GeForce FX 5200SE/AGP/SSE2
+NVIDIA Corporation GeForce FX 5500/AGP/SSE2
+NVIDIA Corporation GeForce FX 5500/AGP/SSE2
+NVIDIA Corporation GeForce FX 5500/AGP/SSE2/3DNOW!
+NVIDIA Corporation GeForce FX 5500/AGP/SSE2/3DNOW!
+NVIDIA Corporation GeForce FX 5500/PCI/SSE2
+NVIDIA Corporation GeForce FX 5500/PCI/SSE2/3DNOW!
+NVIDIA Corporation GeForce FX 5600/AGP/SSE2
+NVIDIA Corporation GeForce FX 5600XT/AGP/SSE2
+NVIDIA Corporation GeForce FX 5600XT/AGP/SSE2/3DNOW!
+NVIDIA Corporation GeForce FX 5600XT/PCI/SSE2
+NVIDIA Corporation GeForce FX 5700/AGP/SSE2
+NVIDIA Corporation GeForce FX 5700/AGP/SSE2/3DNOW!
+NVIDIA Corporation GeForce FX 5700LE/AGP/SSE2
+NVIDIA Corporation GeForce FX 5700LE/AGP/SSE2/3DNOW!
+NVIDIA Corporation GeForce FX 5700LE/PCI/SSE2/3DNOW!
+NVIDIA Corporation GeForce FX 5700VE/AGP/SSE2
+NVIDIA Corporation GeForce FX 5700VE/AGP/SSE2/3DNOW!
+NVIDIA Corporation GeForce FX 5900 Ultra/AGP/SSE2
+NVIDIA Corporation GeForce FX 5900/AGP/SSE2
+NVIDIA Corporation GeForce FX 5900XT/AGP/SSE2
+NVIDIA Corporation GeForce FX 5900ZT/AGP/SSE2/3DNOW!
+NVIDIA Corporation GeForce FX 5950 Ultra/AGP/SSE2
+NVIDIA Corporation GeForce FX 5950 Ultra/AGP/SSE2/3DNOW!
+NVIDIA Corporation GeForce FX Go5200 32M/64M/AGP/SSE2
+NVIDIA Corporation GeForce FX Go5200/AGP/SSE2
+NVIDIA Corporation GeForce FX Go5200/AGP/SSE2/3DNOW!
+NVIDIA Corporation GeForce FX Go5200/PCI/SSE2
+NVIDIA Corporation GeForce FX Go5300/AGP/SSE2
+NVIDIA Corporation GeForce FX Go53xx Series/AGP/SSE2
+NVIDIA Corporation GeForce FX Go5600/AGP/SSE2
+NVIDIA Corporation GeForce FX Go5650/AGP/SSE2
+NVIDIA Corporation GeForce FX Go5700/AGP/SSE2
+NVIDIA Corporation GeForce FX Go5700/AGP/SSE2/3DNOW!
+NVIDIA Corporation GeForce G 103M/PCI/SSE2
+NVIDIA Corporation GeForce G 103M/PCI/SSE2
+NVIDIA Corporation GeForce G 103M/PCIe/SSE2
+NVIDIA Corporation GeForce G 103M/PCIe/SSE2
+NVIDIA Corporation GeForce G 105M/PCI/SSE2
+NVIDIA Corporation GeForce G 105M/PCIe/SSE2
+NVIDIA Corporation GeForce G 105M/PCIe/SSE2
+NVIDIA Corporation GeForce G 110M/PCI/SSE2
+NVIDIA Corporation GeForce G100/PCI/SSE2
+NVIDIA Corporation GeForce G100/PCI/SSE2
+NVIDIA Corporation GeForce G100/PCI/SSE2/3DNOW!
+NVIDIA Corporation GeForce G100/PCIe/SSE2
+NVIDIA Corporation GeForce G100/PCIe/SSE2
+NVIDIA Corporation GeForce G100/PCIe/SSE2/3DNOW!
+NVIDIA Corporation GeForce G100/PCIe/SSE2/3DNOW!
+NVIDIA Corporation GeForce G102M/PCI/SSE2
+NVIDIA Corporation GeForce G102M/PCI/SSE2
+NVIDIA Corporation GeForce G102M/integrated/SSE2
+NVIDIA Corporation GeForce G102M/integrated/SSE2
+NVIDIA Corporation GeForce G105M/PCI/SSE2
+NVIDIA Corporation GeForce G105M/PCI/SSE2
+NVIDIA Corporation GeForce G105M/PCIe/SSE2
+NVIDIA Corporation GeForce G105M/PCIe/SSE2
+NVIDIA Corporation GeForce G200/PCI/SSE2
+NVIDIA Corporation GeForce G200/PCI/SSE2
+NVIDIA Corporation GeForce G200/integrated/SSE2
+NVIDIA Corporation GeForce G205M/PCI/SSE2
+NVIDIA Corporation GeForce G205M/integrated/SSE2
+NVIDIA Corporation GeForce G205M/integrated/SSE2
+NVIDIA Corporation GeForce G210/PCI/SSE2
+NVIDIA Corporation GeForce G210/PCI/SSE2
+NVIDIA Corporation GeForce G210/PCI/SSE2
+NVIDIA Corporation GeForce G210/PCI/SSE2/3DNOW!
+NVIDIA Corporation GeForce G210/PCIe/SSE2
+NVIDIA Corporation GeForce G210/PCIe/SSE2
+NVIDIA Corporation GeForce G210/PCIe/SSE2
+NVIDIA Corporation GeForce G210/PCIe/SSE2/3DNOW!
+NVIDIA Corporation GeForce G210M/PCI/SSE2
+NVIDIA Corporation GeForce G210M/PCI/SSE2
+NVIDIA Corporation GeForce G210M/PCIe/SSE2
+NVIDIA Corporation GeForce G210M/PCIe/SSE2
+NVIDIA Corporation GeForce GT 120/PCI/SSE2
+NVIDIA Corporation GeForce GT 120/PCI/SSE2/3DNOW!
+NVIDIA Corporation GeForce GT 120/PCIe/SSE2
+NVIDIA Corporation GeForce GT 120/PCIe/SSE2
+NVIDIA Corporation GeForce GT 120/PCIe/SSE2/3DNOW!
+NVIDIA Corporation GeForce GT 120M/PCI/SSE2
+NVIDIA Corporation GeForce GT 120M/PCI/SSE2
+NVIDIA Corporation GeForce GT 120M/PCIe/SSE2
+NVIDIA Corporation GeForce GT 120M/PCIe/SSE2
+NVIDIA Corporation GeForce GT 130/PCI/SSE2
+NVIDIA Corporation GeForce GT 130/PCIe/SSE2
+NVIDIA Corporation GeForce GT 130/PCIe/SSE2
+NVIDIA Corporation GeForce GT 130/PCIe/SSE2/3DNOW!
+NVIDIA Corporation GeForce GT 130M/PCI/SSE2
+NVIDIA Corporation GeForce GT 130M/PCIe/SSE2
+NVIDIA Corporation GeForce GT 130M/PCIe/SSE2
+NVIDIA Corporation GeForce GT 140/PCI/SSE2
+NVIDIA Corporation GeForce GT 140/PCIe/SSE2
+NVIDIA Corporation GeForce GT 220/PCI/SSE2
+NVIDIA Corporation GeForce GT 220/PCI/SSE2
+NVIDIA Corporation GeForce GT 220/PCI/SSE2/3DNOW!
+NVIDIA Corporation GeForce GT 220/PCIe/SSE2
+NVIDIA Corporation GeForce GT 220/PCIe/SSE2
+NVIDIA Corporation GeForce GT 220/PCIe/SSE2/3DNOW!
+NVIDIA Corporation GeForce GT 220/PCIe/SSE2/3DNOW!
+NVIDIA Corporation GeForce GT 220M/PCI/SSE2
+NVIDIA Corporation GeForce GT 220M/PCI/SSE2
+NVIDIA Corporation GeForce GT 220M/PCIe/SSE2
+NVIDIA Corporation GeForce GT 220M/PCIe/SSE2
+NVIDIA Corporation GeForce GT 220M/PCIe/SSE2
 NVIDIA Corporation GeForce GT 230/PCI/SSE2
+NVIDIA Corporation GeForce GT 230/PCIe/SSE2
+NVIDIA Corporation GeForce GT 230/PCIe/SSE2
+NVIDIA Corporation GeForce GT 230/PCIe/SSE2/3DNOW!
+NVIDIA Corporation GeForce GT 230M/PCI/SSE2
+NVIDIA Corporation GeForce GT 230M/PCIe/SSE2
+NVIDIA Corporation GeForce GT 230M/PCIe/SSE2
+NVIDIA Corporation GeForce GT 230M/PCIe/SSE2
+NVIDIA Corporation GeForce GT 240/PCI/SSE2
+NVIDIA Corporation GeForce GT 240/PCI/SSE2
+NVIDIA Corporation GeForce GT 240/PCI/SSE2/3DNOW!
+NVIDIA Corporation GeForce GT 240/PCIe/SSE2
+NVIDIA Corporation GeForce GT 240/PCIe/SSE2
+NVIDIA Corporation GeForce GT 240/PCIe/SSE2/3DNOW!
+NVIDIA Corporation GeForce GT 240/PCIe/SSE2/3DNOW!
+NVIDIA Corporation GeForce GT 240M LE/PCIe/SSE2
+NVIDIA Corporation GeForce GT 240M/PCI/SSE2
+NVIDIA Corporation GeForce GT 240M/PCI/SSE2
+NVIDIA Corporation GeForce GT 240M/PCI/SSE2
+NVIDIA Corporation GeForce GT 240M/PCI/SSE2/3DNOW!
+NVIDIA Corporation GeForce GT 240M/PCIe/SSE2
+NVIDIA Corporation GeForce GT 240M/PCIe/SSE2
+NVIDIA Corporation GeForce GT 240M/PCIe/SSE2
+NVIDIA Corporation GeForce GT 320/PCI/SSE2
+NVIDIA Corporation GeForce GT 320/PCI/SSE2/3DNOW!
+NVIDIA Corporation GeForce GT 320/PCIe/SSE2
+NVIDIA Corporation GeForce GT 320/PCIe/SSE2
+NVIDIA Corporation GeForce GT 320/PCIe/SSE2/3DNOW!
+NVIDIA Corporation GeForce GT 320M/PCI/SSE2
+NVIDIA Corporation GeForce GT 320M/PCIe/SSE2
+NVIDIA Corporation GeForce GT 320M/PCIe/SSE2
+NVIDIA Corporation GeForce GT 325M/PCI/SSE2
+NVIDIA Corporation GeForce GT 325M/PCIe/SSE2
+NVIDIA Corporation GeForce GT 330/PCI/SSE2
+NVIDIA Corporation GeForce GT 330/PCIe/SSE2
+NVIDIA Corporation GeForce GT 330/PCIe/SSE2
+NVIDIA Corporation GeForce GT 330/PCIe/SSE2/3DNOW!
+NVIDIA Corporation GeForce GT 330M/PCI/SSE2
+NVIDIA Corporation GeForce GT 330M/PCI/SSE2
+NVIDIA Corporation GeForce GT 330M/PCIe/SSE2
+NVIDIA Corporation GeForce GT 330M/PCIe/SSE2
+NVIDIA Corporation GeForce GT 335M/PCI/SSE2
+NVIDIA Corporation GeForce GT 335M/PCIe/SSE2
+NVIDIA Corporation GeForce GT 335M/PCIe/SSE2
+NVIDIA Corporation GeForce GT 335M/PCIe/SSE2
+NVIDIA Corporation GeForce GT 340/PCI/SSE2
+NVIDIA Corporation GeForce GT 340/PCIe/SSE2
+NVIDIA Corporation GeForce GT 415/PCIe/SSE2
+NVIDIA Corporation GeForce GT 415/PCIe/SSE2/3DNOW!
+NVIDIA Corporation GeForce GT 415M/PCI/SSE2
+NVIDIA Corporation GeForce GT 415M/PCI/SSE2
+NVIDIA Corporation GeForce GT 415M/PCIe/SSE2
+NVIDIA Corporation GeForce GT 415M/PCIe/SSE2
+NVIDIA Corporation GeForce GT 420/PCI/SSE2
+NVIDIA Corporation GeForce GT 420/PCI/SSE2
+NVIDIA Corporation GeForce GT 420/PCIe/SSE2
+NVIDIA Corporation GeForce GT 420/PCIe/SSE2
+NVIDIA Corporation GeForce GT 420/PCIe/SSE2/3DNOW!
+NVIDIA Corporation GeForce GT 420M/PCI/SSE2
+NVIDIA Corporation GeForce GT 420M/PCI/SSE2
+NVIDIA Corporation GeForce GT 420M/PCIe/SSE2
+NVIDIA Corporation GeForce GT 420M/PCIe/SSE2
+NVIDIA Corporation GeForce GT 425M/PCI/SSE2
+NVIDIA Corporation GeForce GT 425M/PCI/SSE2
+NVIDIA Corporation GeForce GT 425M/PCIe/SSE2
+NVIDIA Corporation GeForce GT 425M/PCIe/SSE2
+NVIDIA Corporation GeForce GT 430/PCI/SSE2
+NVIDIA Corporation GeForce GT 430/PCI/SSE2/3DNOW!
+NVIDIA Corporation GeForce GT 430/PCIe/SSE2
+NVIDIA Corporation GeForce GT 430/PCIe/SSE2
+NVIDIA Corporation GeForce GT 430/PCIe/SSE2/3DNOW!
+NVIDIA Corporation GeForce GT 430/PCIe/SSE2/3DNOW!
+NVIDIA Corporation GeForce GT 435M/PCI/SSE2
+NVIDIA Corporation GeForce GT 435M/PCIe/SSE2
+NVIDIA Corporation GeForce GT 435M/PCIe/SSE2
+NVIDIA Corporation GeForce GT 440/PCI/SSE2
+NVIDIA Corporation GeForce GT 440/PCI/SSE2/3DNOW!
+NVIDIA Corporation GeForce GT 440/PCIe/SSE2
+NVIDIA Corporation GeForce GT 440/PCIe/SSE2
+NVIDIA Corporation GeForce GT 440/PCIe/SSE2
+NVIDIA Corporation GeForce GT 440/PCIe/SSE2/3DNOW!
+NVIDIA Corporation GeForce GT 440/PCIe/SSE2/3DNOW!
+NVIDIA Corporation GeForce GT 445M/PCI/SSE2
+NVIDIA Corporation GeForce GT 445M/PCI/SSE2
+NVIDIA Corporation GeForce GT 445M/PCIe/SSE2
+NVIDIA Corporation GeForce GT 445M/PCIe/SSE2
+NVIDIA Corporation GeForce GT 445M/PCIe/SSE2
+NVIDIA Corporation GeForce GT 520/PCI/SSE2
+NVIDIA Corporation GeForce GT 520/PCI/SSE2
+NVIDIA Corporation GeForce GT 520/PCI/SSE2/3DNOW!
+NVIDIA Corporation GeForce GT 520/PCIe/SSE2
+NVIDIA Corporation GeForce GT 520/PCIe/SSE2
+NVIDIA Corporation GeForce GT 520/PCIe/SSE2/3DNOW!
+NVIDIA Corporation GeForce GT 520/PCIe/SSE2/3DNOW!
+NVIDIA Corporation GeForce GT 520M/PCI/SSE2
+NVIDIA Corporation GeForce GT 520M/PCI/SSE2
+NVIDIA Corporation GeForce GT 520M/PCIe/SSE2
+NVIDIA Corporation GeForce GT 520M/PCIe/SSE2
+NVIDIA Corporation GeForce GT 520MX/PCI/SSE2
+NVIDIA Corporation GeForce GT 520MX/PCI/SSE2
+NVIDIA Corporation GeForce GT 520MX/PCIe/SSE2
+NVIDIA Corporation GeForce GT 520MX/PCIe/SSE2
+NVIDIA Corporation GeForce GT 525M/PCI/SSE2
+NVIDIA Corporation GeForce GT 525M/PCI/SSE2
+NVIDIA Corporation GeForce GT 525M/PCIe/SSE2
+NVIDIA Corporation GeForce GT 525M/PCIe/SSE2
+NVIDIA Corporation GeForce GT 530/PCI/SSE2
+NVIDIA Corporation GeForce GT 530/PCI/SSE2
+NVIDIA Corporation GeForce GT 530/PCIe/SSE2
+NVIDIA Corporation GeForce GT 530/PCIe/SSE2
+NVIDIA Corporation GeForce GT 530/PCIe/SSE2/3DNOW!
+NVIDIA Corporation GeForce GT 540M/PCI/SSE2
+NVIDIA Corporation GeForce GT 540M/PCI/SSE2
+NVIDIA Corporation GeForce GT 540M/PCIe/SSE2
+NVIDIA Corporation GeForce GT 540M/PCIe/SSE2
+NVIDIA Corporation GeForce GT 545/PCI/SSE2
+NVIDIA Corporation GeForce GT 545/PCIe/SSE2
+NVIDIA Corporation GeForce GT 545/PCIe/SSE2
+NVIDIA Corporation GeForce GT 545/PCIe/SSE2/3DNOW!
+NVIDIA Corporation GeForce GT 550M/PCI/SSE2
+NVIDIA Corporation GeForce GT 550M/PCI/SSE2
+NVIDIA Corporation GeForce GT 550M/PCIe/SSE2
+NVIDIA Corporation GeForce GT 550M/PCIe/SSE2
+NVIDIA Corporation GeForce GT 555M/PCI/SSE2
+NVIDIA Corporation GeForce GT 555M/PCIe/SSE2
+NVIDIA Corporation GeForce GT 555M/PCIe/SSE2
+NVIDIA Corporation GeForce GT 610/PCIe/SSE2
+NVIDIA Corporation GeForce GT 610/PCIe/SSE2
+NVIDIA Corporation GeForce GT 610/PCIe/SSE2
+NVIDIA Corporation GeForce GT 610/PCIe/SSE2/3DNOW!
+NVIDIA Corporation GeForce GT 610/PCIe/SSE2/3DNOW!
+NVIDIA Corporation GeForce GT 620/PCI/SSE2
+NVIDIA Corporation GeForce GT 620/PCIe/SSE2
+NVIDIA Corporation GeForce GT 620/PCIe/SSE2
+NVIDIA Corporation GeForce GT 620/PCIe/SSE2/3DNOW!
+NVIDIA Corporation GeForce GT 620/PCIe/SSE2/3DNOW!
+NVIDIA Corporation GeForce GT 620M/PCI/SSE2
+NVIDIA Corporation GeForce GT 620M/PCIe/SSE2
+NVIDIA Corporation GeForce GT 620M/PCIe/SSE2
+NVIDIA Corporation GeForce GT 625/PCIe/SSE2
+NVIDIA Corporation GeForce GT 625M/PCIe/SSE2
+NVIDIA Corporation GeForce GT 625M/PCIe/SSE2
+NVIDIA Corporation GeForce GT 630/PCIe/SSE2
+NVIDIA Corporation GeForce GT 630/PCIe/SSE2
+NVIDIA Corporation GeForce GT 630/PCIe/SSE2/3DNOW!
+NVIDIA Corporation GeForce GT 630/PCIe/SSE2/3DNOW!
+NVIDIA Corporation GeForce GT 630M/PCI/SSE2
+NVIDIA Corporation GeForce GT 630M/PCIe/SSE2
+NVIDIA Corporation GeForce GT 630M/PCIe/SSE2
+NVIDIA Corporation GeForce GT 630M/PCIe/SSE2
+NVIDIA Corporation GeForce GT 635M/PCI/SSE2
+NVIDIA Corporation GeForce GT 635M/PCIe/SSE2
+NVIDIA Corporation GeForce GT 635M/PCIe/SSE2
+NVIDIA Corporation GeForce GT 640/PCIe/SSE2
+NVIDIA Corporation GeForce GT 640/PCIe/SSE2
+NVIDIA Corporation GeForce GT 640/PCIe/SSE2/3DNOW!
+NVIDIA Corporation GeForce GT 640/PCIe/SSE2/3DNOW!
+NVIDIA Corporation GeForce GT 640M LE/PCI/SSE2
+NVIDIA Corporation GeForce GT 640M LE/PCIe/SSE2
+NVIDIA Corporation GeForce GT 640M LE/PCIe/SSE2
+NVIDIA Corporation GeForce GT 640M/PCIe/SSE2
+NVIDIA Corporation GeForce GT 640M/PCIe/SSE2
+NVIDIA Corporation GeForce GT 645/PCIe/SSE2
+NVIDIA Corporation GeForce GT 645/PCIe/SSE2
+NVIDIA Corporation GeForce GT 645M/PCIe/SSE2
+NVIDIA Corporation GeForce GT 645M/PCIe/SSE2
+NVIDIA Corporation GeForce GT 650M/PCIe/SSE2
+NVIDIA Corporation GeForce GT 650M/PCIe/SSE2
+NVIDIA Corporation GeForce GT 650M/PCIe/SSE2
+NVIDIA Corporation GeForce GT 720M/PCIe/SSE2
+NVIDIA Corporation GeForce GT 720M/PCIe/SSE2
+NVIDIA Corporation GeForce GT 730M/PCIe/SSE2
+NVIDIA Corporation GeForce GT 730M/PCIe/SSE2
+NVIDIA Corporation GeForce GT 735M/PCIe/SSE2
+NVIDIA Corporation GeForce GT 735M/PCIe/SSE2
+NVIDIA Corporation GeForce GT 740M/PCIe/SSE2
+NVIDIA Corporation GeForce GT 740M/PCIe/SSE2
+NVIDIA Corporation GeForce GT 750M/PCIe/SSE2
+NVIDIA Corporation GeForce GT 750M/PCIe/SSE2
+NVIDIA Corporation GeForce GT620M/PCIe/SSE2
+NVIDIA Corporation GeForce GT625M/PCIe/SSE2
+NVIDIA Corporation GeForce GTS 150/PCI/SSE2
+NVIDIA Corporation GeForce GTS 160M/PCI/SSE2
+NVIDIA Corporation GeForce GTS 160M/PCI/SSE2
+NVIDIA Corporation GeForce GTS 160M/PCIe/SSE2
+NVIDIA Corporation GeForce GTS 160M/PCIe/SSE2
+NVIDIA Corporation GeForce GTS 240/PCI/SSE2
+NVIDIA Corporation GeForce GTS 240/PCI/SSE2
+NVIDIA Corporation GeForce GTS 240/PCIe/SSE2
+NVIDIA Corporation GeForce GTS 240/PCIe/SSE2
+NVIDIA Corporation GeForce GTS 240/PCIe/SSE2/3DNOW!
+NVIDIA Corporation GeForce GTS 250/PCI/SSE2
+NVIDIA Corporation GeForce GTS 250/PCI/SSE2/3DNOW!
+NVIDIA Corporation GeForce GTS 250/PCIe/SSE2
+NVIDIA Corporation GeForce GTS 250/PCIe/SSE2
+NVIDIA Corporation GeForce GTS 250/PCIe/SSE2
+NVIDIA Corporation GeForce GTS 250/PCIe/SSE2/3DNOW!
+NVIDIA Corporation GeForce GTS 250/PCIe/SSE2/3DNOW!
+NVIDIA Corporation GeForce GTS 250M/PCI/SSE2
+NVIDIA Corporation GeForce GTS 250M/PCI/SSE2
+NVIDIA Corporation GeForce GTS 250M/PCIe/SSE2
+NVIDIA Corporation GeForce GTS 250M/PCIe/SSE2
+NVIDIA Corporation GeForce GTS 350M/PCI/SSE2
+NVIDIA Corporation GeForce GTS 350M/PCI/SSE2
+NVIDIA Corporation GeForce GTS 350M/PCIe/SSE2
+NVIDIA Corporation GeForce GTS 350M/PCIe/SSE2
+NVIDIA Corporation GeForce GTS 360M/PCI/SSE2
+NVIDIA Corporation GeForce GTS 360M/PCI/SSE2
+NVIDIA Corporation GeForce GTS 360M/PCIe/SSE2
+NVIDIA Corporation GeForce GTS 360M/PCIe/SSE2
+NVIDIA Corporation GeForce GTS 360M/PCIe/SSE2
+NVIDIA Corporation GeForce GTS 360M/PCIe/SSE2
+NVIDIA Corporation GeForce GTS 450/PCI/SSE2
+NVIDIA Corporation GeForce GTS 450/PCI/SSE2/3DNOW!
+NVIDIA Corporation GeForce GTS 450/PCIe/SSE2
+NVIDIA Corporation GeForce GTS 450/PCIe/SSE2
+NVIDIA Corporation GeForce GTS 450/PCIe/SSE2/3DNOW!
+NVIDIA Corporation GeForce GTS 450/PCIe/SSE2/3DNOW!
+NVIDIA Corporation GeForce GTX 260/PCI/SSE2
+NVIDIA Corporation GeForce GTX 260/PCI/SSE2
+NVIDIA Corporation GeForce GTX 260/PCI/SSE2/3DNOW!
+NVIDIA Corporation GeForce GTX 260/PCIe/SSE2
+NVIDIA Corporation GeForce GTX 260/PCIe/SSE2
+NVIDIA Corporation GeForce GTX 260/PCIe/SSE2
+NVIDIA Corporation GeForce GTX 260/PCIe/SSE2/3DNOW!
+NVIDIA Corporation GeForce GTX 260/PCIe/SSE2/3DNOW!
+NVIDIA Corporation GeForce GTX 260M/PCI/SSE2
+NVIDIA Corporation GeForce GTX 260M/PCI/SSE2
+NVIDIA Corporation GeForce GTX 260M/PCI/SSE2
+NVIDIA Corporation GeForce GTX 260M/PCIe/SSE2
+NVIDIA Corporation GeForce GTX 260M/PCIe/SSE2
+NVIDIA Corporation GeForce GTX 275/PCI/SSE2
+NVIDIA Corporation GeForce GTX 275/PCI/SSE2/3DNOW!
+NVIDIA Corporation GeForce GTX 275/PCIe/SSE2
+NVIDIA Corporation GeForce GTX 275/PCIe/SSE2
+NVIDIA Corporation GeForce GTX 275/PCIe/SSE2/3DNOW!
+NVIDIA Corporation GeForce GTX 275/PCIe/SSE2/3DNOW!
+NVIDIA Corporation GeForce GTX 280/PCI/SSE2
+NVIDIA Corporation GeForce GTX 280/PCIe/SSE2
+NVIDIA Corporation GeForce GTX 280/PCIe/SSE2/3DNOW!
+NVIDIA Corporation GeForce GTX 280M/PCI/SSE2
+NVIDIA Corporation GeForce GTX 280M/PCI/SSE2
+NVIDIA Corporation GeForce GTX 280M/PCIe/SSE2
+NVIDIA Corporation GeForce GTX 280M/PCIe/SSE2
 NVIDIA Corporation GeForce GTX 285/PCI/SSE2
-NVIDIA D10M2-20/PCI/SSE2
-NVIDIA D10M2-20/PCI/SSE2
-NVIDIA D10P1-25/PCI/SSE2
-NVIDIA D10P1-25/PCI/SSE2
-NVIDIA D10P1-25/PCI/SSE2/3DNOW!
-NVIDIA D10P1-30/PCI/SSE2
-NVIDIA D10P2-50/PCI/SSE2
-NVIDIA D11M2-30/PCI/SSE2
-NVIDIA D12-P1-35/PCI/SSE2
-NVIDIA D12U-15/PCI/SSE2
-NVIDIA D13M1-40/PCI/SSE2
-NVIDIA D13P1-40/PCI/SSE2
-NVIDIA D13P1-40/PCI/SSE2
-NVIDIA D13P1-40/PCI/SSE2/3DNOW!
-NVIDIA D13U-10/PCI/SSE2
-NVIDIA D13U/PCI/SSE2
-NVIDIA D13U/PCI/SSE2
+NVIDIA Corporation GeForce GTX 285/PCIe/SSE2
+NVIDIA Corporation GeForce GTX 285/PCIe/SSE2
+NVIDIA Corporation GeForce GTX 285/PCIe/SSE2/3DNOW!
+NVIDIA Corporation GeForce GTX 285M/PCI/SSE2
+NVIDIA Corporation GeForce GTX 285M/PCI/SSE2
+NVIDIA Corporation GeForce GTX 285M/PCIe/SSE2
+NVIDIA Corporation GeForce GTX 285M/PCIe/SSE2
+NVIDIA Corporation GeForce GTX 295/PCI/SSE2
+NVIDIA Corporation GeForce GTX 295/PCI/SSE2
+NVIDIA Corporation GeForce GTX 295/PCIe/SSE2
+NVIDIA Corporation GeForce GTX 295/PCIe/SSE2
+NVIDIA Corporation GeForce GTX 295/PCIe/SSE2
+NVIDIA Corporation GeForce GTX 295/PCIe/SSE2/3DNOW!
+NVIDIA Corporation GeForce GTX 295/PCIe/SSE2/3DNOW!
+NVIDIA Corporation GeForce GTX 460 SE/PCI/SSE2
+NVIDIA Corporation GeForce GTX 460 SE/PCI/SSE2
+NVIDIA Corporation GeForce GTX 460 SE/PCI/SSE2/3DNOW!
+NVIDIA Corporation GeForce GTX 460 SE/PCI/SSE2/3DNOW!
+NVIDIA Corporation GeForce GTX 460 SE/PCIe/SSE2
+NVIDIA Corporation GeForce GTX 460 SE/PCIe/SSE2
+NVIDIA Corporation GeForce GTX 460 SE/PCIe/SSE2
+NVIDIA Corporation GeForce GTX 460 SE/PCIe/SSE2/3DNOW!
+NVIDIA Corporation GeForce GTX 460 SE/PCIe/SSE2/3DNOW!
+NVIDIA Corporation GeForce GTX 460 v2/PCI/SSE2
+NVIDIA Corporation GeForce GTX 460 v2/PCIe/SSE2
+NVIDIA Corporation GeForce GTX 460 v2/PCIe/SSE2
+NVIDIA Corporation GeForce GTX 460 v2/PCIe/SSE2
+NVIDIA Corporation GeForce GTX 460 v2/PCIe/SSE2
+NVIDIA Corporation GeForce GTX 460 v2/PCIe/SSE2/3DNOW!
+NVIDIA Corporation GeForce GTX 460/PCI/SSE2
+NVIDIA Corporation GeForce GTX 460/PCI/SSE2
+NVIDIA Corporation GeForce GTX 460/PCI/SSE2/3DNOW!
+NVIDIA Corporation GeForce GTX 460/PCI/SSE2/3DNOW!
+NVIDIA Corporation GeForce GTX 460/PCIe/SSE2
+NVIDIA Corporation GeForce GTX 460/PCIe/SSE2
+NVIDIA Corporation GeForce GTX 460/PCIe/SSE2
+NVIDIA Corporation GeForce GTX 460/PCIe/SSE2
+NVIDIA Corporation GeForce GTX 460/PCIe/SSE2/3DNOW!
+NVIDIA Corporation GeForce GTX 460/PCIe/SSE2/3DNOW!
+NVIDIA Corporation GeForce GTX 460/PCIe/SSE2/3DNOW!
+NVIDIA Corporation GeForce GTX 460M/PCI/SSE2
+NVIDIA Corporation GeForce GTX 460M/PCI/SSE2
+NVIDIA Corporation GeForce GTX 460M/PCI/SSE2
+NVIDIA Corporation GeForce GTX 460M/PCIe/SSE2
+NVIDIA Corporation GeForce GTX 460M/PCIe/SSE2
+NVIDIA Corporation GeForce GTX 460M/PCIe/SSE2
+NVIDIA Corporation GeForce GTX 460M/PCIe/SSE2
+NVIDIA Corporation GeForce GTX 465/PCI/SSE2
+NVIDIA Corporation GeForce GTX 465/PCI/SSE2
+NVIDIA Corporation GeForce GTX 465/PCIe/SSE2
+NVIDIA Corporation GeForce GTX 465/PCIe/SSE2
+NVIDIA Corporation GeForce GTX 465/PCIe/SSE2
+NVIDIA Corporation GeForce GTX 465/PCIe/SSE2
+NVIDIA Corporation GeForce GTX 465/PCIe/SSE2/3DNOW!
+NVIDIA Corporation GeForce GTX 465/PCIe/SSE2/3DNOW!
+NVIDIA Corporation GeForce GTX 470/PCI/SSE2
+NVIDIA Corporation GeForce GTX 470/PCI/SSE2
+NVIDIA Corporation GeForce GTX 470/PCI/SSE2/3DNOW!
+NVIDIA Corporation GeForce GTX 470/PCIe/SSE2
+NVIDIA Corporation GeForce GTX 470/PCIe/SSE2
+NVIDIA Corporation GeForce GTX 470/PCIe/SSE2
+NVIDIA Corporation GeForce GTX 470/PCIe/SSE2
+NVIDIA Corporation GeForce GTX 470/PCIe/SSE2/3DNOW!
+NVIDIA Corporation GeForce GTX 470/PCIe/SSE2/3DNOW!
+NVIDIA Corporation GeForce GTX 470M/PCI/SSE2
+NVIDIA Corporation GeForce GTX 470M/PCI/SSE2
+NVIDIA Corporation GeForce GTX 480/PCI/SSE2
+NVIDIA Corporation GeForce GTX 480/PCI/SSE2
+NVIDIA Corporation GeForce GTX 480/PCIe/SSE2
+NVIDIA Corporation GeForce GTX 480/PCIe/SSE2
+NVIDIA Corporation GeForce GTX 480/PCIe/SSE2
+NVIDIA Corporation GeForce GTX 480/PCIe/SSE2
+NVIDIA Corporation GeForce GTX 480/PCIe/SSE2/3DNOW!
+NVIDIA Corporation GeForce GTX 480/PCIe/SSE2/3DNOW!
+NVIDIA Corporation GeForce GTX 480M/PCIe/SSE2
+NVIDIA Corporation GeForce GTX 480M/PCIe/SSE2
+NVIDIA Corporation GeForce GTX 485M/PCI/SSE2
+NVIDIA Corporation GeForce GTX 485M/PCIe/SSE2
+NVIDIA Corporation GeForce GTX 485M/PCIe/SSE2
+NVIDIA Corporation GeForce GTX 550 Ti/PCI/SSE2
+NVIDIA Corporation GeForce GTX 550 Ti/PCI/SSE2
+NVIDIA Corporation GeForce GTX 550 Ti/PCI/SSE2
+NVIDIA Corporation GeForce GTX 550 Ti/PCI/SSE2
+NVIDIA Corporation GeForce GTX 550 Ti/PCI/SSE2/3DNOW!
+NVIDIA Corporation GeForce GTX 550 Ti/PCI/SSE2/3DNOW!
+NVIDIA Corporation GeForce GTX 550 Ti/PCIe/SSE2
+NVIDIA Corporation GeForce GTX 550 Ti/PCIe/SSE2
+NVIDIA Corporation GeForce GTX 550 Ti/PCIe/SSE2
+NVIDIA Corporation GeForce GTX 550 Ti/PCIe/SSE2
+NVIDIA Corporation GeForce GTX 550 Ti/PCIe/SSE2/3DNOW!
+NVIDIA Corporation GeForce GTX 550 Ti/PCIe/SSE2/3DNOW!
+NVIDIA Corporation GeForce GTX 550 Ti/PCIe/SSE2/3DNOW!
+NVIDIA Corporation GeForce GTX 560 SE/PCIe/SSE2
+NVIDIA Corporation GeForce GTX 560 SE/PCIe/SSE2
+NVIDIA Corporation GeForce GTX 560 SE/PCIe/SSE2
+NVIDIA Corporation GeForce GTX 560 Ti/PCI/SSE2
+NVIDIA Corporation GeForce GTX 560 Ti/PCI/SSE2
+NVIDIA Corporation GeForce GTX 560 Ti/PCI/SSE2
+NVIDIA Corporation GeForce GTX 560 Ti/PCI/SSE2/3DNOW!
+NVIDIA Corporation GeForce GTX 560 Ti/PCI/SSE2/3DNOW!
+NVIDIA Corporation GeForce GTX 560 Ti/PCIe/SSE2
+NVIDIA Corporation GeForce GTX 560 Ti/PCIe/SSE2
+NVIDIA Corporation GeForce GTX 560 Ti/PCIe/SSE2
+NVIDIA Corporation GeForce GTX 560 Ti/PCIe/SSE2
+NVIDIA Corporation GeForce GTX 560 Ti/PCIe/SSE2/3DNOW!
+NVIDIA Corporation GeForce GTX 560 Ti/PCIe/SSE2/3DNOW!
+NVIDIA Corporation GeForce GTX 560 Ti/PCIe/SSE2/3DNOW!
+NVIDIA Corporation GeForce GTX 560/PCI/SSE2
+NVIDIA Corporation GeForce GTX 560/PCI/SSE2
+NVIDIA Corporation GeForce GTX 560/PCI/SSE2/3DNOW!
+NVIDIA Corporation GeForce GTX 560/PCIe/SSE2
+NVIDIA Corporation GeForce GTX 560/PCIe/SSE2
+NVIDIA Corporation GeForce GTX 560/PCIe/SSE2
+NVIDIA Corporation GeForce GTX 560/PCIe/SSE2
+NVIDIA Corporation GeForce GTX 560/PCIe/SSE2/3DNOW!
+NVIDIA Corporation GeForce GTX 560/PCIe/SSE2/3DNOW!
+NVIDIA Corporation GeForce GTX 560/PCIe/SSE2/3DNOW!
+NVIDIA Corporation GeForce GTX 560M/PCI/SSE2
+NVIDIA Corporation GeForce GTX 560M/PCI/SSE2
+NVIDIA Corporation GeForce GTX 560M/PCI/SSE2
+NVIDIA Corporation GeForce GTX 560M/PCIe/SSE2
+NVIDIA Corporation GeForce GTX 560M/PCIe/SSE2
+NVIDIA Corporation GeForce GTX 560M/PCIe/SSE2
+NVIDIA Corporation GeForce GTX 560M/PCIe/SSE2
+NVIDIA Corporation GeForce GTX 570/PCI/SSE2
+NVIDIA Corporation GeForce GTX 570/PCI/SSE2
+NVIDIA Corporation GeForce GTX 570/PCI/SSE2/3DNOW!
+NVIDIA Corporation GeForce GTX 570/PCI/SSE2/3DNOW!
+NVIDIA Corporation GeForce GTX 570/PCIe/SSE2
+NVIDIA Corporation GeForce GTX 570/PCIe/SSE2
+NVIDIA Corporation GeForce GTX 570/PCIe/SSE2
+NVIDIA Corporation GeForce GTX 570/PCIe/SSE2
+NVIDIA Corporation GeForce GTX 570/PCIe/SSE2/3DNOW!
+NVIDIA Corporation GeForce GTX 570/PCIe/SSE2/3DNOW!
+NVIDIA Corporation GeForce GTX 570M/PCI/SSE2
+NVIDIA Corporation GeForce GTX 570M/PCI/SSE2
+NVIDIA Corporation GeForce GTX 570M/PCIe/SSE2
+NVIDIA Corporation GeForce GTX 570M/PCIe/SSE2
+NVIDIA Corporation GeForce GTX 580/PCI/SSE2
+NVIDIA Corporation GeForce GTX 580/PCI/SSE2
+NVIDIA Corporation GeForce GTX 580/PCI/SSE2/3DNOW!
+NVIDIA Corporation GeForce GTX 580/PCIe/SSE2
+NVIDIA Corporation GeForce GTX 580/PCIe/SSE2
+NVIDIA Corporation GeForce GTX 580/PCIe/SSE2
+NVIDIA Corporation GeForce GTX 580/PCIe/SSE2
+NVIDIA Corporation GeForce GTX 580/PCIe/SSE2/3DNOW!
+NVIDIA Corporation GeForce GTX 580/PCIe/SSE2/3DNOW!
+NVIDIA Corporation GeForce GTX 580/PCIe/SSE2/3DNOW!
+NVIDIA Corporation GeForce GTX 580M/PCI/SSE2
+NVIDIA Corporation GeForce GTX 580M/PCI/SSE2
+NVIDIA Corporation GeForce GTX 580M/PCIe/SSE2
+NVIDIA Corporation GeForce GTX 580M/PCIe/SSE2
+NVIDIA Corporation GeForce GTX 590/PCI/SSE2
+NVIDIA Corporation GeForce GTX 590/PCI/SSE2
+NVIDIA Corporation GeForce GTX 590/PCIe/SSE2
+NVIDIA Corporation GeForce GTX 590/PCIe/SSE2
+NVIDIA Corporation GeForce GTX 590/PCIe/SSE2
+NVIDIA Corporation GeForce GTX 590/PCIe/SSE2/3DNOW!
+NVIDIA Corporation GeForce GTX 645/PCIe/SSE2
+NVIDIA Corporation GeForce GTX 645/PCIe/SSE2
+NVIDIA Corporation GeForce GTX 650 Ti BOOST/PCIe/SSE2
+NVIDIA Corporation GeForce GTX 650 Ti BOOST/PCIe/SSE2
+NVIDIA Corporation GeForce GTX 650 Ti BOOST/PCIe/SSE2/3DNOW!
+NVIDIA Corporation GeForce GTX 650 Ti Boost/PCIe/SSE2
+NVIDIA Corporation GeForce GTX 650 Ti Boost/PCIe/SSE2
+NVIDIA Corporation GeForce GTX 650 Ti Boost/PCIe/SSE2/3DNOW!
+NVIDIA Corporation GeForce GTX 650 Ti/PCIe/SSE2
+NVIDIA Corporation GeForce GTX 650 Ti/PCIe/SSE2
+NVIDIA Corporation GeForce GTX 650 Ti/PCIe/SSE2/3DNOW!
+NVIDIA Corporation GeForce GTX 650 Ti/PCIe/SSE2/3DNOW!
+NVIDIA Corporation GeForce GTX 650/PCIe/SSE2
+NVIDIA Corporation GeForce GTX 650/PCIe/SSE2
+NVIDIA Corporation GeForce GTX 650/PCIe/SSE2
+NVIDIA Corporation GeForce GTX 650/PCIe/SSE2/3DNOW!
+NVIDIA Corporation GeForce GTX 650/PCIe/SSE2/3DNOW!
+NVIDIA Corporation GeForce GTX 660 Ti/PCIe/SSE2
+NVIDIA Corporation GeForce GTX 660 Ti/PCIe/SSE2
+NVIDIA Corporation GeForce GTX 660 Ti/PCIe/SSE2
+NVIDIA Corporation GeForce GTX 660 Ti/PCIe/SSE2
+NVIDIA Corporation GeForce GTX 660 Ti/PCIe/SSE2/3DNOW!
+NVIDIA Corporation GeForce GTX 660 Ti/PCIe/SSE2/3DNOW!
+NVIDIA Corporation GeForce GTX 660/PCIe/SSE2
+NVIDIA Corporation GeForce GTX 660/PCIe/SSE2
+NVIDIA Corporation GeForce GTX 660/PCIe/SSE2
+NVIDIA Corporation GeForce GTX 660/PCIe/SSE2
+NVIDIA Corporation GeForce GTX 660/PCIe/SSE2
+NVIDIA Corporation GeForce GTX 660/PCIe/SSE2/3DNOW!
+NVIDIA Corporation GeForce GTX 660/PCIe/SSE2/3DNOW!
+NVIDIA Corporation GeForce GTX 660/PCIe/SSE2/3DNOW!
+NVIDIA Corporation GeForce GTX 660M/PCIe/SSE2
+NVIDIA Corporation GeForce GTX 660M/PCIe/SSE2
+NVIDIA Corporation GeForce GTX 660M/PCIe/SSE2
+NVIDIA Corporation GeForce GTX 660M/PCIe/SSE2
+NVIDIA Corporation GeForce GTX 670/PCIe/SSE2
+NVIDIA Corporation GeForce GTX 670/PCIe/SSE2
+NVIDIA Corporation GeForce GTX 670/PCIe/SSE2
+NVIDIA Corporation GeForce GTX 670/PCIe/SSE2
+NVIDIA Corporation GeForce GTX 670/PCIe/SSE2/3DNOW!
+NVIDIA Corporation GeForce GTX 670/PCIe/SSE2/3DNOW!
+NVIDIA Corporation GeForce GTX 670/PCIe/SSE2/3DNOW!
+NVIDIA Corporation GeForce GTX 670M/PCI/SSE2
+NVIDIA Corporation GeForce GTX 670M/PCI/SSE2
+NVIDIA Corporation GeForce GTX 670M/PCIe/SSE2
+NVIDIA Corporation GeForce GTX 670M/PCIe/SSE2
+NVIDIA Corporation GeForce GTX 670M/PCIe/SSE2
+NVIDIA Corporation GeForce GTX 670MX/PCIe/SSE2
+NVIDIA Corporation GeForce GTX 670MX/PCIe/SSE2
+NVIDIA Corporation GeForce GTX 670MX/PCIe/SSE2
+NVIDIA Corporation GeForce GTX 675M/PCIe/SSE2
+NVIDIA Corporation GeForce GTX 675M/PCIe/SSE2
+NVIDIA Corporation GeForce GTX 675M/PCIe/SSE2
+NVIDIA Corporation GeForce GTX 675MX/PCIe/SSE2
+NVIDIA Corporation GeForce GTX 675MX/PCIe/SSE2
+NVIDIA Corporation GeForce GTX 675MX/PCIe/SSE2
+NVIDIA Corporation GeForce GTX 680/PCIe/SSE2
+NVIDIA Corporation GeForce GTX 680/PCIe/SSE2
+NVIDIA Corporation GeForce GTX 680/PCIe/SSE2
+NVIDIA Corporation GeForce GTX 680/PCIe/SSE2
+NVIDIA Corporation GeForce GTX 680/PCIe/SSE2/3DNOW!
+NVIDIA Corporation GeForce GTX 680/PCIe/SSE2/3DNOW!
+NVIDIA Corporation GeForce GTX 680M/PCIe/SSE2
+NVIDIA Corporation GeForce GTX 680M/PCIe/SSE2
+NVIDIA Corporation GeForce GTX 680M/PCIe/SSE2
+NVIDIA Corporation GeForce GTX 680MX/PCIe/SSE2
+NVIDIA Corporation GeForce GTX 680MX/PCIe/SSE2
+NVIDIA Corporation GeForce GTX 690/PCIe/SSE2
+NVIDIA Corporation GeForce GTX 690/PCIe/SSE2
+NVIDIA Corporation GeForce GTX 690/PCIe/SSE2
+NVIDIA Corporation GeForce GTX 760/PCIe/SSE2
+NVIDIA Corporation GeForce GTX 760/PCIe/SSE2
+NVIDIA Corporation GeForce GTX 760M/PCIe/SSE2
+NVIDIA Corporation GeForce GTX 760M/PCIe/SSE2
+NVIDIA Corporation GeForce GTX 765M/PCIe/SSE2
+NVIDIA Corporation GeForce GTX 765M/PCIe/SSE2
+NVIDIA Corporation GeForce GTX 770/PCIe/SSE2
+NVIDIA Corporation GeForce GTX 770/PCIe/SSE2
+NVIDIA Corporation GeForce GTX 770/PCIe/SSE2
+NVIDIA Corporation GeForce GTX 770/PCIe/SSE2/3DNOW!
+NVIDIA Corporation GeForce GTX 770M/PCIe/SSE2
+NVIDIA Corporation GeForce GTX 770M/PCIe/SSE2
+NVIDIA Corporation GeForce GTX 780/PCIe/SSE2
+NVIDIA Corporation GeForce GTX 780/PCIe/SSE2
+NVIDIA Corporation GeForce GTX 780/PCIe/SSE2
+NVIDIA Corporation GeForce GTX 780M/PCIe/SSE2
+NVIDIA Corporation GeForce GTX 780M/PCIe/SSE2
+NVIDIA Corporation GeForce GTX TITAN/PCIe/SSE2
+NVIDIA Corporation GeForce GTX TITAN/PCIe/SSE2
+NVIDIA Corporation GeForce GTX TITAN/PCIe/SSE2
+NVIDIA Corporation GeForce GTX TITAN/PCIe/SSE2
+NVIDIA Corporation GeForce GTX TITAN/PCIe/SSE2/3DNOW!
+NVIDIA Corporation GeForce GTX Titan/PCIe/SSE2
+NVIDIA Corporation GeForce GTX Titan/PCIe/SSE2
+NVIDIA Corporation GeForce Go 6100/PCI/SSE2
+NVIDIA Corporation GeForce Go 6100/PCI/SSE2/3DNOW!
+NVIDIA Corporation GeForce Go 6100/PCI/SSE2/3DNOW!
+NVIDIA Corporation GeForce Go 6150/PCI/SSE2
+NVIDIA Corporation GeForce Go 6150/PCI/SSE2/3DNOW!
+NVIDIA Corporation GeForce Go 6150/PCI/SSE2/3DNOW!
+NVIDIA Corporation GeForce Go 6150/integrated/SSE2/3DNOW!
+NVIDIA Corporation GeForce Go 6200/PCI/SSE2
+NVIDIA Corporation GeForce Go 6200/PCI/SSE2/3DNOW!
+NVIDIA Corporation GeForce Go 6400/PCI/SSE2
+NVIDIA Corporation GeForce Go 6400/PCIe/SSE2
+NVIDIA Corporation GeForce Go 6600 TE/6200 TE/PCI/SSE2
+NVIDIA Corporation GeForce Go 6600/PCI/SSE2
+NVIDIA Corporation GeForce Go 6800 Ultra/PCI/SSE2
+NVIDIA Corporation GeForce Go 6800/PCI/SSE2
+NVIDIA Corporation GeForce Go 6800/PCIe/SSE2
+NVIDIA Corporation GeForce Go 7200/PCI/SSE2
+NVIDIA Corporation GeForce Go 7200/PCI/SSE2/3DNOW!
+NVIDIA Corporation GeForce Go 7300/PCI/SSE2
+NVIDIA Corporation GeForce Go 7300/PCI/SSE2
+NVIDIA Corporation GeForce Go 7300/PCI/SSE2/3DNOW!
+NVIDIA Corporation GeForce Go 7300/PCIe/SSE2
+NVIDIA Corporation GeForce Go 7400/PCI/SSE2
+NVIDIA Corporation GeForce Go 7400/PCI/SSE2
+NVIDIA Corporation GeForce Go 7400/PCI/SSE2/3DNOW!
+NVIDIA Corporation GeForce Go 7400/PCIe/SSE2
+NVIDIA Corporation GeForce Go 7600 GT/PCI/SSE2
+NVIDIA Corporation GeForce Go 7600/PCI/SSE2
+NVIDIA Corporation GeForce Go 7600/PCI/SSE2/3DNOW!
+NVIDIA Corporation GeForce Go 7600/PCIe/SSE2
+NVIDIA Corporation GeForce Go 7600/PCIe/SSE2/3DNOW!
+NVIDIA Corporation GeForce Go 7700/PCI/SSE2
+NVIDIA Corporation GeForce Go 7800 GTX/PCI/SSE2
+NVIDIA Corporation GeForce Go 7800/PCI/SSE2
+NVIDIA Corporation GeForce Go 7800/PCI/SSE2
+NVIDIA Corporation GeForce Go 7900 GS/PCI/SSE2
+NVIDIA Corporation GeForce Go 7900 GS/PCI/SSE2/3DNOW!
+NVIDIA Corporation GeForce Go 7900 GS/PCIe/SSE2
+NVIDIA Corporation GeForce Go 7900 GTX/PCI/SSE2
+NVIDIA Corporation GeForce Go 7950 GTX/PCI/SSE2
+NVIDIA Corporation GeForce Go 7950 GTX/PCI/SSE2/3DNOW!
+NVIDIA Corporation GeForce PCX 5300/PCI/SSE2
+NVIDIA Corporation GeForce PCX 5750/PCI/SSE2
+NVIDIA Corporation GeForce2 GTS/AGP/SSE2
+NVIDIA Corporation GeForce2 MX/AGP/SSE2
+NVIDIA Corporation GeForce2 MX/AGP/SSE2/3DNOW!
+NVIDIA Corporation GeForce2 MX/PCI/SSE2
+NVIDIA Corporation GeForce3/AGP/SSE2
+NVIDIA Corporation GeForce3/AGP/SSE2/3DNOW!
+NVIDIA Corporation GeForce4 420 Go 32M/AGP/SSE2
+NVIDIA Corporation GeForce4 420 Go 32M/AGP/SSE2/3DNOW!
+NVIDIA Corporation GeForce4 420 Go 32M/PCI/SSE2/3DNOW!
+NVIDIA Corporation GeForce4 420 Go/AGP/SSE2
+NVIDIA Corporation GeForce4 4200 Go/AGP/SSE2
+NVIDIA Corporation GeForce4 440 Go 64M/AGP/SSE2/3DNOW!
+NVIDIA Corporation GeForce4 440 Go 64M/PCI/SSE2/3DNOW!
+NVIDIA Corporation GeForce4 440 Go/AGP/SSE2
+NVIDIA Corporation GeForce4 448 Go/AGP/SSE2
+NVIDIA Corporation GeForce4 MX 4000/AGP/SSE2
+NVIDIA Corporation GeForce4 MX 4000/AGP/SSE2
+NVIDIA Corporation GeForce4 MX 4000/AGP/SSE2/3DNOW!
+NVIDIA Corporation GeForce4 MX 4000/PCI/SSE2
+NVIDIA Corporation GeForce4 MX 4000/PCI/SSE2/3DNOW!
+NVIDIA Corporation GeForce4 MX 420/AGP/SSE2
+NVIDIA Corporation GeForce4 MX 420/PCI/SSE2
+NVIDIA Corporation GeForce4 MX 440 with AGP8X/AGP/SSE2
+NVIDIA Corporation GeForce4 MX 440 with AGP8X/AGP/SSE2/3DNOW!
+NVIDIA Corporation GeForce4 MX 440 with AGP8X/PCI/SSE2
+NVIDIA Corporation GeForce4 MX 440/440SE/AGP/SSE2
+NVIDIA Corporation GeForce4 MX 440/AGP/SSE2
+NVIDIA Corporation GeForce4 MX 440/AGP/SSE2/3DNOW!
+NVIDIA Corporation GeForce4 MX 440/PCI/SSE2
+NVIDIA Corporation GeForce4 MX 440SE with AGP8X/AGP/SSE2
+NVIDIA Corporation GeForce4 MX 440SE with AGP8X/PCI/SSE2
+NVIDIA Corporation GeForce4 MX 460/AGP/SSE2
+NVIDIA Corporation GeForce4 MX 460/AGP/SSE2/3DNOW!
+NVIDIA Corporation GeForce4 Ti 4200 with AGP8X/AGP/SSE2
+NVIDIA Corporation GeForce4 Ti 4200 with AGP8X/PCI/SSE2
+NVIDIA Corporation GeForce4 Ti 4200/AGP/SSE2
+NVIDIA Corporation GeForce4 Ti 4400/AGP/SSE2
+NVIDIA Corporation GeForce4 Ti 4600/AGP/SSE2
+NVIDIA Corporation GeForce4 Ti 4600/PCI/SSE2
+NVIDIA Corporation ION LE/PCI/SSE2
+NVIDIA Corporation ION LE/integrated/SSE2
+NVIDIA Corporation ION LE/integrated/SSE2
+NVIDIA Corporation ION/PCI/SSE2
+NVIDIA Corporation ION/PCIe/SSE2
+NVIDIA Corporation ION/PCIe/SSE2
+NVIDIA Corporation ION/PCIe/SSE2/3DNOW!
+NVIDIA Corporation ION/integrated/SSE2
+NVIDIA Corporation ION/integrated/SSE2
+NVIDIA Corporation MCP61/PCI/SSE2/3DNOW!
+NVIDIA Corporation MCP7A-O/PCI/SSE2
+NVIDIA Corporation MCP7A-P/PCI/SSE2
+NVIDIA Corporation N10P-GV2/PCI/SSE2
+NVIDIA Corporation N11M-GE2/PCI/SSE2
+NVIDIA Corporation N11M-GE2/PCI/SSE2
+NVIDIA Corporation N12P-GVR-B-A1/PCI/SSE2
+NVIDIA Corporation N12P-GVR-B-A1/PCI/SSE2
+NVIDIA Corporation NB9M-GE1/PCI/SSE2
+NVIDIA Corporation NB9M-GS/PCI/SSE2
+NVIDIA Corporation NV17/AGP/SSE2
+NVIDIA Corporation NVIDIA GeForce 210 OpenGL Engine
+NVIDIA Corporation NVIDIA GeForce 210 OpenGL Engine
+NVIDIA Corporation NVIDIA GeForce 310M OpenGL Engine
+NVIDIA Corporation NVIDIA GeForce 320M OpenGL Engine
+NVIDIA Corporation NVIDIA GeForce 320M OpenGL Engine
+NVIDIA Corporation NVIDIA GeForce 6600 GT OpenGL Engine
+NVIDIA Corporation NVIDIA GeForce 7300 GT OpenGL Engine
+NVIDIA Corporation NVIDIA GeForce 7600 GT OpenGL Engine
+NVIDIA Corporation NVIDIA GeForce 7950 GT OpenGL Engine
+NVIDIA Corporation NVIDIA GeForce 7950 GT OpenGL Engine
+NVIDIA Corporation NVIDIA GeForce 8400 GS OpenGL Engine
+NVIDIA Corporation NVIDIA GeForce 8500 GT OpenGL Engine
+NVIDIA Corporation NVIDIA GeForce 8600 GT OpenGL Engine
+NVIDIA Corporation NVIDIA GeForce 8600 GT OpenGL Engine
+NVIDIA Corporation NVIDIA GeForce 8600 GTS OpenGL Engine
+NVIDIA Corporation NVIDIA GeForce 8600M GT OpenGL Engine
+NVIDIA Corporation NVIDIA GeForce 8600M GT OpenGL Engine
+NVIDIA Corporation NVIDIA GeForce 8800 GS OpenGL Engine
+NVIDIA Corporation NVIDIA GeForce 8800 GS OpenGL Engine
+NVIDIA Corporation NVIDIA GeForce 8800 GT OpenGL Engine
+NVIDIA Corporation NVIDIA GeForce 8800 GT OpenGL Engine
+NVIDIA Corporation NVIDIA GeForce 8800 GTS 512 OpenGL Engine
+NVIDIA Corporation NVIDIA GeForce 8800 GTS OpenGL Engine
+NVIDIA Corporation NVIDIA GeForce 8800 GTX OpenGL Engine
+NVIDIA Corporation NVIDIA GeForce 8800 Ultra OpenGL Engine
+NVIDIA Corporation NVIDIA GeForce 9200M GS OpenGL Engine
+NVIDIA Corporation NVIDIA GeForce 9400 GT OpenGL Engine
+NVIDIA Corporation NVIDIA GeForce 9400 GT OpenGL Engine
+NVIDIA Corporation NVIDIA GeForce 9400 OpenGL Engine
+NVIDIA Corporation NVIDIA GeForce 9400 OpenGL Engine
+NVIDIA Corporation NVIDIA GeForce 9400 OpenGL Engine
+NVIDIA Corporation NVIDIA GeForce 9400M OpenGL Engine
+NVIDIA Corporation NVIDIA GeForce 9400M OpenGL Engine
+NVIDIA Corporation NVIDIA GeForce 9500 GT OpenGL Engine
+NVIDIA Corporation NVIDIA GeForce 9500 GT OpenGL Engine
+NVIDIA Corporation NVIDIA GeForce 9600 GT OpenGL Engine
+NVIDIA Corporation NVIDIA GeForce 9600M GT OpenGL Engine
+NVIDIA Corporation NVIDIA GeForce 9600M GT OpenGL Engine
+NVIDIA Corporation NVIDIA GeForce 9800 GT OpenGL Engine
+NVIDIA Corporation NVIDIA GeForce 9800 GT OpenGL Engine
+NVIDIA Corporation NVIDIA GeForce 9800 GTX+ OpenGL Engine
+NVIDIA Corporation NVIDIA GeForce 9800 GTX+ OpenGL Engine
+NVIDIA Corporation NVIDIA GeForce GT 120 OpenGL Engine
+NVIDIA Corporation NVIDIA GeForce GT 120 OpenGL Engine
+NVIDIA Corporation NVIDIA GeForce GT 120 OpenGL Engine
+NVIDIA Corporation NVIDIA GeForce GT 130 OpenGL Engine
+NVIDIA Corporation NVIDIA GeForce GT 130 OpenGL Engine
+NVIDIA Corporation NVIDIA GeForce GT 220 OpenGL Engine
+NVIDIA Corporation NVIDIA GeForce GT 220 OpenGL Engine
+NVIDIA Corporation NVIDIA GeForce GT 240 OpenGL Engine
+NVIDIA Corporation NVIDIA GeForce GT 240 OpenGL Engine
+NVIDIA Corporation NVIDIA GeForce GT 320M OpenGL Engine
+NVIDIA Corporation NVIDIA GeForce GT 330M OpenGL Engine
+NVIDIA Corporation NVIDIA GeForce GT 330M OpenGL Engine
+NVIDIA Corporation NVIDIA GeForce GT 330M OpenGL Engine
+NVIDIA Corporation NVIDIA GeForce GT 430 OpenGL Engine
+NVIDIA Corporation NVIDIA GeForce GT 440 OpenGL Engine
+NVIDIA Corporation NVIDIA GeForce GT 440 OpenGL Engine
+NVIDIA Corporation NVIDIA GeForce GT 520 OpenGL Engine
+NVIDIA Corporation NVIDIA GeForce GT 630 OpenGL Engine
+NVIDIA Corporation NVIDIA GeForce GT 640 OpenGL Engine
+NVIDIA Corporation NVIDIA GeForce GT 640 OpenGL Engine
+NVIDIA Corporation NVIDIA GeForce GT 640M OpenGL Engine
+NVIDIA Corporation NVIDIA GeForce GT 640M OpenGL Engine
+NVIDIA Corporation NVIDIA GeForce GT 640M OpenGL Engine
+NVIDIA Corporation NVIDIA GeForce GT 650M OpenGL Engine
+NVIDIA Corporation NVIDIA GeForce GT 650M OpenGL Engine
+NVIDIA Corporation NVIDIA GeForce GT 650M OpenGL Engine
+NVIDIA Corporation NVIDIA GeForce GTS 250 OpenGL Engine
+NVIDIA Corporation NVIDIA GeForce GTS 250 OpenGL Engine
+NVIDIA Corporation NVIDIA GeForce GTS 450 OpenGL Engine
+NVIDIA Corporation NVIDIA GeForce GTX 260 OpenGL Engine
+NVIDIA Corporation NVIDIA GeForce GTX 280 OpenGL Engine
+NVIDIA Corporation NVIDIA GeForce GTX 280 OpenGL Engine
+NVIDIA Corporation NVIDIA GeForce GTX 285 OpenGL Engine
+NVIDIA Corporation NVIDIA GeForce GTX 285 OpenGL Engine
+NVIDIA Corporation NVIDIA GeForce GTX 460 OpenGL Engine
+NVIDIA Corporation NVIDIA GeForce GTX 470 OpenGL Engine
+NVIDIA Corporation NVIDIA GeForce GTX 480 OpenGL Engine
+NVIDIA Corporation NVIDIA GeForce GTX 480 OpenGL Engine
+NVIDIA Corporation NVIDIA GeForce GTX 550 Ti OpenGL Engine
+NVIDIA Corporation NVIDIA GeForce GTX 550 Ti OpenGL Engine
+NVIDIA Corporation NVIDIA GeForce GTX 560 OpenGL Engine
+NVIDIA Corporation NVIDIA GeForce GTX 560 OpenGL Engine
+NVIDIA Corporation NVIDIA GeForce GTX 560 Ti OpenGL Engine
+NVIDIA Corporation NVIDIA GeForce GTX 560 Ti OpenGL Engine
+NVIDIA Corporation NVIDIA GeForce GTX 570 OpenGL Engine
+NVIDIA Corporation NVIDIA GeForce GTX 570 OpenGL Engine
+NVIDIA Corporation NVIDIA GeForce GTX 580 OpenGL Engine
+NVIDIA Corporation NVIDIA GeForce GTX 650 OpenGL Engine
+NVIDIA Corporation NVIDIA GeForce GTX 650 OpenGL Engine
+NVIDIA Corporation NVIDIA GeForce GTX 650 Ti OpenGL Engine
+NVIDIA Corporation NVIDIA GeForce GTX 650 Ti OpenGL Engine
+NVIDIA Corporation NVIDIA GeForce GTX 660 OpenGL Engine
+NVIDIA Corporation NVIDIA GeForce GTX 660 OpenGL Engine
+NVIDIA Corporation NVIDIA GeForce GTX 660 Ti OpenGL Engine
+NVIDIA Corporation NVIDIA GeForce GTX 660 Ti OpenGL Engine
+NVIDIA Corporation NVIDIA GeForce GTX 660 Ti OpenGL Engine
+NVIDIA Corporation NVIDIA GeForce GTX 660M OpenGL Engine
+NVIDIA Corporation NVIDIA GeForce GTX 660M OpenGL Engine
+NVIDIA Corporation NVIDIA GeForce GTX 660M OpenGL Engine
+NVIDIA Corporation NVIDIA GeForce GTX 670 OpenGL Engine
+NVIDIA Corporation NVIDIA GeForce GTX 670 OpenGL Engine
+NVIDIA Corporation NVIDIA GeForce GTX 675MX OpenGL Engine
+NVIDIA Corporation NVIDIA GeForce GTX 675MX OpenGL Engine
+NVIDIA Corporation NVIDIA GeForce GTX 675MX OpenGL Engine
+NVIDIA Corporation NVIDIA GeForce GTX 675MX OpenGL Engine
+NVIDIA Corporation NVIDIA GeForce GTX 680 OpenGL Engine
+NVIDIA Corporation NVIDIA GeForce GTX 680 OpenGL Engine
+NVIDIA Corporation NVIDIA GeForce GTX 680 OpenGL Engine
+NVIDIA Corporation NVIDIA GeForce GTX 680MX OpenGL Engine
+NVIDIA Corporation NVIDIA GeForce GTX 680MX OpenGL Engine
+NVIDIA Corporation NVIDIA GeForce GTX 680MX OpenGL Engine
+NVIDIA Corporation NVIDIA GeForce GTX 775M OpenGL Engine
+NVIDIA Corporation NVIDIA GeForce GTX 780M OpenGL Engine
+NVIDIA Corporation NVIDIA GeForce Go 7600 OpenGL Engine
+NVIDIA Corporation NVIDIA GeForce Pre-Release D14P2-30 OpenGL Engine
+NVIDIA Corporation NVIDIA GeForce Pre-Release GK104 OpenGL Engine
+NVIDIA Corporation NVIDIA GeForce Pre-Release ION OpenGL Engine
+NVIDIA Corporation NVIDIA GeForce Pre-Release Unknown OpenGL Engine
+NVIDIA Corporation NVIDIA NV34MAP OpenGL Engine
+NVIDIA Corporation NVIDIA Quadro 4000 OpenGL Engine
+NVIDIA Corporation NVIDIA Quadro 4000 OpenGL Engine
+NVIDIA Corporation NVIDIA Quadro FX 4500 OpenGL Engine
+NVIDIA Corporation NVIDIA Quadro FX 4500 OpenGL Engine
+NVIDIA Corporation NVIDIA Quadro FX 4800 OpenGL Engine
+NVIDIA Corporation NVIDIA Quadro FX 4800 OpenGL Engine
+NVIDIA Corporation NVIDIA Quadro FX 5600 OpenGL Engine
+NVIDIA Corporation NVIDIA Quadro FX 580 OpenGL Engine
+NVIDIA Corporation NVIDIA Quadro FX 770M OpenGL Engine
+NVIDIA Corporation NVS 2100M/PCI/SSE2
+NVIDIA Corporation NVS 2100M/PCIe/SSE2
+NVIDIA Corporation NVS 2100M/PCIe/SSE2
+NVIDIA Corporation NVS 300/PCI/SSE2
+NVIDIA Corporation NVS 300/PCI/SSE2/3DNOW!
+NVIDIA Corporation NVS 300/PCIe/SSE2
+NVIDIA Corporation NVS 310/PCIe/SSE2
+NVIDIA Corporation NVS 310/PCIe/SSE2
+NVIDIA Corporation NVS 3100M/PCI/SSE2
+NVIDIA Corporation NVS 3100M/PCI/SSE2
+NVIDIA Corporation NVS 3100M/PCIe/SSE2
+NVIDIA Corporation NVS 3100M/PCIe/SSE2
+NVIDIA Corporation NVS 315/PCIe/SSE2
+NVIDIA Corporation NVS 4200M/PCI/SSE2
+NVIDIA Corporation NVS 4200M/PCI/SSE2
+NVIDIA Corporation NVS 4200M/PCIe/SSE2
+NVIDIA Corporation NVS 4200M/PCIe/SSE2
+NVIDIA Corporation NVS 510/PCIe/SSE2
+NVIDIA Corporation NVS 510/PCIe/SSE2
+NVIDIA Corporation NVS 5100M/PCI/SSE2
+NVIDIA Corporation NVS 5100M/PCIe/SSE2
+NVIDIA Corporation NVS 5100M/PCIe/SSE2
+NVIDIA Corporation NVS 5200M/PCI/SSE2
+NVIDIA Corporation NVS 5200M/PCIe/SSE2
+NVIDIA Corporation NVS 5200M/PCIe/SSE2
+NVIDIA Corporation NVS 5400M/PCIe/SSE2
+NVIDIA Corporation NVS 5400M/PCIe/SSE2
+NVIDIA Corporation Quadro 1000M/PCI/SSE2
+NVIDIA Corporation Quadro 1000M/PCIe/SSE2
+NVIDIA Corporation Quadro 1000M/PCIe/SSE2
+NVIDIA Corporation Quadro 1100M/PCIe/SSE2
+NVIDIA Corporation Quadro 2000 D/PCI/SSE2
+NVIDIA Corporation Quadro 2000/PCI/SSE2
+NVIDIA Corporation Quadro 2000/PCIe/SSE2
+NVIDIA Corporation Quadro 2000/PCIe/SSE2
+NVIDIA Corporation Quadro 2000D/PCIe/SSE2
+NVIDIA Corporation Quadro 2000M/PCI/SSE2
+NVIDIA Corporation Quadro 2000M/PCIe/SSE2
+NVIDIA Corporation Quadro 3000M/PCI/SSE2
+NVIDIA Corporation Quadro 3000M/PCIe/SSE2
+NVIDIA Corporation Quadro 3000M/PCIe/SSE2
+NVIDIA Corporation Quadro 400/PCI/SSE2
+NVIDIA Corporation Quadro 400/PCI/SSE2
+NVIDIA Corporation Quadro 400/PCI/SSE2/3DNOW!
+NVIDIA Corporation Quadro 400/PCIe/SSE2
+NVIDIA Corporation Quadro 4000/PCI/SSE2
+NVIDIA Corporation Quadro 4000/PCIe/SSE2
+NVIDIA Corporation Quadro 4000/PCIe/SSE2
+NVIDIA Corporation Quadro 4000M/PCI/SSE2
+NVIDIA Corporation Quadro 4000M/PCI/SSE2
+NVIDIA Corporation Quadro 4000M/PCIe/SSE2
+NVIDIA Corporation Quadro 410/PCIe/SSE2
+NVIDIA Corporation Quadro 5000/PCI/SSE2
+NVIDIA Corporation Quadro 5000/PCIe/SSE2
+NVIDIA Corporation Quadro 5000M/PCI/SSE2
+NVIDIA Corporation Quadro 5000M/PCIe/SSE2
+NVIDIA Corporation Quadro 5010M/PCI/SSE2
+NVIDIA Corporation Quadro 5010M/PCIe/SSE2
+NVIDIA Corporation Quadro 5010M/PCIe/SSE2
+NVIDIA Corporation Quadro 600/PCI/SSE2
+NVIDIA Corporation Quadro 600/PCI/SSE2
+NVIDIA Corporation Quadro 600/PCIe/SSE2
+NVIDIA Corporation Quadro 600/PCIe/SSE2
+NVIDIA Corporation Quadro 600/PCIe/SSE2/3DNOW!
+NVIDIA Corporation Quadro 6000/PCIe/SSE2
+NVIDIA Corporation Quadro FX 1000/AGP/SSE2
+NVIDIA Corporation Quadro FX 1100/AGP/SSE2
+NVIDIA Corporation Quadro FX 1300/PCI/SSE2
+NVIDIA Corporation Quadro FX 1400/PCI/SSE2
+NVIDIA Corporation Quadro FX 1400/PCI/SSE2
+NVIDIA Corporation Quadro FX 1400/PCIe/SSE2
+NVIDIA Corporation Quadro FX 1400/PCIe/SSE2
+NVIDIA Corporation Quadro FX 1400/PCIe/SSE2/3DNOW!
+NVIDIA Corporation Quadro FX 1500/PCI/SSE2
+NVIDIA Corporation Quadro FX 1500/PCIe/SSE2
+NVIDIA Corporation Quadro FX 1500/PCIe/SSE2/3DNOW!
+NVIDIA Corporation Quadro FX 1500M/PCI/SSE2
+NVIDIA Corporation Quadro FX 1600M/PCI/SSE2
+NVIDIA Corporation Quadro FX 1600M/PCIe/SSE2
+NVIDIA Corporation Quadro FX 1700/PCI/SSE2
+NVIDIA Corporation Quadro FX 1700/PCIe/SSE2
+NVIDIA Corporation Quadro FX 1700/PCIe/SSE2
+NVIDIA Corporation Quadro FX 1700/PCIe/SSE2/3DNOW!
+NVIDIA Corporation Quadro FX 1700M/PCI/SSE2
+NVIDIA Corporation Quadro FX 1700M/PCIe/SSE2
+NVIDIA Corporation Quadro FX 1800/PCI/SSE2
+NVIDIA Corporation Quadro FX 1800/PCIe/SSE2
+NVIDIA Corporation Quadro FX 1800M/PCI/SSE2
+NVIDIA Corporation Quadro FX 1800M/PCIe/SSE2
+NVIDIA Corporation Quadro FX 2000/AGP/SSE2
+NVIDIA Corporation Quadro FX 2500M/PCI/SSE2
+NVIDIA Corporation Quadro FX 2500M/PCIe/SSE2
+NVIDIA Corporation Quadro FX 2700M/PCI/SSE2
+NVIDIA Corporation Quadro FX 2700M/PCIe/SSE2
+NVIDIA Corporation Quadro FX 2800M/PCI/SSE2
+NVIDIA Corporation Quadro FX 2800M/PCIe/SSE2
+NVIDIA Corporation Quadro FX 3000/AGP/SSE2
+NVIDIA Corporation Quadro FX 3400/PCI/SSE2
+NVIDIA Corporation Quadro FX 3400/PCI/SSE2
+NVIDIA Corporation Quadro FX 3450/4000 SDI/PCI/SSE2
+NVIDIA Corporation Quadro FX 3450/4000 SDI/PCI/SSE2
+NVIDIA Corporation Quadro FX 3450/4000 SDI/PCI/SSE2/3DNOW!
+NVIDIA Corporation Quadro FX 3450/4000 SDI/PCI/SSE2/3DNOW!
+NVIDIA Corporation Quadro FX 3450/4000 SDI/PCIe/SSE2
+NVIDIA Corporation Quadro FX 3450/4000 SDI/PCIe/SSE2
+NVIDIA Corporation Quadro FX 3500/PCI/SSE2
+NVIDIA Corporation Quadro FX 3500/PCIe/SSE2
+NVIDIA Corporation Quadro FX 3500M/PCI/SSE2
+NVIDIA Corporation Quadro FX 350M/PCI/SSE2
+NVIDIA Corporation Quadro FX 3600M/PCI/SSE2
+NVIDIA Corporation Quadro FX 3600M/PCIe/SSE2
+NVIDIA Corporation Quadro FX 360M/PCI/SSE2
+NVIDIA Corporation Quadro FX 360M/PCIe/SSE2
+NVIDIA Corporation Quadro FX 370 Low Profile/PCIe/SSE2
+NVIDIA Corporation Quadro FX 370/PCI/SSE2
+NVIDIA Corporation Quadro FX 370/PCIe/SSE2
+NVIDIA Corporation Quadro FX 370/PCIe/SSE2/3DNOW!
+NVIDIA Corporation Quadro FX 3700/PCI/SSE2
+NVIDIA Corporation Quadro FX 3700/PCIe/SSE2
+NVIDIA Corporation Quadro FX 3700M/PCI/SSE2
+NVIDIA Corporation Quadro FX 3700M/PCIe/SSE2
+NVIDIA Corporation Quadro FX 370M/PCI/SSE2
+NVIDIA Corporation Quadro FX 370M/PCIe/SSE2
+NVIDIA Corporation Quadro FX 380 LP/PCIe/SSE2
+NVIDIA Corporation Quadro FX 380 LP/PCIe/SSE2/3DNOW!
+NVIDIA Corporation Quadro FX 380/PCI/SSE2
+NVIDIA Corporation Quadro FX 380/PCIe/SSE2
+NVIDIA Corporation Quadro FX 3800/PCI/SSE2
+NVIDIA Corporation Quadro FX 3800/PCIe/SSE2
+NVIDIA Corporation Quadro FX 3800M/PCI/SSE2
+NVIDIA Corporation Quadro FX 3800M/PCIe/SSE2
+NVIDIA Corporation Quadro FX 380M/PCI/SSE2
+NVIDIA Corporation Quadro FX 380M/PCIe/SSE2
+NVIDIA Corporation Quadro FX 4500/PCI/SSE2
+NVIDIA Corporation Quadro FX 4500/PCIe/SSE2
+NVIDIA Corporation Quadro FX 4600/PCIe/SSE2
+NVIDIA Corporation Quadro FX 4800/PCI/SSE2
+NVIDIA Corporation Quadro FX 4800/PCIe/SSE2
+NVIDIA Corporation Quadro FX 500/AGP/SSE2
+NVIDIA Corporation Quadro FX 500/FX 600/AGP/SSE2
+NVIDIA Corporation Quadro FX 500/FX 600/AGP/SSE2/3DNOW!
+NVIDIA Corporation Quadro FX 500/FX 600/PCI/SSE2
+NVIDIA Corporation Quadro FX 540/PCI/SSE2
+NVIDIA Corporation Quadro FX 540/PCIe/SSE2
+NVIDIA Corporation Quadro FX 550/PCI/SSE2
+NVIDIA Corporation Quadro FX 550/PCIe/SSE2
+NVIDIA Corporation Quadro FX 5500/PCI/SSE2
+NVIDIA Corporation Quadro FX 560/PCI/SSE2
+NVIDIA Corporation Quadro FX 560/PCIe/SSE2
+NVIDIA Corporation Quadro FX 5600/PCIe/SSE2
+NVIDIA Corporation Quadro FX 570/PCI/SSE2
+NVIDIA Corporation Quadro FX 570/PCIe/SSE2
+NVIDIA Corporation Quadro FX 570M/PCI/SSE2
+NVIDIA Corporation Quadro FX 570M/PCIe/SSE2
+NVIDIA Corporation Quadro FX 580/PCI/SSE2
+NVIDIA Corporation Quadro FX 580/PCIe/SSE2
+NVIDIA Corporation Quadro FX 5800/PCIe/SSE2
+NVIDIA Corporation Quadro FX 770M/PCI/SSE2
+NVIDIA Corporation Quadro FX 770M/PCIe/SSE2
+NVIDIA Corporation Quadro FX 880M/PCI/SSE2
+NVIDIA Corporation Quadro FX 880M/PCIe/SSE2
+NVIDIA Corporation Quadro FX Go1400/PCI/SSE2
+NVIDIA Corporation Quadro FX Go1400/PCI/SSE2
+NVIDIA Corporation Quadro FX Go1400/PCIe/SSE2
+NVIDIA Corporation Quadro FX Go700/AGP/SSE2
+NVIDIA Corporation Quadro K1000/PCIe/SSE2
+NVIDIA Corporation Quadro K1000M/PCIe/SSE2
+NVIDIA Corporation Quadro K2000/PCIe/SSE2
+NVIDIA Corporation Quadro K2000/PCIe/SSE2
+NVIDIA Corporation Quadro K2000D/PCIe/SSE2
+NVIDIA Corporation Quadro K2000M/PCIe/SSE2
+NVIDIA Corporation Quadro K2000M/PCIe/SSE2
+NVIDIA Corporation Quadro K3000M/PCIe/SSE2
+NVIDIA Corporation Quadro K4000/PCIe/SSE2
+NVIDIA Corporation Quadro K4000/PCIe/SSE2
+NVIDIA Corporation Quadro K4000/PCIe/SSE2
+NVIDIA Corporation Quadro K4000M/PCIe/SSE2
+NVIDIA Corporation Quadro K5000/PCIe/SSE2
+NVIDIA Corporation Quadro K5000M/PCIe/SSE2
+NVIDIA Corporation Quadro K600/PCIe/SSE2
+NVIDIA Corporation Quadro NVS 110M/PCI/SSE2
+NVIDIA Corporation Quadro NVS 110M/PCI/SSE2
+NVIDIA Corporation Quadro NVS 130M/PCI/SSE2
+NVIDIA Corporation Quadro NVS 130M/PCIe/SSE2
+NVIDIA Corporation Quadro NVS 130M/PCIe/SSE2
+NVIDIA Corporation Quadro NVS 135M/PCI/SSE2
+NVIDIA Corporation Quadro NVS 135M/PCIe/SSE2
+NVIDIA Corporation Quadro NVS 140M/PCI/SSE2
+NVIDIA Corporation Quadro NVS 140M/PCI/SSE2
+NVIDIA Corporation Quadro NVS 140M/PCIe/SSE2
+NVIDIA Corporation Quadro NVS 150M/PCI/SSE2
+NVIDIA Corporation Quadro NVS 150M/PCI/SSE2
+NVIDIA Corporation Quadro NVS 150M/PCIe/SSE2
+NVIDIA Corporation Quadro NVS 160M/PCI/SSE2
+NVIDIA Corporation Quadro NVS 160M/PCIe/SSE2
+NVIDIA Corporation Quadro NVS 210S / GeForce 6150LE/PCI/SSE2
+NVIDIA Corporation Quadro NVS 210S / GeForce 6150LE/PCI/SSE2/3DNOW!
+NVIDIA Corporation Quadro NVS 210S / GeForce 6150LE/integrated/SSE2/3DNOW!
+NVIDIA Corporation Quadro NVS 210S / NVIDIA GeForce 6150LE/PCI/SSE2/3DNOW!
+NVIDIA Corporation Quadro NVS 210S/PCI/SSE2/3DNOW!
+NVIDIA Corporation Quadro NVS 280 PCI-E/PCI/SSE2
+NVIDIA Corporation Quadro NVS 280 SD/AGP/SSE2
+NVIDIA Corporation Quadro NVS 285/PCI/SSE2
+NVIDIA Corporation Quadro NVS 285/PCIe/SSE2
+NVIDIA Corporation Quadro NVS 290/PCI/SSE2
+NVIDIA Corporation Quadro NVS 290/PCIe/SSE2
+NVIDIA Corporation Quadro NVS 290/PCIe/SSE2/3DNOW!
+NVIDIA Corporation Quadro NVS 295/PCI/SSE2
+NVIDIA Corporation Quadro NVS 295/PCIe/SSE2
+NVIDIA Corporation Quadro NVS 300M/PCI/SSE2
+NVIDIA Corporation Quadro NVS 320M/PCI/SSE2
+NVIDIA Corporation Quadro NVS 320M/PCIe/SSE2
+NVIDIA Corporation Quadro NVS 420/PCI/SSE2
+NVIDIA Corporation Quadro NVS 420/PCIe/SSE2
+NVIDIA Corporation Quadro NVS 420/PCIe/SSE2/3DNOW!
+NVIDIA Corporation Quadro NVS 450/PCIe/SSE2
+NVIDIA Corporation Quadro NVS 510M/PCI/SSE2
+NVIDIA Corporation Quadro NVS 55/280 PCI/PCI/SSE2
+NVIDIA Corporation Quadro NVS with AGP8X/AGP/SSE2
+NVIDIA Corporation Quadro NVS/AGP/SSE2
+NVIDIA Corporation Quadro PCI-E Series/PCI/SSE2
+NVIDIA Corporation Quadro2 MXR/AGP/SSE2
+NVIDIA Corporation Quadro4 380 XGL/AGP/SSE2
+NVIDIA Corporation Quadro4 550 XGL/AGP/SSE2
+NVIDIA Corporation Quadro4 700 XGL/AGP/SSE2
+NVIDIA Corporation Quadro4 980 XGL/AGP/SSE2
+NVIDIA Corporation RIVA TNT2/AGP/SSE2
+NVIDIA Corporation RIVA TNT2/AGP/SSE2/3DNOW!
+NVIDIA Corporation Stinger/emulated by Quadro FX 500/FX 600/PCI/SSE2
+NVIDIA Corporation nForce 750a SLI/PCI/SSE2
+NVIDIA Corporation nForce 750a SLI/integrated/SSE2
+NVIDIA Corporation nForce 760i SLI/integrated/SSE2
+NVIDIA Corporation nForce 980a/780a SLI/integrated/SSE2
+NVIDIA Corporation unknown board/AGP/SSE2
+NVIDIA Corporation unknown board/PCI/SSE2
+NVIDIA Corporation unknown board/PCI/SSE2/3DNOW!
+NVIDIA Corporation unknown board/PCIe/SSE2
 NVIDIA D9M
-NVIDIA D9M-20/PCI/SSE2
-NVIDIA Entry Graphics/PCI/SSE2
-NVIDIA Entry Graphics/PCI/SSE2
-NVIDIA Entry Graphics/PCI/SSE2/3DNOW!
-NVIDIA Entry Graphics/PCI/SSE2/3DNOW!
-NVIDIA G 102M
 NVIDIA G 103M
 NVIDIA G 105M
 NVIDIA G 110M
+NVIDIA G 120M
+NVIDIA G 200
+NVIDIA G 205M
+NVIDIA G 210
+NVIDIA G 310M
+NVIDIA G 320M
+NVIDIA G 405
+NVIDIA G 410M
+NVIDIA G 610M
 NVIDIA G100
+NVIDIA G100M
 NVIDIA G102M
 NVIDIA G103M
 NVIDIA G105M
+NVIDIA G200
 NVIDIA G210
 NVIDIA G210M
-NVIDIA G70/PCI/SSE2
-NVIDIA G72
 NVIDIA G73
 NVIDIA G84
-NVIDIA G86
+NVIDIA G84
 NVIDIA G92
-NVIDIA G92-200/PCI/SSE2
 NVIDIA G94
-NVIDIA G96/PCI/SSE2
-NVIDIA G96/PCI/SSE2
-NVIDIA G98/PCI/SSE2
-NVIDIA G98/PCI/SSE2
-NVIDIA G98/PCI/SSE2/3DNOW!
 NVIDIA GT 120
+NVIDIA GT 120
+NVIDIA GT 120M
+NVIDIA GT 130
+NVIDIA GT 130
 NVIDIA GT 130
 NVIDIA GT 130M
 NVIDIA GT 140
+NVIDIA GT 140M
 NVIDIA GT 150
-NVIDIA GT 160M
 NVIDIA GT 220
-NVIDIA GT 220/PCI/SSE2
-NVIDIA GT 220/PCI/SSE2
-NVIDIA GT 220/PCI/SSE2/3DNOW!
-NVIDIA GT 220/PCI/SSE2/3DNOW!
+NVIDIA GT 220
+NVIDIA GT 220
+NVIDIA GT 220
+NVIDIA GT 220M
+NVIDIA GT 230
 NVIDIA GT 230
 NVIDIA GT 230M
 NVIDIA GT 240
+NVIDIA GT 240
+NVIDIA GT 240
 NVIDIA GT 240M
-NVIDIA GT 250M
 NVIDIA GT 260M
 NVIDIA GT 320
 NVIDIA GT 320M
+NVIDIA GT 320M
+NVIDIA GT 325M
+NVIDIA GT 330
+NVIDIA GT 330
 NVIDIA GT 330
 NVIDIA GT 330M
+NVIDIA GT 330M
+NVIDIA GT 335M
 NVIDIA GT 340
+NVIDIA GT 340M
+NVIDIA GT 415M
 NVIDIA GT 420
+NVIDIA GT 420M
+NVIDIA GT 425M
 NVIDIA GT 430
+NVIDIA GT 430M
+NVIDIA GT 435M
 NVIDIA GT 440
+NVIDIA GT 440M
+NVIDIA GT 445M
 NVIDIA GT 450
 NVIDIA GT 520
+NVIDIA GT 520
+NVIDIA GT 520M
+NVIDIA GT 525M
+NVIDIA GT 530M
 NVIDIA GT 540
 NVIDIA GT 540M
-NVIDIA GT-120
-NVIDIA GT200/PCI/SSE2
-NVIDIA GTS 150
+NVIDIA GT 550
+NVIDIA GT 550M
+NVIDIA GT 555M
+NVIDIA GT 610
+NVIDIA GT 620
+NVIDIA GT 620M
+NVIDIA GT 630
+NVIDIA GT 630M
+NVIDIA GT 635M
+NVIDIA GT 640
+NVIDIA GT 640M
+NVIDIA GT 650
+NVIDIA GT 650M
+NVIDIA GT 650M
+NVIDIA GTS 160M
+NVIDIA GTS 240
 NVIDIA GTS 240
 NVIDIA GTS 250
 NVIDIA GTS 350M
@@ -1238,11 +3786,12 @@ NVIDIA GTS 360
 NVIDIA GTS 360M
 NVIDIA GTS 450
 NVIDIA GTX 260
-NVIDIA GTX 260M
 NVIDIA GTX 270
+NVIDIA GTX 275
 NVIDIA GTX 280
 NVIDIA GTX 285
 NVIDIA GTX 290
+NVIDIA GTX 295
 NVIDIA GTX 460
 NVIDIA GTX 460M
 NVIDIA GTX 465
@@ -1250,1142 +3799,376 @@ NVIDIA GTX 470
 NVIDIA GTX 470M
 NVIDIA GTX 480
 NVIDIA GTX 480M
-NVIDIA GTX 550 Ti
+NVIDIA GTX 485M
+NVIDIA GTX 550
+NVIDIA GTX 560
+NVIDIA GTX 560
 NVIDIA GTX 560
 NVIDIA GTX 560 Ti
 NVIDIA GTX 570
 NVIDIA GTX 580
+NVIDIA GTX 580M
 NVIDIA GTX 590
-NVIDIA GeForce
+NVIDIA GTX 650
+NVIDIA GTX 660
+NVIDIA GTX 660
+NVIDIA GTX 670
+NVIDIA GTX 670
+NVIDIA GTX 670M
+NVIDIA GTX 675M
+NVIDIA GTX 675M
+NVIDIA GTX 680
+NVIDIA GTX 680
+NVIDIA GTX 680M
+NVIDIA GTX 690
+NVIDIA GTX 770
+NVIDIA GTX 770
+NVIDIA GTX TITAN
 NVIDIA GeForce 2
-NVIDIA GeForce 205/PCI/SSE2
-NVIDIA GeForce 205/PCI/SSE2
-NVIDIA GeForce 210
-NVIDIA GeForce 210/PCI/SSE2
-NVIDIA GeForce 210/PCI/SSE2
-NVIDIA GeForce 210/PCI/SSE2/3DNOW!
-NVIDIA GeForce 210/PCI/SSE2/3DNOW!
 NVIDIA GeForce 3
-NVIDIA GeForce 305M/PCI/SSE2
-NVIDIA GeForce 305M/PCI/SSE2
-NVIDIA GeForce 310/PCI/SSE2
-NVIDIA GeForce 310/PCI/SSE2
-NVIDIA GeForce 310/PCI/SSE2/3DNOW!
-NVIDIA GeForce 310/PCI/SSE2/3DNOW!
-NVIDIA GeForce 310M/PCI/SSE2
-NVIDIA GeForce 310M/PCI/SSE2
-NVIDIA GeForce 315/PCI/SSE2
-NVIDIA GeForce 315/PCI/SSE2
-NVIDIA GeForce 315/PCI/SSE2/3DNOW!
-NVIDIA GeForce 315/PCI/SSE2/3DNOW!
-NVIDIA GeForce 315M/PCI/SSE2
-NVIDIA GeForce 315M/PCI/SSE2
-NVIDIA GeForce 320M/PCI/SSE2
+NVIDIA GeForce 4
 NVIDIA GeForce 4 Go
 NVIDIA GeForce 4 MX
 NVIDIA GeForce 4 Ti
-NVIDIA GeForce 405/PCI/SSE2
-NVIDIA GeForce 405/PCI/SSE2
-NVIDIA GeForce 410M/PCI/SSE2
 NVIDIA GeForce 6100
-NVIDIA GeForce 6100 nForce 400/PCI/SSE2/3DNOW!
-NVIDIA GeForce 6100 nForce 400/PCI/SSE2/3DNOW!
-NVIDIA GeForce 6100 nForce 405/PCI/SSE2
-NVIDIA GeForce 6100 nForce 405/PCI/SSE2/3DNOW!
-NVIDIA GeForce 6100 nForce 405/PCI/SSE2/3DNOW!
-NVIDIA GeForce 6100 nForce 420/PCI/SSE2/3DNOW!
-NVIDIA GeForce 6100 nForce 420/PCI/SSE2/3DNOW!
-NVIDIA GeForce 6100 nForce 430/PCI/SSE2/3DNOW!
-NVIDIA GeForce 6100 nForce 430/PCI/SSE2/3DNOW!
-NVIDIA GeForce 6100/PCI/SSE2/3DNOW!
-NVIDIA GeForce 6100/PCI/SSE2/3DNOW!
-NVIDIA GeForce 6150 LE/PCI/SSE2/3DNOW!
-NVIDIA GeForce 6150 LE/PCI/SSE2/3DNOW!
-NVIDIA GeForce 6150/PCI/SSE2
-NVIDIA GeForce 6150/PCI/SSE2/3DNOW!
-NVIDIA GeForce 6150/PCI/SSE2/3DNOW!
-NVIDIA GeForce 6150SE nForce 430/PCI/SSE2
-NVIDIA GeForce 6150SE nForce 430/PCI/SSE2
-NVIDIA GeForce 6150SE nForce 430/PCI/SSE2/3DNOW!
-NVIDIA GeForce 6150SE nForce 430/PCI/SSE2/3DNOW!
-NVIDIA GeForce 6150SE/PCI/SSE2/3DNOW!
-NVIDIA GeForce 6150SE/PCI/SSE2/3DNOW!
+NVIDIA GeForce 6100
+NVIDIA GeForce 6200
 NVIDIA GeForce 6200
-NVIDIA GeForce 6200 A-LE/AGP/SSE/3DNOW!
-NVIDIA GeForce 6200 A-LE/AGP/SSE2
-NVIDIA GeForce 6200 A-LE/AGP/SSE2/3DNOW!
-NVIDIA GeForce 6200 LE/PCI/SSE2
-NVIDIA GeForce 6200 LE/PCI/SSE2
-NVIDIA GeForce 6200 LE/PCI/SSE2/3DNOW!
-NVIDIA GeForce 6200 TurboCache(TM)/PCI/SSE2
-NVIDIA GeForce 6200 TurboCache(TM)/PCI/SSE2
-NVIDIA GeForce 6200 TurboCache(TM)/PCI/SSE2/3DNOW!
-NVIDIA GeForce 6200/AGP/SSE/3DNOW!
-NVIDIA GeForce 6200/AGP/SSE/3DNOW!
-NVIDIA GeForce 6200/AGP/SSE2
-NVIDIA GeForce 6200/AGP/SSE2
-NVIDIA GeForce 6200/AGP/SSE2/3DNOW!
-NVIDIA GeForce 6200/PCI/SSE/3DNOW!
-NVIDIA GeForce 6200/PCI/SSE2
-NVIDIA GeForce 6200/PCI/SSE2
-NVIDIA GeForce 6200/PCI/SSE2/3DNOW!
-NVIDIA GeForce 6200/PCI/SSE2/3DNOW!
-NVIDIA GeForce 6200SE TurboCache(TM)/PCI/SSE2/3DNOW!
 NVIDIA GeForce 6500
-NVIDIA GeForce 6500/PCI/SSE2
-NVIDIA GeForce 6500/PCI/SSE2
 NVIDIA GeForce 6600
-NVIDIA GeForce 6600 GT/AGP/SSE/3DNOW!
-NVIDIA GeForce 6600 GT/AGP/SSE2
-NVIDIA GeForce 6600 GT/AGP/SSE2
-NVIDIA GeForce 6600 GT/PCI/SSE/3DNOW!
-NVIDIA GeForce 6600 GT/PCI/SSE2
-NVIDIA GeForce 6600 GT/PCI/SSE2/3DNOW!
-NVIDIA GeForce 6600 GT/PCI/SSE2/3DNOW!
-NVIDIA GeForce 6600 LE/PCI/SSE2
-NVIDIA GeForce 6600/AGP/SSE/3DNOW!
-NVIDIA GeForce 6600/AGP/SSE2
-NVIDIA GeForce 6600/AGP/SSE2/3DNOW!
-NVIDIA GeForce 6600/PCI/SSE2
-NVIDIA GeForce 6600/PCI/SSE2/3DNOW!
 NVIDIA GeForce 6700
 NVIDIA GeForce 6800
-NVIDIA GeForce 6800 GS/PCI/SSE2
-NVIDIA GeForce 6800 GS/PCI/SSE2/3DNOW!
-NVIDIA GeForce 6800 GT/AGP/SSE2
-NVIDIA GeForce 6800 GT/PCI/SSE2
-NVIDIA GeForce 6800 XT/AGP/SSE2
-NVIDIA GeForce 6800 XT/PCI/SSE2
-NVIDIA GeForce 6800 XT/PCI/SSE2/3DNOW!
-NVIDIA GeForce 6800/PCI/SSE2
-NVIDIA GeForce 6800/PCI/SSE2/3DNOW!
 NVIDIA GeForce 7000
 NVIDIA GeForce 7000M
-NVIDIA GeForce 7000M / nForce 610M/PCI/SSE2
-NVIDIA GeForce 7000M / nForce 610M/PCI/SSE2/3DNOW!
-NVIDIA GeForce 7000M / nForce 610M/PCI/SSE2/3DNOW!
-NVIDIA GeForce 7025 / NVIDIA nForce 630a/PCI/SSE2/3DNOW!
-NVIDIA GeForce 7025 / NVIDIA nForce 630a/PCI/SSE2/3DNOW!
-NVIDIA GeForce 7025 / nForce 630a/PCI/SSE2
-NVIDIA GeForce 7025 / nForce 630a/PCI/SSE2
-NVIDIA GeForce 7025 / nForce 630a/PCI/SSE2/3DNOW!
-NVIDIA GeForce 7025 / nForce 630a/PCI/SSE2/3DNOW!
-NVIDIA GeForce 7050 / NVIDIA nForce 610i/PCI/SSE2
-NVIDIA GeForce 7050 / NVIDIA nForce 610i/PCI/SSE2
-NVIDIA GeForce 7050 / NVIDIA nForce 620i/PCI/SSE2
-NVIDIA GeForce 7050 / nForce 610i/PCI/SSE2
-NVIDIA GeForce 7050 / nForce 610i/PCI/SSE2
-NVIDIA GeForce 7050 / nForce 620i/PCI/SSE2
-NVIDIA GeForce 7050 / nForce 620i/PCI/SSE2
-NVIDIA GeForce 7050 PV / NVIDIA nForce 630a/PCI/SSE2/3DNOW!
-NVIDIA GeForce 7050 PV / NVIDIA nForce 630a/PCI/SSE2/3DNOW!
-NVIDIA GeForce 7050 PV / nForce 630a/PCI/SSE2
-NVIDIA GeForce 7050 PV / nForce 630a/PCI/SSE2/3DNOW!
-NVIDIA GeForce 7050 SE / NVIDIA nForce 630a/PCI/SSE2/3DNOW!
 NVIDIA GeForce 7100
-NVIDIA GeForce 7100 / NVIDIA nForce 620i/PCI/SSE2
-NVIDIA GeForce 7100 / NVIDIA nForce 620i/PCI/SSE2
-NVIDIA GeForce 7100 / NVIDIA nForce 630i/PCI/SSE2
-NVIDIA GeForce 7100 / NVIDIA nForce 630i/PCI/SSE2
-NVIDIA GeForce 7100 / nForce 630i/PCI/SSE2
-NVIDIA GeForce 7100 / nForce 630i/PCI/SSE2
-NVIDIA GeForce 7100 GS/PCI/SSE2
-NVIDIA GeForce 7100 GS/PCI/SSE2
-NVIDIA GeForce 7100 GS/PCI/SSE2/3DNOW!
-NVIDIA GeForce 7100 GS/PCI/SSE2/3DNOW!
-NVIDIA GeForce 7150M / nForce 630M/PCI/SSE2
-NVIDIA GeForce 7150M / nForce 630M/PCI/SSE2
-NVIDIA GeForce 7150M / nForce 630M/PCI/SSE2/3DNOW!
-NVIDIA GeForce 7150M / nForce 630M/PCI/SSE2/3DNOW!
 NVIDIA GeForce 7300
-NVIDIA GeForce 7300 GS/PCI/SSE2
-NVIDIA GeForce 7300 GS/PCI/SSE2
-NVIDIA GeForce 7300 GS/PCI/SSE2/3DNOW!
-NVIDIA GeForce 7300 GS/PCI/SSE2/3DNOW!
-NVIDIA GeForce 7300 GT/AGP/SSE2
-NVIDIA GeForce 7300 GT/AGP/SSE2/3DNOW!
-NVIDIA GeForce 7300 GT/PCI/SSE2
-NVIDIA GeForce 7300 GT/PCI/SSE2
-NVIDIA GeForce 7300 GT/PCI/SSE2/3DNOW!
-NVIDIA GeForce 7300 GT/PCI/SSE2/3DNOW!
-NVIDIA GeForce 7300 LE/PCI/SSE2
-NVIDIA GeForce 7300 LE/PCI/SSE2
-NVIDIA GeForce 7300 LE/PCI/SSE2/3DNOW!
-NVIDIA GeForce 7300 LE/PCI/SSE2/3DNOW!
-NVIDIA GeForce 7300 SE/7200 GS/PCI/SSE2
-NVIDIA GeForce 7300 SE/7200 GS/PCI/SSE2
-NVIDIA GeForce 7300 SE/7200 GS/PCI/SSE2/3DNOW!
-NVIDIA GeForce 7300 SE/7200 GS/PCI/SSE2/3DNOW!
-NVIDIA GeForce 7300 SE/PCI/SSE2
-NVIDIA GeForce 7300 SE/PCI/SSE2
-NVIDIA GeForce 7300 SE/PCI/SSE2/3DNOW!
-NVIDIA GeForce 7300 SE/PCI/SSE2/3DNOW!
-NVIDIA GeForce 7350 LE/PCI/SSE2
-NVIDIA GeForce 7350 LE/PCI/SSE2
+NVIDIA GeForce 7300
 NVIDIA GeForce 7500
-NVIDIA GeForce 7500 LE/PCI/SSE2
-NVIDIA GeForce 7500 LE/PCI/SSE2/3DNOW!
 NVIDIA GeForce 7600
-NVIDIA GeForce 7600 GS/AGP/SSE2
-NVIDIA GeForce 7600 GS/AGP/SSE2/3DNOW!
-NVIDIA GeForce 7600 GS/PCI/SSE2
-NVIDIA GeForce 7600 GS/PCI/SSE2
-NVIDIA GeForce 7600 GS/PCI/SSE2/3DNOW!
-NVIDIA GeForce 7600 GS/PCI/SSE2/3DNOW!
-NVIDIA GeForce 7600 GT/AGP/SSE/3DNOW!
-NVIDIA GeForce 7600 GT/AGP/SSE2
-NVIDIA GeForce 7600 GT/PCI/SSE2
-NVIDIA GeForce 7600 GT/PCI/SSE2
-NVIDIA GeForce 7600 GT/PCI/SSE2/3DNOW!
-NVIDIA GeForce 7650 GS/PCI/SSE2
+NVIDIA GeForce 7600
+NVIDIA GeForce 7800
 NVIDIA GeForce 7800
-NVIDIA GeForce 7800 GS/AGP/SSE2
-NVIDIA GeForce 7800 GS/AGP/SSE2/3DNOW!
-NVIDIA GeForce 7800 GT/PCI/SSE2
-NVIDIA GeForce 7800 GT/PCI/SSE2/3DNOW!
-NVIDIA GeForce 7800 GTX/PCI/SSE2
-NVIDIA GeForce 7800 GTX/PCI/SSE2/3DNOW!
-NVIDIA GeForce 7800 GTX/PCI/SSE2/3DNOW!
 NVIDIA GeForce 7900
-NVIDIA GeForce 7900 GS/PCI/SSE2
-NVIDIA GeForce 7900 GS/PCI/SSE2
-NVIDIA GeForce 7900 GS/PCI/SSE2/3DNOW!
-NVIDIA GeForce 7900 GT/GTO/PCI/SSE2
-NVIDIA GeForce 7900 GT/GTO/PCI/SSE2/3DNOW!
-NVIDIA GeForce 7900 GT/PCI/SSE2/3DNOW!
-NVIDIA GeForce 7900 GT/PCI/SSE2/3DNOW!
-NVIDIA GeForce 7900 GTX/PCI/SSE2
-NVIDIA GeForce 7950 GT/PCI/SSE2
-NVIDIA GeForce 7950 GT/PCI/SSE2/3DNOW!
+NVIDIA GeForce 7900
 NVIDIA GeForce 8100
-NVIDIA GeForce 8100 / nForce 720a/PCI/SSE2/3DNOW!
 NVIDIA GeForce 8200
-NVIDIA GeForce 8200/PCI/SSE2
-NVIDIA GeForce 8200/PCI/SSE2
-NVIDIA GeForce 8200/PCI/SSE2/3DNOW!
-NVIDIA GeForce 8200/PCI/SSE2/3DNOW!
 NVIDIA GeForce 8200M
-NVIDIA GeForce 8200M G/PCI/SSE2
-NVIDIA GeForce 8200M G/PCI/SSE2
-NVIDIA GeForce 8200M G/PCI/SSE2/3DNOW!
-NVIDIA GeForce 8200M G/PCI/SSE2/3DNOW!
 NVIDIA GeForce 8300
-NVIDIA GeForce 8300 GS/PCI/SSE2
-NVIDIA GeForce 8300 GS/PCI/SSE2
+NVIDIA GeForce 8300
+NVIDIA GeForce 8400
 NVIDIA GeForce 8400
-NVIDIA GeForce 8400 GS/PCI/SSE/3DNOW!
-NVIDIA GeForce 8400 GS/PCI/SSE2
-NVIDIA GeForce 8400 GS/PCI/SSE2
-NVIDIA GeForce 8400 GS/PCI/SSE2/3DNOW!
-NVIDIA GeForce 8400 GS/PCI/SSE2/3DNOW!
-NVIDIA GeForce 8400/PCI/SSE2/3DNOW!
-NVIDIA GeForce 8400GS/PCI/SSE2
-NVIDIA GeForce 8400GS/PCI/SSE2
-NVIDIA GeForce 8400GS/PCI/SSE2/3DNOW!
-NVIDIA GeForce 8400GS/PCI/SSE2/3DNOW!
 NVIDIA GeForce 8400M
-NVIDIA GeForce 8400M G/PCI/SSE2
-NVIDIA GeForce 8400M G/PCI/SSE2
-NVIDIA GeForce 8400M G/PCI/SSE2/3DNOW!
-NVIDIA GeForce 8400M G/PCI/SSE2/3DNOW!
-NVIDIA GeForce 8400M GS/PCI/SSE2
-NVIDIA GeForce 8400M GS/PCI/SSE2
-NVIDIA GeForce 8400M GS/PCI/SSE2/3DNOW!
-NVIDIA GeForce 8400M GS/PCI/SSE2/3DNOW!
-NVIDIA GeForce 8400M GT/PCI/SSE2
-NVIDIA GeForce 8400M GT/PCI/SSE2
+NVIDIA GeForce 8400M
+NVIDIA GeForce 8500
 NVIDIA GeForce 8500
-NVIDIA GeForce 8500 GT/PCI/SSE2
-NVIDIA GeForce 8500 GT/PCI/SSE2
-NVIDIA GeForce 8500 GT/PCI/SSE2/3DNOW!
-NVIDIA GeForce 8500 GT/PCI/SSE2/3DNOW!
 NVIDIA GeForce 8600
-NVIDIA GeForce 8600 GS/PCI/SSE2
-NVIDIA GeForce 8600 GS/PCI/SSE2
-NVIDIA GeForce 8600 GS/PCI/SSE2/3DNOW!
-NVIDIA GeForce 8600 GT/PCI/SSE2
-NVIDIA GeForce 8600 GT/PCI/SSE2
-NVIDIA GeForce 8600 GT/PCI/SSE2/3DNOW!
-NVIDIA GeForce 8600 GT/PCI/SSE2/3DNOW!
-NVIDIA GeForce 8600 GTS/PCI/SSE2
-NVIDIA GeForce 8600 GTS/PCI/SSE2/3DNOW!
-NVIDIA GeForce 8600GS/PCI/SSE2
-NVIDIA GeForce 8600GS/PCI/SSE2
 NVIDIA GeForce 8600M
-NVIDIA GeForce 8600M GS/PCI/SSE2
-NVIDIA GeForce 8600M GS/PCI/SSE2/3DNOW!
-NVIDIA GeForce 8600M GT/PCI/SSE2
-NVIDIA GeForce 8600M GT/PCI/SSE2
+NVIDIA GeForce 8600M
 NVIDIA GeForce 8700
 NVIDIA GeForce 8700M
-NVIDIA GeForce 8700M GT/PCI/SSE2
-NVIDIA GeForce 8700M GT/PCI/SSE2
 NVIDIA GeForce 8800
-NVIDIA GeForce 8800 GS/PCI/SSE2
-NVIDIA GeForce 8800 GT/PCI/SSE2
-NVIDIA GeForce 8800 GT/PCI/SSE2
-NVIDIA GeForce 8800 GT/PCI/SSE2/3DNOW!
-NVIDIA GeForce 8800 GT/PCI/SSE2/3DNOW!
-NVIDIA GeForce 8800 GTS 512/PCI/SSE2
-NVIDIA GeForce 8800 GTS 512/PCI/SSE2/3DNOW!
-NVIDIA GeForce 8800 GTS/PCI/SSE2
-NVIDIA GeForce 8800 GTS/PCI/SSE2
-NVIDIA GeForce 8800 GTS/PCI/SSE2/3DNOW!
-NVIDIA GeForce 8800 GTX/PCI/SSE2
-NVIDIA GeForce 8800 Ultra/PCI/SSE2
-NVIDIA GeForce 8800M GTS/PCI/SSE2
-NVIDIA GeForce 8800M GTS/PCI/SSE2
-NVIDIA GeForce 8800M GTX/PCI/SSE2
-NVIDIA GeForce 8800M GTX/PCI/SSE2
+NVIDIA GeForce 8800M
 NVIDIA GeForce 9100
-NVIDIA GeForce 9100/PCI/SSE2
-NVIDIA GeForce 9100/PCI/SSE2
-NVIDIA GeForce 9100/PCI/SSE2/3DNOW!
 NVIDIA GeForce 9100M
-NVIDIA GeForce 9100M G/PCI/SSE2
-NVIDIA GeForce 9100M G/PCI/SSE2
-NVIDIA GeForce 9100M G/PCI/SSE2/3DNOW!
 NVIDIA GeForce 9200
-NVIDIA GeForce 9200/PCI/SSE2
-NVIDIA GeForce 9200/PCI/SSE2
-NVIDIA GeForce 9200/PCI/SSE2/3DNOW!
-NVIDIA GeForce 9200/PCI/SSE2/3DNOW!
-NVIDIA GeForce 9200M GE/PCI/SSE2
-NVIDIA GeForce 9200M GE/PCI/SSE2
-NVIDIA GeForce 9200M GS/PCI/SSE2
-NVIDIA GeForce 9200M GS/PCI/SSE2
+NVIDIA GeForce 9200
+NVIDIA GeForce 9200M
+NVIDIA GeForce 9300
 NVIDIA GeForce 9300
-NVIDIA GeForce 9300 / nForce 730i/PCI/SSE2
-NVIDIA GeForce 9300 GE/PCI/SSE2
-NVIDIA GeForce 9300 GE/PCI/SSE2
-NVIDIA GeForce 9300 GE/PCI/SSE2/3DNOW!
-NVIDIA GeForce 9300 GE/PCI/SSE2/3DNOW!
-NVIDIA GeForce 9300 GS/PCI/SSE2
-NVIDIA GeForce 9300 GS/PCI/SSE2
-NVIDIA GeForce 9300 GS/PCI/SSE2/3DNOW!
-NVIDIA GeForce 9300 GS/PCI/SSE2/3DNOW!
-NVIDIA GeForce 9300 SE/PCI/SSE2
 NVIDIA GeForce 9300M
-NVIDIA GeForce 9300M G/PCI/SSE2
-NVIDIA GeForce 9300M G/PCI/SSE2
-NVIDIA GeForce 9300M G/PCI/SSE2/3DNOW!
-NVIDIA GeForce 9300M GS/PCI/SSE2
-NVIDIA GeForce 9300M GS/PCI/SSE2
-NVIDIA GeForce 9300M GS/PCI/SSE2/3DNOW!
+NVIDIA GeForce 9300M
+NVIDIA GeForce 9400
 NVIDIA GeForce 9400
-NVIDIA GeForce 9400 GT/PCI/SSE2
-NVIDIA GeForce 9400 GT/PCI/SSE2
-NVIDIA GeForce 9400 GT/PCI/SSE2/3DNOW!
-NVIDIA GeForce 9400 GT/PCI/SSE2/3DNOW!
-NVIDIA GeForce 9400/PCI/SSE2
 NVIDIA GeForce 9400M
-NVIDIA GeForce 9400M G/PCI/SSE2
-NVIDIA GeForce 9400M G/PCI/SSE2
-NVIDIA GeForce 9400M/PCI/SSE2
-NVIDIA GeForce 9400M/PCI/SSE2
+NVIDIA GeForce 9400M
 NVIDIA GeForce 9500
-NVIDIA GeForce 9500 GS/PCI/SSE2
-NVIDIA GeForce 9500 GS/PCI/SSE2
-NVIDIA GeForce 9500 GS/PCI/SSE2/3DNOW!
-NVIDIA GeForce 9500 GT/PCI/SSE2
-NVIDIA GeForce 9500 GT/PCI/SSE2
-NVIDIA GeForce 9500 GT/PCI/SSE2/3DNOW!
-NVIDIA GeForce 9500 GT/PCI/SSE2/3DNOW!
 NVIDIA GeForce 9500M
-NVIDIA GeForce 9500M GS/PCI/SSE2
-NVIDIA GeForce 9500M GS/PCI/SSE2
 NVIDIA GeForce 9600
-NVIDIA GeForce 9600 GS/PCI/SSE2
-NVIDIA GeForce 9600 GSO 512/PCI/SSE2
-NVIDIA GeForce 9600 GSO/PCI/SSE2
-NVIDIA GeForce 9600 GSO/PCI/SSE2/3DNOW!
-NVIDIA GeForce 9600 GSO/PCI/SSE2/3DNOW!
-NVIDIA GeForce 9600 GT/PCI/SSE2
-NVIDIA GeForce 9600 GT/PCI/SSE2
-NVIDIA GeForce 9600 GT/PCI/SSE2/3DNOW!
-NVIDIA GeForce 9600 GT/PCI/SSE2/3DNOW!
+NVIDIA GeForce 9600
+NVIDIA GeForce 9600M
 NVIDIA GeForce 9600M
-NVIDIA GeForce 9600M GS/PCI/SSE2
-NVIDIA GeForce 9600M GS/PCI/SSE2
-NVIDIA GeForce 9600M GT/PCI/SSE2
-NVIDIA GeForce 9600M GT/PCI/SSE2
-NVIDIA GeForce 9650M GT/PCI/SSE2
-NVIDIA GeForce 9650M GT/PCI/SSE2
 NVIDIA GeForce 9700M
-NVIDIA GeForce 9700M GT/PCI/SSE2
-NVIDIA GeForce 9700M GTS/PCI/SSE2
-NVIDIA GeForce 9700M GTS/PCI/SSE2
 NVIDIA GeForce 9800
-NVIDIA GeForce 9800 GT/PCI/SSE2
-NVIDIA GeForce 9800 GT/PCI/SSE2
-NVIDIA GeForce 9800 GT/PCI/SSE2/3DNOW!
-NVIDIA GeForce 9800 GT/PCI/SSE2/3DNOW!
-NVIDIA GeForce 9800 GTX+/PCI/SSE2
-NVIDIA GeForce 9800 GTX+/PCI/SSE2
-NVIDIA GeForce 9800 GTX+/PCI/SSE2/3DNOW!
-NVIDIA GeForce 9800 GTX/9800 GTX+/PCI/SSE2
-NVIDIA GeForce 9800 GTX/9800 GTX+/PCI/SSE2
-NVIDIA GeForce 9800 GTX/PCI/SSE2
-NVIDIA GeForce 9800 GX2/PCI/SSE2
 NVIDIA GeForce 9800M
-NVIDIA GeForce 9800M GS/PCI/SSE2
-NVIDIA GeForce 9800M GS/PCI/SSE2
-NVIDIA GeForce 9800M GT/PCI/SSE2
-NVIDIA GeForce 9800M GT/PCI/SSE2
-NVIDIA GeForce 9800M GTS/PCI/SSE2
-NVIDIA GeForce 9800M GTS/PCI/SSE2
-NVIDIA GeForce FX 5100
-NVIDIA GeForce FX 5100/AGP/SSE/3DNOW!
 NVIDIA GeForce FX 5200
-NVIDIA GeForce FX 5200/AGP/SSE
-NVIDIA GeForce FX 5200/AGP/SSE/3DNOW!
-NVIDIA GeForce FX 5200/AGP/SSE/3DNOW!
-NVIDIA GeForce FX 5200/AGP/SSE2
-NVIDIA GeForce FX 5200/AGP/SSE2
-NVIDIA GeForce FX 5200/AGP/SSE2/3DNOW!
-NVIDIA GeForce FX 5200/PCI/SSE2
-NVIDIA GeForce FX 5200/PCI/SSE2/3DNOW!
-NVIDIA GeForce FX 5200LE/AGP/SSE2
+NVIDIA GeForce FX 5200
+NVIDIA GeForce FX 5500
 NVIDIA GeForce FX 5500
-NVIDIA GeForce FX 5500/AGP/SSE/3DNOW!
-NVIDIA GeForce FX 5500/AGP/SSE2
-NVIDIA GeForce FX 5500/AGP/SSE2
-NVIDIA GeForce FX 5500/AGP/SSE2/3DNOW!
-NVIDIA GeForce FX 5500/AGP/SSE2/3DNOW!
-NVIDIA GeForce FX 5500/PCI/SSE2
-NVIDIA GeForce FX 5500/PCI/SSE2
-NVIDIA GeForce FX 5500/PCI/SSE2/3DNOW!
-NVIDIA GeForce FX 5500/PCI/SSE2/3DNOW!
 NVIDIA GeForce FX 5600
-NVIDIA GeForce FX 5600/AGP/SSE2
-NVIDIA GeForce FX 5600/AGP/SSE2
-NVIDIA GeForce FX 5600/AGP/SSE2/3DNOW!
-NVIDIA GeForce FX 5600XT/AGP/SSE2/3DNOW!
 NVIDIA GeForce FX 5700
-NVIDIA GeForce FX 5700/AGP/SSE/3DNOW!
-NVIDIA GeForce FX 5700LE/AGP/SSE
-NVIDIA GeForce FX 5700LE/AGP/SSE/3DNOW!
-NVIDIA GeForce FX 5800
 NVIDIA GeForce FX 5900
-NVIDIA GeForce FX 5900/AGP/SSE2
-NVIDIA GeForce FX 5900XT/AGP/SSE2
 NVIDIA GeForce FX Go5100
-NVIDIA GeForce FX Go5100/AGP/SSE2
 NVIDIA GeForce FX Go5200
-NVIDIA GeForce FX Go5200/AGP/SSE2
-NVIDIA GeForce FX Go5200/AGP/SSE2
-NVIDIA GeForce FX Go5300
 NVIDIA GeForce FX Go5600
-NVIDIA GeForce FX Go5600/AGP/SSE2
-NVIDIA GeForce FX Go5600/AGP/SSE2
-NVIDIA GeForce FX Go5650/AGP/SSE2
 NVIDIA GeForce FX Go5700
-NVIDIA GeForce FX Go5700/AGP/SSE2
-NVIDIA GeForce FX Go5xxx/AGP/SSE2
-NVIDIA GeForce FX Go5xxx/AGP/SSE2
-NVIDIA GeForce G 103M/PCI/SSE2
-NVIDIA GeForce G 103M/PCI/SSE2
-NVIDIA GeForce G 103M/PCI/SSE2/3DNOW!
-NVIDIA GeForce G 105M/PCI/SSE2
-NVIDIA GeForce G 105M/PCI/SSE2
-NVIDIA GeForce G 110M/PCI/SSE2
-NVIDIA GeForce G 110M/PCI/SSE2
-NVIDIA GeForce G100/PCI/SSE2
-NVIDIA GeForce G100/PCI/SSE2
-NVIDIA GeForce G100/PCI/SSE2/3DNOW!
-NVIDIA GeForce G100/PCI/SSE2/3DNOW!
-NVIDIA GeForce G102M/PCI/SSE2
-NVIDIA GeForce G102M/PCI/SSE2
-NVIDIA GeForce G105M/PCI/SSE2
-NVIDIA GeForce G105M/PCI/SSE2
-NVIDIA GeForce G200/PCI/SSE2
-NVIDIA GeForce G200/PCI/SSE2
-NVIDIA GeForce G205M/PCI/SSE2
-NVIDIA GeForce G205M/PCI/SSE2
-NVIDIA GeForce G210/PCI/SSE2
-NVIDIA GeForce G210/PCI/SSE2
-NVIDIA GeForce G210/PCI/SSE2/3DNOW!
-NVIDIA GeForce G210/PCI/SSE2/3DNOW!
-NVIDIA GeForce G210M/PCI/SSE2
-NVIDIA GeForce G210M/PCI/SSE2
-NVIDIA GeForce G310M/PCI/SSE2
-NVIDIA GeForce GT 120/PCI/SSE2
-NVIDIA GeForce GT 120/PCI/SSE2
-NVIDIA GeForce GT 120/PCI/SSE2/3DNOW!
-NVIDIA GeForce GT 120M/PCI/SSE2
-NVIDIA GeForce GT 130M/PCI/SSE2
-NVIDIA GeForce GT 130M/PCI/SSE2
-NVIDIA GeForce GT 140/PCI/SSE2
-NVIDIA GeForce GT 140/PCI/SSE2
-NVIDIA GeForce GT 220/PCI/SSE2
-NVIDIA GeForce GT 220/PCI/SSE2
-NVIDIA GeForce GT 220/PCI/SSE2/3DNOW!
-NVIDIA GeForce GT 220/PCI/SSE2/3DNOW!
-NVIDIA GeForce GT 220M/PCI/SSE2
-NVIDIA GeForce GT 220M/PCI/SSE2
-NVIDIA GeForce GT 230/PCI/SSE2
-NVIDIA GeForce GT 230/PCI/SSE2
-NVIDIA GeForce GT 230M/PCI/SSE2
-NVIDIA GeForce GT 230M/PCI/SSE2
-NVIDIA GeForce GT 240
-NVIDIA GeForce GT 240/PCI/SSE2
-NVIDIA GeForce GT 240/PCI/SSE2
-NVIDIA GeForce GT 240/PCI/SSE2/3DNOW!
-NVIDIA GeForce GT 240/PCI/SSE2/3DNOW!
-NVIDIA GeForce GT 240M/PCI/SSE2
-NVIDIA GeForce GT 240M/PCI/SSE2
-NVIDIA GeForce GT 320/PCI/SSE2
-NVIDIA GeForce GT 320M/PCI/SSE2
-NVIDIA GeForce GT 320M/PCI/SSE2
-NVIDIA GeForce GT 325M/PCI/SSE2
-NVIDIA GeForce GT 330/PCI/SSE2
-NVIDIA GeForce GT 330/PCI/SSE2
-NVIDIA GeForce GT 330/PCI/SSE2/3DNOW!
-NVIDIA GeForce GT 330M/PCI/SSE2
-NVIDIA GeForce GT 330M/PCI/SSE2
-NVIDIA GeForce GT 335M/PCI/SSE2
-NVIDIA GeForce GT 335M/PCI/SSE2
-NVIDIA GeForce GT 340/PCI/SSE2
-NVIDIA GeForce GT 340/PCI/SSE2
-NVIDIA GeForce GT 340/PCI/SSE2/3DNOW!
-NVIDIA GeForce GT 340/PCI/SSE2/3DNOW!
-NVIDIA GeForce GT 415M/PCI/SSE2
-NVIDIA GeForce GT 415M/PCI/SSE2
-NVIDIA GeForce GT 420/PCI/SSE2
-NVIDIA GeForce GT 420/PCI/SSE2
-NVIDIA GeForce GT 420M/PCI/SSE2
-NVIDIA GeForce GT 420M/PCI/SSE2
-NVIDIA GeForce GT 425M/PCI/SSE2
-NVIDIA GeForce GT 425M/PCI/SSE2
-NVIDIA GeForce GT 430/PCI/SSE2
-NVIDIA GeForce GT 430/PCI/SSE2
-NVIDIA GeForce GT 430/PCI/SSE2/3DNOW!
-NVIDIA GeForce GT 430/PCI/SSE2/3DNOW!
-NVIDIA GeForce GT 435M/PCI/SSE2
-NVIDIA GeForce GT 435M/PCI/SSE2
-NVIDIA GeForce GT 440/PCI/SSE2
-NVIDIA GeForce GT 440/PCI/SSE2
-NVIDIA GeForce GT 440/PCI/SSE2/3DNOW!
-NVIDIA GeForce GT 440/PCI/SSE2/3DNOW!
-NVIDIA GeForce GT 445M/PCI/SSE2
-NVIDIA GeForce GT 445M/PCI/SSE2
-NVIDIA GeForce GT 520/PCI/SSE2
-NVIDIA GeForce GT 520/PCI/SSE2/3DNOW!
-NVIDIA GeForce GT 520M/PCI/SSE2
-NVIDIA GeForce GT 520M/PCI/SSE2
-NVIDIA GeForce GT 525M/PCI/SSE2
-NVIDIA GeForce GT 525M/PCI/SSE2
-NVIDIA GeForce GT 530/PCI/SSE2
-NVIDIA GeForce GT 530/PCI/SSE2/3DNOW!
-NVIDIA GeForce GT 540M/PCI/SSE2
-NVIDIA GeForce GT 540M/PCI/SSE2
-NVIDIA GeForce GT 545/PCI/SSE2
-NVIDIA GeForce GT 550M/PCI/SSE2
-NVIDIA GeForce GT 550M/PCI/SSE2
-NVIDIA GeForce GT 555M/PCI/SSE2
-NVIDIA GeForce GT 555M/PCI/SSE2
-NVIDIA GeForce GTS 150/PCI/SSE2
-NVIDIA GeForce GTS 150/PCI/SSE2
-NVIDIA GeForce GTS 160M/PCI/SSE2
-NVIDIA GeForce GTS 160M/PCI/SSE2
-NVIDIA GeForce GTS 240/PCI/SSE2
-NVIDIA GeForce GTS 240/PCI/SSE2
-NVIDIA GeForce GTS 250/PCI/SSE2
-NVIDIA GeForce GTS 250/PCI/SSE2
-NVIDIA GeForce GTS 250/PCI/SSE2/3DNOW!
-NVIDIA GeForce GTS 250/PCI/SSE2/3DNOW!
-NVIDIA GeForce GTS 250M/PCI/SSE2
-NVIDIA GeForce GTS 350M/PCI/SSE2
-NVIDIA GeForce GTS 350M/PCI/SSE2
-NVIDIA GeForce GTS 360M/PCI/SSE2
-NVIDIA GeForce GTS 360M/PCI/SSE2
-NVIDIA GeForce GTS 450/PCI/SSE2
-NVIDIA GeForce GTS 450/PCI/SSE2
-NVIDIA GeForce GTS 450/PCI/SSE2/3DNOW!
-NVIDIA GeForce GTS 450/PCI/SSE2/3DNOW!
-NVIDIA GeForce GTS 455/PCI/SSE2
-NVIDIA GeForce GTX 260/PCI/SSE2
-NVIDIA GeForce GTX 260/PCI/SSE2
-NVIDIA GeForce GTX 260/PCI/SSE2/3DNOW!
-NVIDIA GeForce GTX 260/PCI/SSE2/3DNOW!
-NVIDIA GeForce GTX 260M/PCI/SSE2
-NVIDIA GeForce GTX 260M/PCI/SSE2
-NVIDIA GeForce GTX 275/PCI/SSE2
-NVIDIA GeForce GTX 275/PCI/SSE2
-NVIDIA GeForce GTX 275/PCI/SSE2/3DNOW!
-NVIDIA GeForce GTX 280
-NVIDIA GeForce GTX 280/PCI/SSE2
-NVIDIA GeForce GTX 280M/PCI/SSE2
-NVIDIA GeForce GTX 285
-NVIDIA GeForce GTX 285/PCI/SSE2
-NVIDIA GeForce GTX 285/PCI/SSE2
-NVIDIA GeForce GTX 285/PCI/SSE2
-NVIDIA GeForce GTX 295/PCI/SSE2
-NVIDIA GeForce GTX 295/PCI/SSE2
-NVIDIA GeForce GTX 460 SE/PCI/SSE2
-NVIDIA GeForce GTX 460 SE/PCI/SSE2
-NVIDIA GeForce GTX 460 SE/PCI/SSE2/3DNOW!
-NVIDIA GeForce GTX 460 SE/PCI/SSE2/3DNOW!
-NVIDIA GeForce GTX 460/PCI/SSE2
-NVIDIA GeForce GTX 460/PCI/SSE2
-NVIDIA GeForce GTX 460/PCI/SSE2/3DNOW!
-NVIDIA GeForce GTX 460/PCI/SSE2/3DNOW!
-NVIDIA GeForce GTX 460M/PCI/SSE2
-NVIDIA GeForce GTX 460M/PCI/SSE2
-NVIDIA GeForce GTX 465/PCI/SSE2
-NVIDIA GeForce GTX 465/PCI/SSE2
-NVIDIA GeForce GTX 465/PCI/SSE2/3DNOW!
-NVIDIA GeForce GTX 465/PCI/SSE2/3DNOW!
-NVIDIA GeForce GTX 470/PCI/SSE2
-NVIDIA GeForce GTX 470/PCI/SSE2
-NVIDIA GeForce GTX 470/PCI/SSE2/3DNOW!
-NVIDIA GeForce GTX 480/PCI/SSE2
-NVIDIA GeForce GTX 550 Ti/PCI/SSE2
-NVIDIA GeForce GTX 550 Ti/PCI/SSE2
-NVIDIA GeForce GTX 550 Ti/PCI/SSE2/3DNOW!
-NVIDIA GeForce GTX 550 Ti/PCI/SSE2/3DNOW!
-NVIDIA GeForce GTX 560 Ti/PCI/SSE2
-NVIDIA GeForce GTX 560 Ti/PCI/SSE2
-NVIDIA GeForce GTX 560 Ti/PCI/SSE2/3DNOW!
-NVIDIA GeForce GTX 560 Ti/PCI/SSE2/3DNOW!
-NVIDIA GeForce GTX 560/PCI/SSE2
-NVIDIA GeForce GTX 560/PCI/SSE2
-NVIDIA GeForce GTX 560/PCI/SSE2/3DNOW!
-NVIDIA GeForce GTX 560M/PCI/SSE2
-NVIDIA GeForce GTX 570/PCI/SSE2
-NVIDIA GeForce GTX 570/PCI/SSE2
-NVIDIA GeForce GTX 570/PCI/SSE2/3DNOW!
-NVIDIA GeForce GTX 570/PCI/SSE2/3DNOW!
-NVIDIA GeForce GTX 580/PCI/SSE2
-NVIDIA GeForce GTX 580/PCI/SSE2
-NVIDIA GeForce GTX 580/PCI/SSE2/3DNOW!
-NVIDIA GeForce GTX 580/PCI/SSE2/3DNOW!
-NVIDIA GeForce GTX 580M/PCI/SSE2
-NVIDIA GeForce GTX 590/PCI/SSE2
-NVIDIA GeForce GTX 590/PCI/SSE2
 NVIDIA GeForce Go 6
 NVIDIA GeForce Go 6100
-NVIDIA GeForce Go 6100/PCI/SSE2
-NVIDIA GeForce Go 6100/PCI/SSE2/3DNOW!
-NVIDIA GeForce Go 6100/PCI/SSE2/3DNOW!
-NVIDIA GeForce Go 6150/PCI/SSE2
-NVIDIA GeForce Go 6150/PCI/SSE2/3DNOW!
-NVIDIA GeForce Go 6150/PCI/SSE2/3DNOW!
 NVIDIA GeForce Go 6200
-NVIDIA GeForce Go 6200/PCI/SSE2
 NVIDIA GeForce Go 6400
-NVIDIA GeForce Go 6400/PCI/SSE2
-NVIDIA GeForce Go 6400/PCI/SSE2
 NVIDIA GeForce Go 6600
-NVIDIA GeForce Go 6600/PCI/SSE2
-NVIDIA GeForce Go 6600/PCI/SSE2
 NVIDIA GeForce Go 6800
-NVIDIA GeForce Go 6800 Ultra/PCI/SSE2
-NVIDIA GeForce Go 6800 Ultra/PCI/SSE2
-NVIDIA GeForce Go 6800/PCI/SSE2
 NVIDIA GeForce Go 7200
-NVIDIA GeForce Go 7200/PCI/SSE2
-NVIDIA GeForce Go 7200/PCI/SSE2/3DNOW!
 NVIDIA GeForce Go 7300
-NVIDIA GeForce Go 7300/PCI/SSE2
-NVIDIA GeForce Go 7300/PCI/SSE2
-NVIDIA GeForce Go 7300/PCI/SSE2/3DNOW!
 NVIDIA GeForce Go 7400
-NVIDIA GeForce Go 7400/PCI/SSE2
-NVIDIA GeForce Go 7400/PCI/SSE2
-NVIDIA GeForce Go 7400/PCI/SSE2/3DNOW!
 NVIDIA GeForce Go 7600
-NVIDIA GeForce Go 7600/PCI/SSE2
-NVIDIA GeForce Go 7600/PCI/SSE2
-NVIDIA GeForce Go 7600/PCI/SSE2/3DNOW!
-NVIDIA GeForce Go 7600/PCI/SSE2/3DNOW!
 NVIDIA GeForce Go 7700
-NVIDIA GeForce Go 7700/PCI/SSE2
 NVIDIA GeForce Go 7800
-NVIDIA GeForce Go 7800 GTX/PCI/SSE2
 NVIDIA GeForce Go 7900
-NVIDIA GeForce Go 7900 GS/PCI/SSE2
-NVIDIA GeForce Go 7900 GS/PCI/SSE2
-NVIDIA GeForce Go 7900 GTX/PCI/SSE2
-NVIDIA GeForce Go 7950 GTX/PCI/SSE2
 NVIDIA GeForce PCX
-NVIDIA GeForce2 GTS/AGP/SSE
-NVIDIA GeForce2 MX/AGP/3DNOW!
-NVIDIA GeForce2 MX/AGP/SSE/3DNOW!
-NVIDIA GeForce2 MX/AGP/SSE2
-NVIDIA GeForce2 MX/AGP/SSE2
-NVIDIA GeForce2 MX/PCI/SSE2
-NVIDIA GeForce3/AGP/SSE/3DNOW!
-NVIDIA GeForce3/AGP/SSE2
-NVIDIA GeForce4 420 Go 32M/AGP/SSE2
-NVIDIA GeForce4 420 Go 32M/AGP/SSE2/3DNOW!
-NVIDIA GeForce4 420 Go 32M/PCI/SSE2/3DNOW!
-NVIDIA GeForce4 420 Go/AGP/SSE2
-NVIDIA GeForce4 440 Go 64M/AGP/SSE2/3DNOW!
-NVIDIA GeForce4 440 Go/AGP/SSE2
-NVIDIA GeForce4 460 Go/AGP/SSE2
-NVIDIA GeForce4 MX 4000/AGP/SSE/3DNOW!
-NVIDIA GeForce4 MX 4000/AGP/SSE/3DNOW!
-NVIDIA GeForce4 MX 4000/AGP/SSE2
-NVIDIA GeForce4 MX 4000/AGP/SSE2
-NVIDIA GeForce4 MX 4000/PCI/3DNOW!
-NVIDIA GeForce4 MX 4000/PCI/SSE/3DNOW!
-NVIDIA GeForce4 MX 4000/PCI/SSE2
-NVIDIA GeForce4 MX 420/AGP/SSE/3DNOW!
-NVIDIA GeForce4 MX 420/AGP/SSE2
-NVIDIA GeForce4 MX 440 with AGP8X/AGP/SSE2
-NVIDIA GeForce4 MX 440 with AGP8X/AGP/SSE2
-NVIDIA GeForce4 MX 440/AGP/SSE2
-NVIDIA GeForce4 MX 440/AGP/SSE2
-NVIDIA GeForce4 MX 440/AGP/SSE2/3DNOW!
-NVIDIA GeForce4 MX 440SE with AGP8X/AGP/SSE2
-NVIDIA GeForce4 MX 440SE with AGP8X/AGP/SSE2
-NVIDIA GeForce4 MX Integrated GPU/AGP/SSE/3DNOW!
-NVIDIA GeForce4 MX Integrated GPU/AGP/SSE/3DNOW!
-NVIDIA GeForce4 Ti 4200 with AGP8X/AGP/SSE
-NVIDIA GeForce4 Ti 4200/AGP/SSE/3DNOW!
-NVIDIA GeForce4 Ti 4400/AGP/SSE2
 NVIDIA Generic
-NVIDIA ION LE/PCI/SSE2
-NVIDIA ION LE/PCI/SSE2
-NVIDIA ION/PCI/SSE2
-NVIDIA ION/PCI/SSE2
-NVIDIA ION/PCI/SSE2/3DNOW!
-NVIDIA ION/PCI/SSE2/3DNOW!
-NVIDIA MCP61/PCI/SSE2
-NVIDIA MCP61/PCI/SSE2
-NVIDIA MCP61/PCI/SSE2/3DNOW!
-NVIDIA MCP61/PCI/SSE2/3DNOW!
-NVIDIA MCP73/PCI/SSE2
-NVIDIA MCP73/PCI/SSE2
-NVIDIA MCP79MH/PCI/SSE2
-NVIDIA MCP79MH/PCI/SSE2
-NVIDIA MCP79MX/PCI/SSE2
-NVIDIA MCP79MX/PCI/SSE2
-NVIDIA MCP7A-O/PCI/SSE2
-NVIDIA MCP7A-O/PCI/SSE2
-NVIDIA MCP7A-S/PCI/SSE2
-NVIDIA MCP89-EPT/PCI/SSE2
-NVIDIA MCP89-EPT/PCI/SSE2
-NVIDIA N10M-GE1/PCI/SSE2
-NVIDIA N10M-GE1/PCI/SSE2
-NVIDIA N10P-GE1/PCI/SSE2
-NVIDIA N10P-GE1/PCI/SSE2
-NVIDIA N10P-GV2/PCI/SSE2
-NVIDIA N10P-GV2/PCI/SSE2
-NVIDIA N11M-GE1/PCI/SSE2
-NVIDIA N11M-GE1/PCI/SSE2
-NVIDIA N11M-GE2/PCI/SSE2
-NVIDIA N11M-GE2/PCI/SSE2
-NVIDIA N12E-GS-A1/PCI/SSE2
-NVIDIA N12P-GVR-B-A1/PCI/SSE2
-NVIDIA N13M-GE1-B-A1/PCI/SSE2
-NVIDIA N13P-GL-A1/PCI/SSE2
-NVIDIA NB9M-GE/PCI/SSE2
-NVIDIA NB9M-GE/PCI/SSE2
-NVIDIA NB9M-GE1/PCI/SSE2
-NVIDIA NB9M-GE1/PCI/SSE2
-NVIDIA NB9M-GS/PCI/SSE2
-NVIDIA NB9M-GS/PCI/SSE2
-NVIDIA NB9M-NS/PCI/SSE2
-NVIDIA NB9M-NS/PCI/SSE2
-NVIDIA NB9P-GE1/PCI/SSE2
-NVIDIA NB9P-GE1/PCI/SSE2
-NVIDIA NB9P-GS/PCI/SSE2
-NVIDIA NV17/AGP/3DNOW!
-NVIDIA NV17/AGP/SSE2
-NVIDIA NV17/AGP/SSE2
+NVIDIA ION
+NVIDIA MCP61
 NVIDIA NV34
-NVIDIA NV35
-NVIDIA NV36/AGP/SSE/3DNOW!
-NVIDIA NV36/AGP/SSE2
-NVIDIA NV41/PCI/SSE2
-NVIDIA NV43
-NVIDIA NV43/PCI/SSE2
-NVIDIA NV44
-NVIDIA NV44/AGP/SSE2
-NVIDIA NVIDIA GeForce 210 OpenGL Engine
-NVIDIA NVIDIA GeForce 210 OpenGL Engine
-NVIDIA NVIDIA GeForce 320M OpenGL Engine
-NVIDIA NVIDIA GeForce 320M OpenGL Engine
-NVIDIA NVIDIA GeForce 7300 GT OpenGL Engine
-NVIDIA NVIDIA GeForce 7300 GT OpenGL Engine
-NVIDIA NVIDIA GeForce 7600 GT OpenGL Engine
-NVIDIA NVIDIA GeForce 8600M GT OpenGL Engine
-NVIDIA NVIDIA GeForce 8600M GT OpenGL Engine
-NVIDIA NVIDIA GeForce 8800 GS OpenGL Engine
-NVIDIA NVIDIA GeForce 8800 GS OpenGL Engine
-NVIDIA NVIDIA GeForce 8800 GT OpenGL Engine
-NVIDIA NVIDIA GeForce 8800 GT OpenGL Engine
-NVIDIA NVIDIA GeForce 9400 OpenGL Engine
-NVIDIA NVIDIA GeForce 9400 OpenGL Engine
-NVIDIA NVIDIA GeForce 9400M OpenGL Engine
-NVIDIA NVIDIA GeForce 9400M OpenGL Engine
-NVIDIA NVIDIA GeForce 9500 GT OpenGL Engine
-NVIDIA NVIDIA GeForce 9600M GT OpenGL Engine
-NVIDIA NVIDIA GeForce 9600M GT OpenGL Engine
-NVIDIA NVIDIA GeForce GT 120 OpenGL Engine
-NVIDIA NVIDIA GeForce GT 120 OpenGL Engine
-NVIDIA NVIDIA GeForce GT 130 OpenGL Engine
-NVIDIA NVIDIA GeForce GT 130 OpenGL Engine
-NVIDIA NVIDIA GeForce GT 220 OpenGL Engine
-NVIDIA NVIDIA GeForce GT 230M OpenGL Engine
-NVIDIA NVIDIA GeForce GT 240M OpenGL Engine
-NVIDIA NVIDIA GeForce GT 330M OpenGL Engine
-NVIDIA NVIDIA GeForce GT 330M OpenGL Engine
-NVIDIA NVIDIA GeForce GT 420M OpenGL Engine
-NVIDIA NVIDIA GeForce GT 425M OpenGL Engine
-NVIDIA NVIDIA GeForce GT 430 OpenGL Engine
-NVIDIA NVIDIA GeForce GT 430 OpenGL Engine
-NVIDIA NVIDIA GeForce GT 440 OpenGL Engine
-NVIDIA NVIDIA GeForce GT 540M OpenGL Engine
-NVIDIA NVIDIA GeForce GTS 240 OpenGL Engine
-NVIDIA NVIDIA GeForce GTS 250 OpenGL Engine
-NVIDIA NVIDIA GeForce GTS 250 OpenGL Engine
-NVIDIA NVIDIA GeForce GTS 450 OpenGL Engine
-NVIDIA NVIDIA GeForce GTS 450 OpenGL Engine
-NVIDIA NVIDIA GeForce GTX 285 OpenGL Engine
-NVIDIA NVIDIA GeForce GTX 460 OpenGL Engine
-NVIDIA NVIDIA GeForce GTX 460 OpenGL Engine
-NVIDIA NVIDIA GeForce GTX 460M OpenGL Engine
-NVIDIA NVIDIA GeForce GTX 465 OpenGL Engine
-NVIDIA NVIDIA GeForce GTX 470 OpenGL Engine
-NVIDIA NVIDIA GeForce GTX 480 OpenGL Engine
-NVIDIA NVIDIA GeForce GTX 480 OpenGL Engine
-NVIDIA NVIDIA GeForce Pre-Release GF108 ES OpenGL Engine
-NVIDIA NVIDIA GeForce Pre-Release ION OpenGL Engine
-NVIDIA NVIDIA GeForce Pre-Release ION OpenGL Engine
-NVIDIA NVIDIA GeForce Pre-Release MCP7A-J-DC OpenGL Engine
-NVIDIA NVIDIA GeForce4 OpenGL Engine
-NVIDIA NVIDIA NV34MAP OpenGL Engine
-NVIDIA NVIDIA Quadro 4000 OpenGL Engine
-NVIDIA NVIDIA Quadro 4000 OpenGL Engine
-NVIDIA NVIDIA Quadro FX 4800 OpenGL Engine
-NVIDIA NVS 2100M/PCI/SSE2
-NVIDIA NVS 2100M/PCI/SSE2
-NVIDIA NVS 300/PCI/SSE2
-NVIDIA NVS 300/PCI/SSE2
-NVIDIA NVS 3100M/PCI/SSE2
-NVIDIA NVS 3100M/PCI/SSE2
-NVIDIA NVS 4100/PCI/SSE2/3DNOW!
-NVIDIA NVS 4200M/PCI/SSE2
-NVIDIA NVS 4200M/PCI/SSE2
-NVIDIA NVS 5100M/PCI/SSE2
-NVIDIA NVS 5100M/PCI/SSE2
 NVIDIA PCI
-NVIDIA Quadro 1000M/PCI/SSE2
-NVIDIA Quadro 2000/PCI/SSE2
-NVIDIA Quadro 2000/PCI/SSE2
-NVIDIA Quadro 2000M/PCI/SSE2
-NVIDIA Quadro 3000M/PCI/SSE2
+NVIDIA Quadro 2000
+NVIDIA Quadro 2000 M/D
+NVIDIA Quadro 2000 M/D
+NVIDIA Quadro 3000M
+NVIDIA Quadro 400
+NVIDIA Quadro 4000
 NVIDIA Quadro 4000
-NVIDIA Quadro 4000 OpenGL Engine
-NVIDIA Quadro 4000/PCI/SSE2
-NVIDIA Quadro 4000/PCI/SSE2
-NVIDIA Quadro 4000M/PCI/SSE2
-NVIDIA Quadro 5000/PCI/SSE2
-NVIDIA Quadro 5000/PCI/SSE2
-NVIDIA Quadro 5000M/PCI/SSE2
+NVIDIA Quadro 4000M
+NVIDIA Quadro 50x0 M
 NVIDIA Quadro 600
-NVIDIA Quadro 600/PCI/SSE2
-NVIDIA Quadro 600/PCI/SSE2
-NVIDIA Quadro 600/PCI/SSE2/3DNOW!
 NVIDIA Quadro 6000
-NVIDIA Quadro 6000/PCI/SSE2
-NVIDIA Quadro CX/PCI/SSE2
-NVIDIA Quadro DCC
 NVIDIA Quadro FX
-NVIDIA Quadro FX 1100/AGP/SSE2
-NVIDIA Quadro FX 1400/PCI/SSE2
-NVIDIA Quadro FX 1400/PCI/SSE2
-NVIDIA Quadro FX 1500
-NVIDIA Quadro FX 1500/PCI/SSE2
-NVIDIA Quadro FX 1500M/PCI/SSE2
-NVIDIA Quadro FX 1600M/PCI/SSE2
-NVIDIA Quadro FX 1600M/PCI/SSE2
-NVIDIA Quadro FX 1700
-NVIDIA Quadro FX 1700M/PCI/SSE2
+NVIDIA Quadro FX 1500M
 NVIDIA Quadro FX 1800
-NVIDIA Quadro FX 1800/PCI/SSE2
-NVIDIA Quadro FX 1800M/PCI/SSE2
-NVIDIA Quadro FX 2500M/PCI/SSE2
-NVIDIA Quadro FX 2500M/PCI/SSE2
-NVIDIA Quadro FX 2700M/PCI/SSE2
-NVIDIA Quadro FX 2700M/PCI/SSE2
-NVIDIA Quadro FX 2800M/PCI/SSE2
-NVIDIA Quadro FX 2800M/PCI/SSE2
-NVIDIA Quadro FX 3400
-NVIDIA Quadro FX 3450
-NVIDIA Quadro FX 3450/4000 SDI/PCI/SSE2
+NVIDIA Quadro FX 2500M
+NVIDIA Quadro FX 2700M
+NVIDIA Quadro FX 2800M
 NVIDIA Quadro FX 3500
-NVIDIA Quadro FX 3500M/PCI/SSE2
-NVIDIA Quadro FX 360M/PCI/SSE2
-NVIDIA Quadro FX 370
-NVIDIA Quadro FX 370/PCI/SSE2
 NVIDIA Quadro FX 3700
-NVIDIA Quadro FX 3700M/PCI/SSE2
-NVIDIA Quadro FX 3700M/PCI/SSE2
-NVIDIA Quadro FX 370M/PCI/SSE2
 NVIDIA Quadro FX 3800
-NVIDIA Quadro FX 3800M/PCI/SSE2
-NVIDIA Quadro FX 3800M/PCI/SSE2
 NVIDIA Quadro FX 4500
-NVIDIA Quadro FX 4600
 NVIDIA Quadro FX 4800
-NVIDIA Quadro FX 4800/PCI/SSE2
-NVIDIA Quadro FX 540/PCI/SSE2/3DNOW!
-NVIDIA Quadro FX 560
-NVIDIA Quadro FX 560/PCI/SSE2
-NVIDIA Quadro FX 5600
-NVIDIA Quadro FX 570
-NVIDIA Quadro FX 570/PCI/SSE2
-NVIDIA Quadro FX 570M/PCI/SSE2
-NVIDIA Quadro FX 580/PCI/SSE2
-NVIDIA Quadro FX 580/PCI/SSE2
-NVIDIA Quadro FX 770M/PCI/SSE2
-NVIDIA Quadro FX 770M/PCI/SSE2
+NVIDIA Quadro FX 550
+NVIDIA Quadro FX 770M
 NVIDIA Quadro FX 880M
-NVIDIA Quadro FX 880M/PCI/SSE2
-NVIDIA Quadro FX 880M/PCI/SSE2
-NVIDIA Quadro FX Go700/AGP/SSE2
 NVIDIA Quadro NVS
-NVIDIA Quadro NVS 110M/PCI/SSE2
-NVIDIA Quadro NVS 110M/PCI/SSE2
-NVIDIA Quadro NVS 130M/PCI/SSE2
-NVIDIA Quadro NVS 135M/PCI/SSE2
-NVIDIA Quadro NVS 135M/PCI/SSE2
-NVIDIA Quadro NVS 140M/PCI/SSE2
-NVIDIA Quadro NVS 140M/PCI/SSE2
-NVIDIA Quadro NVS 150M/PCI/SSE2
-NVIDIA Quadro NVS 150M/PCI/SSE2
-NVIDIA Quadro NVS 160M/PCI/SSE2
-NVIDIA Quadro NVS 160M/PCI/SSE2
-NVIDIA Quadro NVS 210S/PCI/SSE2/3DNOW!
-NVIDIA Quadro NVS 285/PCI/SSE2
-NVIDIA Quadro NVS 285/PCI/SSE2
-NVIDIA Quadro NVS 290/PCI/SSE2
-NVIDIA Quadro NVS 290/PCI/SSE2
-NVIDIA Quadro NVS 295/PCI/SSE2
-NVIDIA Quadro NVS 320M/PCI/SSE2
-NVIDIA Quadro NVS 320M/PCI/SSE2
-NVIDIA Quadro NVS 55/280 PCI/PCI/SSE2
-NVIDIA Quadro NVS/PCI/SSE2
-NVIDIA Quadro PCI-E Series/PCI/SSE2/3DNOW!
-NVIDIA Quadro VX 200/PCI/SSE2
-NVIDIA Quadro VX 200/PCI/SSE2
-NVIDIA Quadro/AGP/SSE2
-NVIDIA Quadro/AGP/SSE2
+NVIDIA Quadro NVS 1xxM
+NVIDIA Quadro NVS 4200M
 NVIDIA Quadro2
-NVIDIA Quadro4
-NVIDIA Quadro4 750 XGL/AGP/SSE2
-NVIDIA RIVA TNT
-NVIDIA RIVA TNT2/AGP/SSE2
-NVIDIA RIVA TNT2/PCI/3DNOW!
-NVIDIA Tesla C2050/PCI/SSE2
 NVIDIA nForce
-NVIDIA nForce 730a/PCI/SSE2
-NVIDIA nForce 730a/PCI/SSE2/3DNOW!
-NVIDIA nForce 750a SLI/PCI/SSE2
-NVIDIA nForce 750a SLI/PCI/SSE2/3DNOW!
-NVIDIA nForce 760i SLI/PCI/SSE2
-NVIDIA nForce 780a SLI/PCI/SSE2/3DNOW!
-NVIDIA nForce 980a/780a SLI/PCI/SSE2
-NVIDIA nForce 980a/780a SLI/PCI/SSE2/3DNOW!
-NVIDIA unknown board/AGP/SSE2
-NVIDIA unknown board/PCI/SSE2
-NVIDIA unknown board/PCI/SSE2/3DNOW!
-Parallels and ATI Technologies Inc. Parallels using ATI Radeon HD 5670 OpenGL Engine
+Oracle VirtualBox Graphics
+Parallels and ATI Technologies Inc. Parallels using ATI Radeon Barts XT Prototype OpenGL Engine
+Parallels and ATI Technologies Inc. Parallels using ATI Radeon HD 2600 OpenGL Engine
+Parallels and ATI Technologies Inc. Parallels using ATI Radeon HD 2600 PRO OpenGL Engine
+Parallels and ATI Technologies Inc. Parallels using ATI Radeon HD 4670 OpenGL Engine
+Parallels and ATI Technologies Inc. Parallels using ATI Radeon HD 4850 OpenGL Engine
 Parallels and ATI Technologies Inc. Parallels using ATI Radeon HD 5670 OpenGL Engine
 Parallels and ATI Technologies Inc. Parallels using ATI Radeon HD 5750 OpenGL Engine
-Parallels and ATI Technologies Inc. Parallels using ATI Radeon HD 5750 OpenGL Engine
-Parallels and ATI Technologies Inc. Parallels using ATI Radeon HD 5770 OpenGL Engine
 Parallels and ATI Technologies Inc. Parallels using ATI Radeon HD 5770 OpenGL Engine
-Parallels and ATI Technologies Inc. Parallels using ATI Radeon HD 6490M OpenGL Engine
-Parallels and ATI Technologies Inc. Parallels using ATI Radeon HD 6490M OpenGL Engine
-Parallels and ATI Technologies Inc. Parallels using ATI Radeon HD 6750M OpenGL Engine
+Parallels and ATI Technologies Inc. Parallels using ATI Radeon HD 6630M OpenGL Engine
 Parallels and ATI Technologies Inc. Parallels using ATI Radeon HD 6750M OpenGL Engine
 Parallels and ATI Technologies Inc. Parallels using ATI Radeon HD 6770M OpenGL Engine
 Parallels and ATI Technologies Inc. Parallels using ATI Radeon HD 6970M OpenGL Engine
-Parallels and Intel Inc. 3D-Analyze v2.3 - http://www.tommti-systems.com
-Parallels and Intel Inc. Parallels using Intel HD Graphics 3000 OpenGL Engine
+Parallels and ATI Technologies Inc. Parallels using ATI Radeon HD 6970M OpenGL Engine
+Parallels and ATI Technologies Inc. Parallels using ATI Radeon HD 6970M OpenGL Engine
+Parallels and ATI Technologies Inc. Parallels using ATI Radeon X1600 OpenGL Engine
+Parallels and Intel Inc. Parallels using Intel GMA X3100 OpenGL Engine
 Parallels and Intel Inc. Parallels using Intel HD Graphics 3000 OpenGL Engine
-Parallels and NVIDIA Parallels using NVIDIA GeForce 320M OpenGL Engine
-Parallels and NVIDIA Parallels using NVIDIA GeForce 320M OpenGL Engine
-Parallels and NVIDIA Parallels using NVIDIA GeForce 9400 OpenGL Engine
-Parallels and NVIDIA Parallels using NVIDIA GeForce GT 120 OpenGL Engine
-Parallels and NVIDIA Parallels using NVIDIA GeForce GT 120 OpenGL Engine
-Parallels and NVIDIA Parallels using NVIDIA GeForce GT 330M OpenGL Engine
-Parallels and NVIDIA Parallels using NVIDIA GeForce GT 330M OpenGL Engine
-Radeon RV350 on Gallium
+Parallels and Intel Inc. Parallels using Intel HD Graphics 4000 OpenGL Engine
+Parallels and Intel Inc. Parallels using Intel HD Graphics 4000 OpenGL Engine
+Parallels and NVIDIA Corporation Parallels using NVIDIA GeForce 320M OpenGL Engine
+Parallels and NVIDIA Corporation Parallels using NVIDIA GeForce 8800 GS OpenGL Engine
+Parallels and NVIDIA Corporation Parallels using NVIDIA GeForce 9400 OpenGL Engine
+Parallels and NVIDIA Corporation Parallels using NVIDIA GeForce 9400M OpenGL Engine
+Parallels and NVIDIA Corporation Parallels using NVIDIA GeForce 9600M GT OpenGL Engine
+Parallels and NVIDIA Corporation Parallels using NVIDIA GeForce GT 130 OpenGL Engine
+Parallels and NVIDIA Corporation Parallels using NVIDIA GeForce GT 330M OpenGL Engine
+Parallels and NVIDIA Corporation Parallels using NVIDIA GeForce GT 640 OpenGL Engine
+Parallels and NVIDIA Corporation Parallels using NVIDIA GeForce GT 640M OpenGL Engine
+Parallels and NVIDIA Corporation Parallels using NVIDIA GeForce GT 650M OpenGL Engine
+Parallels and NVIDIA Corporation Parallels using NVIDIA GeForce GTX 570 OpenGL Engine
+Parallels and NVIDIA Corporation Parallels using NVIDIA GeForce GTX 660 OpenGL Engine
+Parallels and NVIDIA Corporation Parallels using NVIDIA GeForce GTX 660 Ti OpenGL Engine
+Parallels and NVIDIA Corporation Parallels using NVIDIA GeForce GTX 670 OpenGL Engine
+Parallels and NVIDIA Corporation Parallels using NVIDIA GeForce GTX 680MX OpenGL Engine
+Parallels and NVIDIA Corporation Parallels using NVIDIA GeForce GTX 680MX OpenGL Engine
+PowerVR SGX545
 S3
-S3 Fire GL2
-S3 Graphics VIA/S3G UniChrome IGP/MMX/K3D
+S3 Graphics K8M800/MMX/K3D
+S3 Graphics KM400/KN400/MMX/SSE
+S3 Graphics P8M800/MMX/SSE
+S3 Graphics Unknown Device/MMX/SSE
 S3 Graphics VIA/S3G UniChrome IGP/MMX/SSE
 S3 Graphics VIA/S3G UniChrome Pro IGP/MMX/SSE
 S3 Graphics VIA/S3G UniChrome Pro IGP/MMX/SSE
 S3 Graphics, Incorporated ProSavage/Twister
 S3 Graphics, Incorporated S3 Graphics Chrome9 HC
-S3 Graphics, Incorporated S3 Graphics Chrome9 HC
-S3 Graphics, Incorporated S3 Graphics DeltaChrome
 S3 Graphics, Incorporated S3 Graphics DeltaChrome
 S3 Graphics, Incorporated VIA Chrome9 HC IGP
 S3 Graphics, Incorporated VIA Chrome9 HC IGP
+S3 Graphics, Incorporated VIA Chrome9 HC3 IGP
+S3 Graphics, Incorporated VIA Chrome9 HD Pro IGP
+S3 Graphics, Incorporated VIA Chrome9 HD Pro IGP
 SiS
+SiS 3D-Analyze v2.3 - http://www.tommti-systems.com
 SiS 650/M650 VGA
-SiS 661 VGA
+SiS 650/M650 VGA / MMX/SSE2 /AGP
 SiS 661 VGA
 SiS 662 VGA
-SiS 741 VGA
-SiS 760 VGA
 SiS 760 VGA
 SiS 761GX VGA
-SiS 761GX VGA
 SiS Mirage Graphics3
 SiS Mirage Graphics3
 SiS Xabre VGA
-Trident
-Tungsten Graphics
-Tungsten Graphics, Inc Mesa DRI 865G GEM 20091221 2009Q4 x86/MMX/SSE2
-Tungsten Graphics, Inc Mesa DRI 865G GEM 20100330 DEVELOPMENT x86/MMX/SSE2
-Tungsten Graphics, Inc Mesa DRI 915G GEM 20091221 2009Q4 x86/MMX/SSE2
-Tungsten Graphics, Inc Mesa DRI 915G GEM 20100330 DEVELOPMENT x86/MMX/SSE2
-Tungsten Graphics, Inc Mesa DRI 915GM GEM 20090712 2009Q2 RC3 x86/MMX/SSE2
-Tungsten Graphics, Inc Mesa DRI 915GM GEM 20091221 2009Q4 x86/MMX/SSE2
-Tungsten Graphics, Inc Mesa DRI 915GM GEM 20100330 DEVELOPMENT x86/MMX/SSE2
-Tungsten Graphics, Inc Mesa DRI 915GM GEM 20100330 DEVELOPMENT x86/MMX/SSE2
-Tungsten Graphics, Inc Mesa DRI 945G
-Tungsten Graphics, Inc Mesa DRI 945G GEM 20091221 2009Q4 x86/MMX/SSE2
-Tungsten Graphics, Inc Mesa DRI 945G GEM 20100330 DEVELOPMENT
-Tungsten Graphics, Inc Mesa DRI 945G GEM 20100330 DEVELOPMENT x86/MMX/SSE2
-Tungsten Graphics, Inc Mesa DRI 945GM GEM 20090712 2009Q2 RC3 x86/MMX/SSE2
-Tungsten Graphics, Inc Mesa DRI 945GM GEM 20091221 2009Q4 x86/MMX/SSE2
-Tungsten Graphics, Inc Mesa DRI 945GM GEM 20100328 2010Q1 x86/MMX/SSE2
-Tungsten Graphics, Inc Mesa DRI 945GM GEM 20100330 DEVELOPMENT x86/MMX/SSE2
-Tungsten Graphics, Inc Mesa DRI 945GM GEM 20100330 DEVELOPMENT x86/MMX/SSE2
-Tungsten Graphics, Inc Mesa DRI 945GME  x86/MMX/SSE2
-Tungsten Graphics, Inc Mesa DRI 945GME 20061017
-Tungsten Graphics, Inc Mesa DRI 945GME GEM 20090712 2009Q2 RC3 x86/MMX/SSE2
-Tungsten Graphics, Inc Mesa DRI 945GME GEM 20091221 2009Q4 x86/MMX/SSE2
-Tungsten Graphics, Inc Mesa DRI 945GME GEM 20100330 DEVELOPMENT x86/MMX/SSE2
-Tungsten Graphics, Inc Mesa DRI 945GME GEM 20100330 DEVELOPMENT x86/MMX/SSE2
-Tungsten Graphics, Inc Mesa DRI 965GM GEM 20090326 2009Q1 RC2 x86/MMX/SSE2
-Tungsten Graphics, Inc Mesa DRI 965GM GEM 20090712 2009Q2 RC3 x86/MMX/SSE2
-Tungsten Graphics, Inc Mesa DRI 965GM GEM 20091221 2009Q4 x86/MMX/SSE2
-Tungsten Graphics, Inc Mesa DRI 965GM GEM 20091221 2009Q4 x86/MMX/SSE2
-Tungsten Graphics, Inc Mesa DRI 965GM GEM 20100330 DEVELOPMENT x86/MMX/SSE2
-Tungsten Graphics, Inc Mesa DRI 965GM GEM 20100330 DEVELOPMENT x86/MMX/SSE2
-Tungsten Graphics, Inc Mesa DRI G33 20061017 x86/MMX/SSE2
-Tungsten Graphics, Inc Mesa DRI G33 GEM 20090712 2009Q2 RC3 x86/MMX/SSE2
-Tungsten Graphics, Inc Mesa DRI G33 GEM 20091221 2009Q4 x86/MMX/SSE2
-Tungsten Graphics, Inc Mesa DRI G33 GEM 20091221 2009Q4 x86/MMX/SSE2
-Tungsten Graphics, Inc Mesa DRI G41 GEM 20091221 2009Q4 x86/MMX/SSE2
-Tungsten Graphics, Inc Mesa DRI G41 GEM 20100330 DEVELOPMENT x86/MMX/SSE2
-Tungsten Graphics, Inc Mesa DRI GMA500 20081116 - 5.0.1.0046 x86/MMX/SSE2
-Tungsten Graphics, Inc Mesa DRI IGD GEM 20091221 2009Q4 x86/MMX/SSE2
-Tungsten Graphics, Inc Mesa DRI IGD GEM 20100330 DEVELOPMENT
-Tungsten Graphics, Inc Mesa DRI IGD GEM 20100330 DEVELOPMENT x86/MMX/SSE2
-Tungsten Graphics, Inc Mesa DRI IGDNG_D GEM 20091221 2009Q4 x86/MMX/SSE2
-Tungsten Graphics, Inc Mesa DRI Ironlake Desktop GEM 20100330 DEVELOPMENT x86/MMX/SSE2
-Tungsten Graphics, Inc Mesa DRI Ironlake Mobile GEM 20100330 DEVELOPMENT x86/MMX/SSE2
+Tungsten Graphics, Inc Mesa DRI Intel(R) 845G
+Tungsten Graphics, Inc Mesa DRI Intel(R) 852GM/855GM
+Tungsten Graphics, Inc Mesa DRI Intel(R) 852GM/855GM x86/MMX/SSE2
+Tungsten Graphics, Inc Mesa DRI Intel(R) 865G
+Tungsten Graphics, Inc Mesa DRI Intel(R) 865G x86/MMX/SSE2
+Tungsten Graphics, Inc Mesa DRI Intel(R) 915G
+Tungsten Graphics, Inc Mesa DRI Intel(R) 915G x86/MMX/SSE2
+Tungsten Graphics, Inc Mesa DRI Intel(R) 915GM
+Tungsten Graphics, Inc Mesa DRI Intel(R) 915GM 20061017 x86/MMX/SSE2
+Tungsten Graphics, Inc Mesa DRI Intel(R) 915GM GEM 20091221 2009Q4 x86/MMX/SSE2
+Tungsten Graphics, Inc Mesa DRI Intel(R) 915GM GEM 20091221 2009Q4 x86/MMX/SSE2
+Tungsten Graphics, Inc Mesa DRI Intel(R) 915GM x86/MMX/SSE2
+Tungsten Graphics, Inc Mesa DRI Intel(R) 945G GEM 20091221 2009Q4 x86/MMX/SSE2
+Tungsten Graphics, Inc Mesa DRI Intel(R) 945G GEM 20100330 DEVELOPMENT x86/MMX/SSE2
+Tungsten Graphics, Inc Mesa DRI Intel(R) 945G x86/MMX/SSE2
+Tungsten Graphics, Inc Mesa DRI Intel(R) 945GM GEM 20091221 2009Q4 x86/MMX/SSE2
+Tungsten Graphics, Inc Mesa DRI Intel(R) 945GM x86/MMX/SSE2
+Tungsten Graphics, Inc Mesa DRI Intel(R) 945GME
+Tungsten Graphics, Inc Mesa DRI Intel(R) 945GME GEM 20091221 2009Q4 x86/MMX/SSE2
+Tungsten Graphics, Inc Mesa DRI Intel(R) 945GME x86/MMX/SSE2
+Tungsten Graphics, Inc Mesa DRI Intel(R) 965GM
+Tungsten Graphics, Inc Mesa DRI Intel(R) 965GM GEM 20091221 2009Q4 x86/MMX/SSE2
+Tungsten Graphics, Inc Mesa DRI Intel(R) 965GM GEM 20091221 2009Q4 x86/MMX/SSE2
+Tungsten Graphics, Inc Mesa DRI Intel(R) 965GM x86/MMX/SSE2
+Tungsten Graphics, Inc Mesa DRI Intel(R) 965GM x86/MMX/SSE2
+Tungsten Graphics, Inc Mesa DRI Intel(R) 965GME/GLE x86/MMX/SSE2
+Tungsten Graphics, Inc Mesa DRI Intel(R) 965Q
+Tungsten Graphics, Inc Mesa DRI Intel(R) 965Q GEM 20091221 2009Q4 x86/MMX/SSE2
+Tungsten Graphics, Inc Mesa DRI Intel(R) 965Q x86/MMX/SSE2
+Tungsten Graphics, Inc Mesa DRI Intel(R) G33 GEM 20091221 2009Q4 x86/MMX/SSE2
+Tungsten Graphics, Inc Mesa DRI Intel(R) G33 x86/MMX/SSE2
+Tungsten Graphics, Inc Mesa DRI Intel(R) G41 GEM 20091221 2009Q4 x86/MMX/SSE2
+Tungsten Graphics, Inc Mesa DRI Intel(R) G41 GEM 20100330 DEVELOPMENT x86/MMX/SSE2
+Tungsten Graphics, Inc Mesa DRI Intel(R) G41 x86/MMX/SSE2
+Tungsten Graphics, Inc Mesa DRI Intel(R) G41 x86/MMX/SSE2
+Tungsten Graphics, Inc Mesa DRI Intel(R) IGD  x86/MMX/SSE2
+Tungsten Graphics, Inc Mesa DRI Intel(R) IGD
+Tungsten Graphics, Inc Mesa DRI Intel(R) IGD GEM 20091221 2009Q4
+Tungsten Graphics, Inc Mesa DRI Intel(R) IGD GEM 20091221 2009Q4 x86/MMX/SSE2
+Tungsten Graphics, Inc Mesa DRI Intel(R) IGD GEM 20091221 2009Q4 x86/MMX/SSE2
+Tungsten Graphics, Inc Mesa DRI Intel(R) IGD x86/MMX/SSE2
+Tungsten Graphics, Inc Mesa DRI Intel(R) IGDNG_M GEM 20091221 2009Q4
+Tungsten Graphics, Inc Mesa DRI Intel(R) IGDNG_M GEM 20091221 2009Q4 x86/MMX/SSE2
+Tungsten Graphics, Inc Mesa DRI Intel(R) Ironlake Desktop
+Tungsten Graphics, Inc Mesa DRI Intel(R) Ironlake Desktop x86/MMX/SSE2
+Tungsten Graphics, Inc Mesa DRI Intel(R) Ironlake Mobile
+Tungsten Graphics, Inc Mesa DRI Intel(R) Ironlake Mobile GEM 20100330 DEVELOPMENT x86/MMX/SSE2
+Tungsten Graphics, Inc Mesa DRI Intel(R) Ironlake Mobile x86/MMX/SSE2
+Tungsten Graphics, Inc Mesa DRI Intel(R) Ironlake Mobile x86/MMX/SSE2
+Tungsten Graphics, Inc Mesa DRI Intel(R) Ivybridge Desktop
+Tungsten Graphics, Inc Mesa DRI Intel(R) Ivybridge Desktop x86/MMX/SSE2
+Tungsten Graphics, Inc Mesa DRI Intel(R) Ivybridge Mobile
+Tungsten Graphics, Inc Mesa DRI Intel(R) Ivybridge Mobile x86/MMX/SSE2
+Tungsten Graphics, Inc Mesa DRI Intel(R) Ivybridge Mobile x86/MMX/SSE2
+Tungsten Graphics, Inc Mesa DRI Intel(R) Q35 GEM 20091221 2009Q4 x86/MMX/SSE2
+Tungsten Graphics, Inc Mesa DRI Intel(R) Q35 x86/MMX/SSE2
+Tungsten Graphics, Inc Mesa DRI Intel(R) Q45/Q43 x86/MMX/SSE2
+Tungsten Graphics, Inc Mesa DRI Intel(R) Sandybridge Desktop
+Tungsten Graphics, Inc Mesa DRI Intel(R) Sandybridge Desktop x86/MMX/SSE2
+Tungsten Graphics, Inc Mesa DRI Intel(R) Sandybridge Mobile  x86/MMX/SSE2
+Tungsten Graphics, Inc Mesa DRI Intel(R) Sandybridge Mobile
+Tungsten Graphics, Inc Mesa DRI Intel(R) Sandybridge Mobile GEM 20100330 DEVELOPMENT x86/MMX/SSE2
+Tungsten Graphics, Inc Mesa DRI Intel(R) Sandybridge Mobile x86/MMX/SSE2
+Tungsten Graphics, Inc Mesa DRI Intel(R) Sandybridge Mobile x86/MMX/SSE2
+Tungsten Graphics, Inc Mesa DRI Intel(R) Sandybridge Server
 Tungsten Graphics, Inc Mesa DRI Mobile Intelå¨ GM45 Express Chipset
-Tungsten Graphics, Inc Mesa DRI Mobile Intelå¨ GM45 Express Chipset 20080716 x86/MMX/SSE2
-Tungsten Graphics, Inc Mesa DRI Mobile Intelå¨ GM45 Express Chipset GEM 20090712 2009Q2 RC3 x86/MMX/SSE2
-Tungsten Graphics, Inc Mesa DRI Mobile Intelå¨ GM45 Express Chipset GEM 20091221 2009Q4 x86/MMX/SSE2
+Tungsten Graphics, Inc Mesa DRI Mobile Intelå¨ GM45 Express Chipset GEM 20091221 2009Q4
 Tungsten Graphics, Inc Mesa DRI Mobile Intelå¨ GM45 Express Chipset GEM 20091221 2009Q4 x86/MMX/SSE2
-Tungsten Graphics, Inc Mesa DRI Mobile Intelå¨ GM45 Express Chipset GEM 20100328 2010Q1
-Tungsten Graphics, Inc Mesa DRI Mobile Intelå¨ GM45 Express Chipset GEM 20100330 DEVELOPMENT
 Tungsten Graphics, Inc Mesa DRI Mobile Intelå¨ GM45 Express Chipset GEM 20100330 DEVELOPMENT x86/MMX/SSE2
-Tungsten Graphics, Inc Mesa DRI Mobile Intelå¨ GM45 Express Chipset GEM 20100330 DEVELOPMENT x86/MMX/SSE2
-Tungsten Graphics, Inc. Mesa DRI R200 (RV250 4C66) 20090101 x86/MMX/SSE2 TCL DRI2
-Tungsten Graphics, Inc. Mesa DRI R200 (RV280 5964) 20090101 x86/MMX+/3DNow!+/SSE2 TCL DRI2
-VIA
+Tungsten Graphics, Inc Mesa DRI Mobile Intelå¨ GM45 Express Chipset x86/MMX/SSE2
+Tungsten Graphics, Inc Mesa DRI Mobile Intelå¨ GM45 Express Chipset x86/MMX/SSE2
+Tungsten Graphics, Inc. Mesa DRI R100 (RS200 4437) x86/MMX/SSE2 NO-TCL DRI2
+Tungsten Graphics, Inc. Mesa DRI R100 (RV200 4C57)  TCL DRI2
+Tungsten Graphics, Inc. Mesa DRI R100 (RV200 4C57) x86/MMX/SSE2 TCL DRI2
+Tungsten Graphics, Inc. Mesa DRI R200 (RV250 4C66) x86/MMX/SSE2 TCL DRI2
+Tungsten Graphics, Inc. Mesa DRI R200 (RV280 5960) x86/MMX+/3DNow!+/SSE2 TCL DRI2
+Tungsten Graphics, Inc. Mesa DRI R200 (RV280 5960) x86/MMX/SSE2 TCL DRI2
+Tungsten Graphics, Inc. Mesa DRI R200 (RV280 5961) x86/MMX/SSE2 TCL DRI2
 VMware, Inc. Gallium 0.3 on SVGA3D; build: RELEASE;
 VMware, Inc. Gallium 0.3 on SVGA3D; build: RELEASE;
-VMware, Inc. Gallium 0.4 on SVGA3D; build: DEBUG; mutex: MSVC Intrinsics
 VMware, Inc. Gallium 0.4 on SVGA3D; build: RELEASE;
-VMware, Inc. Gallium 0.4 on i915 (chipset: 945GM)
-VMware, Inc. Gallium 0.4 on i915 (chipset: 945GM)
-VMware, Inc. Gallium 0.4 on llvmpipe
+VMware, Inc. Gallium 0.4 on SVGA3D; build: RELEASE;
+VMware, Inc. Gallium 0.4 on i915 (chipset: 945GME)
+VMware, Inc. Gallium 0.4 on llvmpipe (LLVM 0x209)
+VMware, Inc. Gallium 0.4 on llvmpipe (LLVM 0x209)
+VMware, Inc. Gallium 0.4 on llvmpipe (LLVM 0x300)
+VMware, Inc. Gallium 0.4 on llvmpipe (LLVM 0x300)
+VMware, Inc. Gallium 0.4 on llvmpipe (LLVM 0x301)
+VMware, Inc. Gallium 0.4 on llvmpipe (LLVM 0x301)
+VMware, Inc. Gallium 0.4 on llvmpipe (LLVM 0x302)
+VMware, Inc. Gallium 0.4 on llvmpipe (LLVM 0x302)
+VMware, Inc. Gallium 0.4 on llvmpipe (LLVM 3.2, 128 bits)
+VMware, Inc. Gallium 0.4 on llvmpipe (LLVM 3.2, 128 bits)
+VMware, Inc. Gallium 0.4 on llvmpipe (LLVM 3.2, 256 bits)
+VMware, Inc. Gallium 0.4 on llvmpipe (LLVM 3.2, 256 bits)
+VMware, Inc. Gallium 0.4 on llvmpipe (LLVM 3.3, 128 bits)
+VMware, Inc. Gallium 0.4 on llvmpipe (LLVM 3.3, 128 bits)
 VMware, Inc. Gallium 0.4 on llvmpipe
-VMware, Inc. Gallium 0.4 on softpipe
-VMware, Inc. Gallium 0.4 on softpipe
+X.Org Gallium 0.4 on AMD ARUBA
+X.Org Gallium 0.4 on AMD ARUBA
 X.Org Gallium 0.4 on AMD BARTS
 X.Org Gallium 0.4 on AMD BARTS
+X.Org Gallium 0.4 on AMD CAICOS
+X.Org Gallium 0.4 on AMD CAPE VERDE
 X.Org Gallium 0.4 on AMD CEDAR
-X.Org Gallium 0.4 on AMD CEDAR
-X.Org Gallium 0.4 on AMD HEMLOCK
-X.Org Gallium 0.4 on AMD JUNIPER
+X.Org Gallium 0.4 on AMD CYPRESS
 X.Org Gallium 0.4 on AMD JUNIPER
 X.Org Gallium 0.4 on AMD PALM
+X.Org Gallium 0.4 on AMD PALM
 X.Org Gallium 0.4 on AMD REDWOOD
 X.Org Gallium 0.4 on AMD REDWOOD
 X.Org Gallium 0.4 on AMD RS780
 X.Org Gallium 0.4 on AMD RS780
 X.Org Gallium 0.4 on AMD RS880
-X.Org Gallium 0.4 on AMD RS880
 X.Org Gallium 0.4 on AMD RV610
 X.Org Gallium 0.4 on AMD RV610
 X.Org Gallium 0.4 on AMD RV620
-X.Org Gallium 0.4 on AMD RV620
 X.Org Gallium 0.4 on AMD RV630
-X.Org Gallium 0.4 on AMD RV630
-X.Org Gallium 0.4 on AMD RV635
 X.Org Gallium 0.4 on AMD RV635
+X.Org Gallium 0.4 on AMD RV670
 X.Org Gallium 0.4 on AMD RV710
 X.Org Gallium 0.4 on AMD RV710
 X.Org Gallium 0.4 on AMD RV730
 X.Org Gallium 0.4 on AMD RV730
 X.Org Gallium 0.4 on AMD RV740
-X.Org Gallium 0.4 on AMD RV740
 X.Org Gallium 0.4 on AMD RV770
-X.Org R300 Project Gallium 0.4 on ATI R300
+X.Org Gallium 0.4 on AMD SUMO
+X.Org Gallium 0.4 on AMD SUMO
+X.Org Gallium 0.4 on AMD SUMO2
+X.Org Gallium 0.4 on AMD TURKS
 X.Org R300 Project Gallium 0.4 on ATI R350
-X.Org R300 Project Gallium 0.4 on ATI R420
-X.Org R300 Project Gallium 0.4 on ATI R580
 X.Org R300 Project Gallium 0.4 on ATI R580
 X.Org R300 Project Gallium 0.4 on ATI RC410
-X.Org R300 Project Gallium 0.4 on ATI RC410
 X.Org R300 Project Gallium 0.4 on ATI RS480
-X.Org R300 Project Gallium 0.4 on ATI RS482
+X.Org R300 Project Gallium 0.4 on ATI RS480
 X.Org R300 Project Gallium 0.4 on ATI RS482
 X.Org R300 Project Gallium 0.4 on ATI RS600
 X.Org R300 Project Gallium 0.4 on ATI RS690
-X.Org R300 Project Gallium 0.4 on ATI RS690
-X.Org R300 Project Gallium 0.4 on ATI RS740
 X.Org R300 Project Gallium 0.4 on ATI RV350
 X.Org R300 Project Gallium 0.4 on ATI RV350
 X.Org R300 Project Gallium 0.4 on ATI RV370
-X.Org R300 Project Gallium 0.4 on ATI RV370
-X.Org R300 Project Gallium 0.4 on ATI RV410
+X.Org R300 Project Gallium 0.4 on ATI RV380
 X.Org R300 Project Gallium 0.4 on ATI RV410
 X.Org R300 Project Gallium 0.4 on ATI RV515
-X.Org R300 Project Gallium 0.4 on ATI RV515
 X.Org R300 Project Gallium 0.4 on ATI RV530
 X.Org R300 Project Gallium 0.4 on ATI RV530
-X.Org R300 Project Gallium 0.4 on ATI RV560
-X.Org R300 Project Gallium 0.4 on ATI RV570
 X.Org R300 Project Gallium 0.4 on ATI RV570
-X.Org R300 Project Gallium 0.4 on R420
-X.Org R300 Project Gallium 0.4 on R580
-X.Org R300 Project Gallium 0.4 on RC410
-X.Org R300 Project Gallium 0.4 on RS480
-X.Org R300 Project Gallium 0.4 on RS482
-X.Org R300 Project Gallium 0.4 on RS600
-X.Org R300 Project Gallium 0.4 on RS690
-X.Org R300 Project Gallium 0.4 on RS740
-X.Org R300 Project Gallium 0.4 on RV350
-X.Org R300 Project Gallium 0.4 on RV370
-X.Org R300 Project Gallium 0.4 on RV410
-X.Org R300 Project Gallium 0.4 on RV515
-X.Org R300 Project Gallium 0.4 on RV530
-XGI
-nouveau Gallium 0.4 on NV31
+XGI Volari V3
+http://TitaniumGL.tk NVIDIA GeForce GTX 690/3999M VRAM/TitaniumGL/4 THREADs/3D GRAPHICS ACCELERATION/4 TMUs
 nouveau Gallium 0.4 on NV34
 nouveau Gallium 0.4 on NV34
-nouveau Gallium 0.4 on NV36
-nouveau Gallium 0.4 on NV43
+nouveau Gallium 0.4 on NV42
+nouveau Gallium 0.4 on NV42
+nouveau Gallium 0.4 on NV44
 nouveau Gallium 0.4 on NV44
-nouveau Gallium 0.4 on NV46
 nouveau Gallium 0.4 on NV46
 nouveau Gallium 0.4 on NV49
 nouveau Gallium 0.4 on NV4A
@@ -2393,6 +4176,7 @@ nouveau Gallium 0.4 on NV4A
 nouveau Gallium 0.4 on NV4B
 nouveau Gallium 0.4 on NV4B
 nouveau Gallium 0.4 on NV4C
+nouveau Gallium 0.4 on NV4C
 nouveau Gallium 0.4 on NV4E
 nouveau Gallium 0.4 on NV50
 nouveau Gallium 0.4 on NV63
@@ -2412,6 +4196,7 @@ nouveau Gallium 0.4 on NV98
 nouveau Gallium 0.4 on NVA0
 nouveau Gallium 0.4 on NVA0
 nouveau Gallium 0.4 on NVA3
+nouveau Gallium 0.4 on NVA3
 nouveau Gallium 0.4 on NVA5
 nouveau Gallium 0.4 on NVA5
 nouveau Gallium 0.4 on NVA8
@@ -2420,3 +4205,21 @@ nouveau Gallium 0.4 on NVAA
 nouveau Gallium 0.4 on NVAA
 nouveau Gallium 0.4 on NVAC
 nouveau Gallium 0.4 on NVAC
+nouveau Gallium 0.4 on NVAF
+nouveau Gallium 0.4 on NVC0
+nouveau Gallium 0.4 on NVC0
+nouveau Gallium 0.4 on NVC1
+nouveau Gallium 0.4 on NVC1
+nouveau Gallium 0.4 on NVC3
+nouveau Gallium 0.4 on NVC4
+nouveau Gallium 0.4 on NVC4
+nouveau Gallium 0.4 on NVCE
+nouveau Gallium 0.4 on NVCE
+nouveau Gallium 0.4 on NVCF
+nouveau Gallium 0.4 on NVCF
+nouveau Gallium 0.4 on NVD9
+nouveau Gallium 0.4 on NVD9
+nouveau Gallium 0.4 on NVE4
+nouveau Gallium 0.4 on NVE6
+nouveau Gallium 0.4 on NVE7
+nouveau Gallium 0.4 on NVE7
diff --git a/indra/newview/tests/gpus_unmatched.txt b/indra/newview/tests/gpus_unmatched.txt
new file mode 100644
index 0000000000000000000000000000000000000000..083f29aaa01e0d85ae7ae769df17c4ad3d1c0155
--- /dev/null
+++ b/indra/newview/tests/gpus_unmatched.txt
@@ -0,0 +1,9 @@
+ATI                                                                                                                                        NO MATCH
+ATI Technologies                                                                                                                           NO MATCH
+ATI Technologies Inc.                                                                                                                      NO MATCH
+ATI Technologies Inc. (DNA-ATi 5.1.7.5x32) ATI Mobility Radeon HD 2                                                                        NO MATCH
+ATI Technologies Inc. ATI Mobility Radeon Graphics                                                                                         NO MATCH
+ATI Technologies Inc. ATI Radeon Graphics Processor                                                                                        NO MATCH
+Intel                                                                                                                                      NO MATCH
+NVIDIA Corporation /PCI/SSE2                                                                                                               NO MATCH
+NVIDIA Corporation Quadro PCI-E Series/PCI/SSE2                                                                                            NO MATCH
diff --git a/indra/newview/viewer_manifest.py b/indra/newview/viewer_manifest.py
index 894e3684276f008247dea56cf708d68b0bb657f8..9e8623c1f9c12910a6eff8c81ea8bdde5bb8c09f 100755
--- a/indra/newview/viewer_manifest.py
+++ b/indra/newview/viewer_manifest.py
@@ -38,7 +38,7 @@
 # Put it FIRST because some of our build hosts have an ancient install of
 # indra.util.llmanifest under their system Python!
 sys.path.insert(0, os.path.join(viewer_dir, os.pardir, "lib", "python"))
-from indra.util.llmanifest import LLManifest, main, proper_windows_path, path_ancestors
+from indra.util.llmanifest import LLManifest, main, proper_windows_path, path_ancestors, CHANNEL_VENDOR_BASE, RELEASE_CHANNEL
 try:
     from llbase import llsd
 except ImportError:
@@ -112,21 +112,29 @@ def construct(self):
                                   Persist=1,
                                   Type='String',
                                   Value=''),
+                    CmdLineGridChoice=dict(Comment='Default grid',
+                                  Persist=0,
+                                  Type='String',
+                                  Value=''),
                     CmdLineChannel=dict(Comment='Command line specified channel name',
                                         Persist=0,
                                         Type='String',
                                         Value=''))
                 settings_install = {}
-                for key, setting in (("sourceid", "sourceid"),
-                                     ("channel", "CmdLineChannel")):
-                    if key in self.args:
-                        # only set if value is non-empty
-                        if self.args[key]:
-                            # copy corresponding setting from settings_template
-                            settings_install[setting] = settings_template[setting].copy()
-                            # then fill in Value
-                            settings_install[setting]["Value"] = self.args[key]
-                            print "Put %s '%s' in settings_install.xml" % (setting, self.args[key])
+                if 'sourceid' in self.args and self.args['sourceid']:
+                    settings_install['sourceid'] = settings_template['sourceid'].copy()
+                    settings_install['sourceid']['Value'] = self.args['sourceid']
+                    print "Set sourceid in settings_install.xml to '%s'" % self.args['sourceid']
+
+                if 'channel_suffix' in self.args and self.args['channel_suffix']:
+                    settings_install['CmdLineChannel'] = settings_template['CmdLineChannel'].copy()
+                    settings_install['CmdLineChannel']['Value'] = self.channel_with_pkg_suffix()
+                    print "Set CmdLineChannel in settings_install.xml to '%s'" % self.channel_with_pkg_suffix()
+
+                if 'grid' in self.args and self.args['grid']:
+                    settings_install['CmdLineGridChoice'] = settings_template['CmdLineGridChoice'].copy()
+                    settings_install['CmdLineGridChoice']['Value'] = self.grid()
+                    print "Set CmdLineGridChoice in settings_install.xml to '%s'" % self.grid()
 
                 # did we actually copy anything into settings_install dict?
                 if settings_install:
@@ -197,62 +205,72 @@ def construct(self):
 
     def grid(self):
         return self.args['grid']
+
     def channel(self):
         return self.args['channel']
-    def channel_unique(self):
-        return self.channel().replace("Second Life", "").strip()
-    def channel_oneword(self):
-        return "".join(self.channel_unique().split())
-    def channel_lowerword(self):
-        return self.channel_oneword().lower()
+
+    def channel_with_pkg_suffix(self):
+        fullchannel=self.channel()
+        if 'channel_suffix' in self.args and self.args['channel_suffix']:
+            fullchannel+=' '+self.args['channel_suffix']
+        return fullchannel
+
+    def channel_variant(self):
+        global CHANNEL_VENDOR_BASE
+        return self.channel().replace(CHANNEL_VENDOR_BASE, "").strip()
+
+    def channel_type(self): # returns 'release', 'beta', 'project', or 'test'
+        global CHANNEL_VENDOR_BASE
+        channel_qualifier=self.channel().replace(CHANNEL_VENDOR_BASE, "").lower().strip()
+        if channel_qualifier.startswith('release'):
+            channel_type='release'
+        elif channel_qualifier.startswith('beta'):
+            channel_type='beta'
+        elif channel_qualifier.startswith('project'):
+            channel_type='project'
+        else:
+            channel_type='test'
+        return channel_type
+
+    def channel_variant_app_suffix(self):
+        # get any part of the compiled channel name after the CHANNEL_VENDOR_BASE
+        suffix=self.channel_variant()
+        # by ancient convention, we don't use Release in the app name
+        if self.channel_type() == 'release':
+            suffix=suffix.replace('Release', '').strip()
+        # for the base release viewer, suffix will now be null - for any other, append what remains
+        if len(suffix) > 0:
+            suffix = "_"+ ("_".join(suffix.split()))
+        # the additional_packages mechanism adds more to the installer name (but not to the app name itself)
+        if 'channel_suffix' in self.args and self.args['channel_suffix']:
+            suffix+='_'+("_".join(self.args['channel_suffix'].split()))
+        return suffix
+
+    def installer_base_name(self):
+        global CHANNEL_VENDOR_BASE
+        # a standard map of strings for replacing in the templates
+        substitution_strings = {
+            'channel_vendor_base' : '_'.join(CHANNEL_VENDOR_BASE.split()),
+            'channel_variant_underscores':self.channel_variant_app_suffix(),
+            'version_underscores' : '_'.join(self.args['version']),
+            'arch':self.args['arch']
+            }
+        return "%(channel_vendor_base)s%(channel_variant_underscores)s_%(version_underscores)s_%(arch)s" % substitution_strings
 
     def app_name(self):
-        app_suffix='Test'
-        channel_type=self.channel_lowerword()
-        if channel_type.startswith('release') :
+        global CHANNEL_VENDOR_BASE
+        channel_type=self.channel_type()
+        if channel_type == 'release':
             app_suffix='Viewer'
-        elif re.match('^(beta|project).*',channel_type) :
-            app_suffix=self.channel_unique()
-        return "Second Life "+app_suffix
-        
+        else:
+            app_suffix=self.channel_variant()
+        return CHANNEL_VENDOR_BASE + ' ' + app_suffix
+
+    def app_name_oneword(self):
+        return ''.join(self.app_name().split())
+    
     def icon_path(self):
-        icon_path="icons/"
-        channel_type=self.channel_lowerword()
-        print "Icon channel type '%s'" % channel_type
-        if channel_type.startswith('release') :
-            icon_path += 'release'
-        elif re.match('^beta.*',channel_type) :
-            icon_path += 'beta'
-        elif re.match('^project.*',channel_type) :
-            icon_path += 'project'
-        else :
-            icon_path += 'test'
-        return icon_path
-
-    def flags_list(self):
-        """ Convenience function that returns the command-line flags
-        for the grid"""
-
-        # The original role of this method seems to have been to build a
-        # grid-specific viewer: one that would, on launch, preselect a
-        # particular grid. (Apparently that dates back to when the protocol
-        # between viewer and simulator required them to be updated in
-        # lockstep, so that "the beta grid" required "a beta viewer.") But
-        # those viewer command-line switches no longer work without tweaking
-        # user_settings/grids.xml. In fact, going forward, it's unclear what
-        # use case that would address.
-
-        # This method also set a channel-specific (or grid-and-channel-
-        # specific) user_settings/settings_something.xml file. It has become
-        # clear that saving user settings in a channel-specific file causes
-        # more problems (confusion) than it solves, so we've discontinued that.
-
-        # In fact we now avoid forcing viewer command-line switches at all,
-        # instead introducing a settings_install.xml file. Command-line
-        # switches don't aggregate well; for instance the generated --channel
-        # switch actually prevented the user specifying --channel on the
-        # command line. Settings files have well-defined override semantics.
-        return None
+        return "icons/" + self.channel_type()
 
     def extract_names(self,src):
         try:
@@ -277,15 +295,9 @@ def extract_names(self,src):
         random.shuffle(names)
         return ', '.join(names)
 
-class WindowsManifest(ViewerManifest):
+class Windows_i686_Manifest(ViewerManifest):
     def final_exe(self):
-        app_suffix="Test"
-        channel_type=self.channel_lowerword()
-        if channel_type.startswith('release') :
-            app_suffix=''
-        elif re.match('^(beta|project).*',channel_type) :
-            app_suffix=''.join(self.channel_unique().split())
-        return "SecondLife"+app_suffix+".exe"
+        return self.app_name_oneword()+".exe"
 
     def test_msvcrt_and_copy_action(self, src, dst):
         # This is used to test a dll manifest.
@@ -334,7 +346,7 @@ def test_for_no_msvcrt_manifest_and_copy_action(self, src, dst):
             print "Doesn't exist:", src
         
     def construct(self):
-        super(WindowsManifest, self).construct()
+        super(Windows_i686_Manifest, self).construct()
 
         if self.is_packaging_viewer():
             # Find secondlife-bin.exe in the 'configuration' dir, then rename it to the result of final_exe.
@@ -567,65 +579,33 @@ def package_finish(self):
             'version_short' : '.'.join(self.args['version'][:-1]),
             'version_dashes' : '-'.join(self.args['version']),
             'final_exe' : self.final_exe(),
-            'grid':self.args['grid'],
-            'grid_caps':self.args['grid'].upper(),
             'flags':'',
-            'channel':self.channel(),
-            'channel_oneword':self.channel_oneword(),
-            'channel_unique':self.channel_unique(),
-            'subchannel_underscores':'_'.join(self.channel_unique().split())
+            'app_name':self.app_name(),
+            'app_name_oneword':self.app_name_oneword()
             }
 
+        installer_file = self.installer_base_name() + '_Setup.exe'
+        substitution_strings['installer_file'] = installer_file
+        
         version_vars = """
         !define INSTEXE  "%(final_exe)s"
         !define VERSION "%(version_short)s"
         !define VERSION_LONG "%(version)s"
         !define VERSION_DASHES "%(version_dashes)s"
         """ % substitution_strings
-        if self.default_channel():
-            if self.default_grid():
-                # release viewer
-                installer_file = "Second_Life_%(version_dashes)s_Setup.exe"
-                grid_vars_template = """
-                OutFile "%(installer_file)s"
-                !define INSTFLAGS "%(flags)s"
-                !define INSTNAME   "SecondLifeViewer"
-                !define SHORTCUT   "Second Life Viewer"
-                !define URLNAME   "secondlife"
-                Caption "Second Life"
-                """
-            else:
-                # alternate grid viewer
-                installer_file = "Second_Life_%(version_dashes)s_(%(grid_caps)s)_Setup.exe"
-                grid_vars_template = """
-                OutFile "%(installer_file)s"
-                !define INSTFLAGS "%(flags)s"
-                !define INSTNAME   "SecondLife%(grid_caps)s"
-                !define SHORTCUT   "Second Life (%(grid_caps)s)"
-                !define URLNAME   "secondlife%(grid)s"
-                !define UNINSTALL_SETTINGS 1
-                Caption "Second Life %(grid)s ${VERSION}"
-                """
+        
+        if self.channel_type() == 'release':
+            substitution_strings['caption'] = CHANNEL_VENDOR_BASE
         else:
-            # some other channel (grid name not used)
-            installer_file = "Second_Life_%(version_dashes)s_%(subchannel_underscores)s_Setup.exe"
-            grid_vars_template = """
+            substitution_strings['caption'] = self.app_name() + ' ${VERSION}'
+
+        inst_vars_template = """
             OutFile "%(installer_file)s"
-            !define INSTFLAGS "%(flags)s"
-            !define INSTNAME   "SecondLife%(channel_oneword)s"
-            !define SHORTCUT   "%(channel)s"
+            !define INSTNAME   "%(app_name_oneword)s"
+            !define SHORTCUT   "%(app_name)s"
             !define URLNAME   "secondlife"
-            !define UNINSTALL_SETTINGS 1
-            Caption "%(channel)s ${VERSION}"
+            Caption "%(caption)s"
             """
-        if 'installer_name' in self.args:
-            installer_file = self.args['installer_name']
-        else:
-            installer_file = installer_file % substitution_strings
-        if len(self.args['package_id']) > 0:
-            installer_file = installer_file.replace(self.args['package_id'], "")
-            installer_file = installer_file.replace(".exe", self.args['package_id'] + ".exe")
-        substitution_strings['installer_file'] = installer_file
 
         tempfile = "secondlife_setup_tmp.nsi"
         # the following replaces strings in the nsi template
@@ -633,7 +613,7 @@ def package_finish(self):
         self.replace_in("installers/windows/installer_template.nsi", tempfile, {
                 "%%VERSION%%":version_vars,
                 "%%SOURCE%%":self.get_src_prefix(),
-                "%%GRID_VARS%%":grid_vars_template % substitution_strings,
+                "%%INST_VARS%%":inst_vars_template % substitution_strings,
                 "%%INSTALL_FILES%%":self.nsi_file_commands(True),
                 "%%DELETE_FILES%%":self.nsi_file_commands(False)})
 
@@ -663,7 +643,7 @@ def package_finish(self):
         self.package_file = installer_file
 
 
-class DarwinManifest(ViewerManifest):
+class Darwin_i386_Manifest(ViewerManifest):
     def is_packaging_viewer(self):
         # darwin requires full app bundle packaging even for debugging.
         return True
@@ -685,7 +665,7 @@ def construct(self):
 
             # most everything goes in the Resources directory
             if self.prefix(src="", dst="Resources"):
-                super(DarwinManifest, self).construct()
+                super(Darwin_i386_Manifest, self).construct()
 
                 if self.prefix("cursors_mac"):
                     self.path("*.tif")
@@ -821,6 +801,7 @@ def copy_finish(self):
             self.run_command("chmod +x %r" % os.path.join(self.get_dst_prefix(), script))
 
     def package_finish(self):
+        global CHANNEL_VENDOR_BASE
         # Sign the app if requested.
         if 'signature' in self.args:
             identity = self.args['signature']
@@ -850,17 +831,9 @@ def package_finish(self):
         # MBW -- If the mounted volume name changes, it breaks the .DS_Store's background image and icon positioning.
         #  If we really need differently named volumes, we'll need to create multiple DS_Store file images, or use some other trick.
 
-        volname="Second Life Installer"  # DO NOT CHANGE without understanding comment above
+        volname=CHANNEL_VENDOR_BASE+" Installer"  # DO NOT CHANGE without understanding comment above
 
-        if len(self.args['package_id']) > 0:
-            imagename = imagename + self.args['package_id']
-        elif self.default_channel():
-            if not self.default_grid():
-                # beta case
-                imagename = imagename + '_' + self.args['grid'].upper()
-        else:
-            # first look, etc
-            imagename = imagename + '_' + self.channel_oneword().upper()
+        imagename = self.installer_base_name()
 
         sparsename = imagename + ".sparseimage"
         finalname = imagename + ".dmg"
@@ -894,7 +867,7 @@ def package_finish(self):
             # will use the release .DS_Store, and will look broken.
             # - Ambroff 2008-08-20
             dmg_template = os.path.join(
-                'installers', 'darwin', '%s-dmg' % self.channel_lowerword())
+                'installers', 'darwin', '%s-dmg' % self.channel_type())
 
             if not os.path.exists (self.src_path_of(dmg_template)):
                 dmg_template = os.path.join ('installers', 'darwin', 'release-dmg')
@@ -977,8 +950,9 @@ def construct(self):
             # recurse
             self.end_prefix("res-sdl")
 
-        # Get the icons based on the channel
+        # Get the icons based on the channel type
         icon_path = self.icon_path()
+        print "DEBUG: icon_path '%s'" % icon_path
         if self.prefix(src=icon_path, dst="") :
             self.path("secondlife_256.png","secondlife_icon.png")
             if self.prefix(src="",dst="res-sdl") :
@@ -1004,18 +978,7 @@ def copy_finish(self):
             self.run_command("chmod +x %r" % os.path.join(self.get_dst_prefix(), script))
 
     def package_finish(self):
-        if 'installer_name' in self.args:
-            installer_name = self.args['installer_name']
-        else:
-            installer_name_components = ['SecondLife_', self.args.get('arch')]
-            installer_name_components.extend(self.args['version'])
-            installer_name = "_".join(installer_name_components)
-            if self.default_channel():
-                if not self.default_grid():
-                    installer_name += '_' + self.args['grid'].upper()
-            else:
-                installer_name += '_' + self.channel_oneword().upper()
-        installer_name = installer_name + self.args['package_id']
+        installer_name = self.installer_base_name()
 
         self.strip_binaries()
 
@@ -1057,9 +1020,9 @@ def strip_binaries(self):
             print "* Going strip-crazy on the packaged binaries, since this is a RELEASE build"
             self.run_command(r"find %(d)r/bin %(d)r/lib -type f \! -name update_install | xargs --no-run-if-empty strip -S" % {'d': self.get_dst_prefix()} ) # makes some small assumptions about our packaged dir structure
 
-class Linux_i686Manifest(LinuxManifest):
+class Linux_i686_Manifest(LinuxManifest):
     def construct(self):
-        super(Linux_i686Manifest, self).construct()
+        super(Linux_i686_Manifest, self).construct()
 
         if self.prefix("../packages/lib/release", dst="lib"):
             self.path("libapr-1.so")
@@ -1145,9 +1108,9 @@ def construct(self):
             self.strip_binaries()
 
 
-class Linux_x86_64Manifest(LinuxManifest):
+class Linux_x86_64_Manifest(LinuxManifest):
     def construct(self):
-        super(Linux_x86_64Manifest, self).construct()
+        super(Linux_x86_64_Manifest, self).construct()
 
         # support file for valgrind debug tool
         self.path("secondlife-i686.supp")
diff --git a/indra/viewer_components/updater/llupdatedownloader.cpp b/indra/viewer_components/updater/llupdatedownloader.cpp
index c28ad76c77f81d18fed2c26ef18d0822e0bbf9b2..c42112af807d24e9e94a9e51342a3f2706c2b305 100755
--- a/indra/viewer_components/updater/llupdatedownloader.cpp
+++ b/indra/viewer_components/updater/llupdatedownloader.cpp
@@ -77,7 +77,8 @@ class LLUpdateDownloader::Implementation:
 	void run(void);
 	void startDownloading(LLURI const & uri, std::string const & hash);
 	void throwOnCurlError(CURLcode code);
-	bool validateDownload(void);
+	bool validateDownload(const std::string& filePath);
+	bool validateOrRemove(const std::string& filePath);
 
 	LOG_CLASS(LLUpdateDownloader::Implementation);
 };
@@ -295,9 +296,8 @@ void LLUpdateDownloader::Implementation::resume(void)
 			{
 				resumeDownloading(fileStatus.st_size);
 			}
-			else if(!validateDownload())
+			else if(!validateOrRemove(filePath))
 			{
-				LLFile::remove(filePath);
 				download(LLURI(mDownloadData["url"].asString()),
 						 mDownloadData["hash"].asString(),
 						 mDownloadData["update_channel"].asString(),
@@ -421,19 +421,13 @@ void LLUpdateDownloader::Implementation::run(void)
 	if(code == CURLE_OK)
 	{
 		LLFile::remove(mDownloadRecordPath);
-		if(validateDownload())
+		if(validateOrRemove(mDownloadData["path"]))
 		{
 			LL_INFOS("UpdaterService") << "download successful" << LL_ENDL;
 			mClient.downloadComplete(mDownloadData);
 		}
 		else
 		{
-			LL_INFOS("UpdaterService") << "download failed hash check" << LL_ENDL;
-			std::string filePath = mDownloadData["path"].asString();
-			if(filePath.size() != 0)
-			{
-				LLFile::remove(filePath);
-			}
 			mClient.downloadError("failed hash check");
 		}
 	}
@@ -449,7 +443,9 @@ void LLUpdateDownloader::Implementation::run(void)
 		LLFile::remove(mDownloadRecordPath);
 		if(mDownloadData.has("path"))
 		{
-			LLFile::remove(mDownloadData["path"].asString());
+			std::string filePath = mDownloadData["path"].asString();
+			LL_INFOS("UpdaterService") << "removing " << filePath << LL_ENDL;
+			LLFile::remove(filePath);
 		}
 		mClient.downloadError("curl error");
 	}
@@ -561,31 +557,49 @@ void LLUpdateDownloader::Implementation::throwOnCurlError(CURLcode code)
 	}
 }
 
+bool LLUpdateDownloader::Implementation::validateOrRemove(const std::string& filePath)
+{
+	bool valid = validateDownload(filePath);
+	if (! valid)
+	{
+		LL_INFOS("UpdaterService") << "removing " << filePath << LL_ENDL;
+		LLFile::remove(filePath);
+	}
+	return valid;
+}
 
-bool LLUpdateDownloader::Implementation::validateDownload(void)
+bool LLUpdateDownloader::Implementation::validateDownload(const std::string& filePath)
 {
-	std::string filePath = mDownloadData["path"].asString();
 	llifstream fileStream(filePath, std::ios_base::in | std::ios_base::binary);
 	if(!fileStream)
 	{
+		LL_INFOS("UpdaterService") << "can't open " << filePath << ", invalid" << LL_ENDL;
 		return false;
 	}
 
 	std::string hash = mDownloadData["hash"].asString();
-	if(hash.size() != 0)
+	if (! hash.empty())
 	{
-		LL_INFOS("UpdaterService") << "checking hash..." << LL_ENDL;
 		char digest[33];
 		LLMD5(fileStream).hex_digest(digest);
-		if(hash != digest)
+		if (hash == digest)
+		{
+			LL_INFOS("UpdaterService") << "verified hash " << hash
+									   << " for downloaded " << filePath << LL_ENDL;
+			return true;
+		}
+		else
 		{
-			LL_WARNS("UpdaterService") << "download hash mismatch; expected " << hash <<
-				" but download is " << digest << LL_ENDL;
+			LL_WARNS("UpdaterService") << "download hash mismatch for "
+									   << filePath << ": expected " << hash
+									   << " but computed " << digest << LL_ENDL;
+			return false;
 		}
-		return hash == digest;
 	}
 	else
 	{
+		LL_INFOS("UpdaterService") << "no hash specified for " << filePath
+								   << ", unverified" << LL_ENDL;
 		return true; // No hash check provided.
 	}
 }
diff --git a/indra/viewer_components/updater/llupdaterservice.cpp b/indra/viewer_components/updater/llupdaterservice.cpp
index 16950e1d62ea821010119022e227c2b7ecba3654..cb3be5bbdcd5a7879a601ee57c72243a3e612684 100755
--- a/indra/viewer_components/updater/llupdaterservice.cpp
+++ b/indra/viewer_components/updater/llupdaterservice.cpp
@@ -296,37 +296,49 @@ bool LLUpdaterServiceImpl::checkForInstall(bool launchInstaller)
 		update_marker.close();
 
 		// Get the path to the installer file.
-		LLSD path = update_info.get("path");
-		if(update_info["current_version"].asString() != ll_get_version())
+		std::string path(update_info.get("path"));
+		std::string downloader_version(update_info["current_version"]);
+		if (downloader_version != ll_get_version())
 		{
 			// This viewer is not the same version as the one that downloaded
-			// the update.  Do not install this update.
-			if(!path.asString().empty())
+			// the update. Do not install this update.
+			LL_INFOS("UpdaterService") << "ignoring update downloaded by "
+									   << "different viewer version "
+									   << downloader_version << LL_ENDL;
+			if (! path.empty())
 			{
-				LL_INFOS("UpdaterService") << "ignoring update dowloaded by different client version" << LL_ENDL;;
-				LLFile::remove(path.asString());
+				LL_INFOS("UpdaterService") << "removing " << path << LL_ENDL;
+				LLFile::remove(path);
 				LLFile::remove(update_marker_path());
 			}
-			else
-			{
-				; // Nothing to clean up.
-			}
-			
+
 			foundInstall = false;
 		} 
-		else if(path.isDefined() && !path.asString().empty())
+		else if (path.empty())
+		{
+			LL_WARNS("UpdaterService") << "Marker file " << update_marker_path()
+									   << " 'path' entry empty, ignoring" << LL_ENDL;
+			foundInstall = false;
+		}
+		else if (! LLFile::isfile(path))
+		{
+			LL_WARNS("UpdaterService") << "Nonexistent installer " << path
+									   << ", ignoring" << LL_ENDL;
+			foundInstall = false;
+		}
+		else
 		{
 			if(launchInstaller)
 			{
 				setState(LLUpdaterService::INSTALLING);
-				
+
 				LLFile::remove(update_marker_path());
 
 				int result = ll_install_update(install_script_path(),
-											   update_info["path"].asString(),
+											   path,
 											   update_info["required"].asBoolean(),
 											   install_script_mode());	
-				
+
 				if((result == 0) && mAppExitCallback)
 				{
 					mAppExitCallback();
@@ -360,7 +372,8 @@ bool LLUpdaterServiceImpl::checkForResume()
 			LLSD download_info;
 			LLSDSerialize::fromXMLDocument(download_info, download_marker_stream);
 			download_marker_stream.close();
-			if(download_info["current_version"].asString() == ll_get_version())
+			std::string downloader_version(download_info["current_version"]);
+			if (downloader_version == ll_get_version())
 			{
 				mIsDownloading = true;
 				mNewVersion = download_info["update_version"].asString();
@@ -371,10 +384,13 @@ bool LLUpdaterServiceImpl::checkForResume()
 			else 
 			{
 				// The viewer that started this download is not the same as this viewer; ignore.
-				LL_INFOS("UpdaterService") << "ignoring partial download from different viewer version" << LL_ENDL;;
+				LL_INFOS("UpdaterService") << "ignoring partial download "
+										   << "from different viewer version "
+										   << downloader_version << LL_ENDL;
 				std::string path = download_info["path"].asString();
 				if(!path.empty())
 				{
+					LL_INFOS("UpdaterService") << "removing " << path << LL_ENDL;
 					LLFile::remove(path);
 				}
 				LLFile::remove(download_marker_path);
@@ -539,7 +555,7 @@ bool LLUpdaterServiceImpl::onMainLoop(LLSD const & event)
 		// Check for failed install.
 		if(LLFile::isfile(ll_install_failed_marker_path()))
 		{
-			LL_DEBUGS("UpdaterService") << "found marker " << ll_install_failed_marker_path() << LL_ENDL;;
+			LL_DEBUGS("UpdaterService") << "found marker " << ll_install_failed_marker_path() << LL_ENDL;
 			int requiredValue = 0; 
 			{
 				llifstream stream(ll_install_failed_marker_path());
@@ -552,12 +568,12 @@ bool LLUpdaterServiceImpl::onMainLoop(LLSD const & event)
 			// TODO: notify the user.
 			LL_WARNS("UpdaterService") << "last install attempt failed" << LL_ENDL;;
 			LLFile::remove(ll_install_failed_marker_path());
-			
+
 			LLSD event;
 			event["type"] = LLSD(LLUpdaterService::INSTALL_ERROR);
 			event["required"] = LLSD(requiredValue);
 			LLEventPumps::instance().obtain(LLUpdaterService::pumpName()).post(event);
-			
+
 			setState(LLUpdaterService::TERMINAL);
 		}
 		else
diff --git a/indra/viewer_components/updater/scripts/darwin/update_install.py b/indra/viewer_components/updater/scripts/darwin/update_install.py
index 2fc6fcdb29e1b04a33feb56014cc96af7b84d131..08f4f0ebb9649bd284d301090a690658107b1436 100755
--- a/indra/viewer_components/updater/scripts/darwin/update_install.py
+++ b/indra/viewer_components/updater/scripts/darwin/update_install.py
@@ -17,6 +17,7 @@
 import os
 import sys
 import cgitb
+from contextlib import contextmanager
 import errno
 import glob
 import plistlib
@@ -32,6 +33,11 @@
 TITLE = "Second Life Viewer Updater"
 # Magic bundle identifier used by all Second Life viewer bundles
 BUNDLE_IDENTIFIER = "com.secondlife.indra.viewer"
+# Magic OS directory name that causes Cocoa viewer to crash on OS X 10.7.5
+# (see MAINT-3331)
+STATE_DIR = os.path.join(
+    os.environ["HOME"], "Library", "Saved Application State",
+    BUNDLE_IDENTIFIER + ".savedState")
 
 # Global handle to the MessageFrame so we can update message
 FRAME = None
@@ -136,6 +142,23 @@ def write_marker(markerfile, markertext):
         # try to log it -- otherwise shrug.
         log("%s exception: %s" % (err.__class__.__name__, err))
 
+# ****************************************************************************
+#   Utility
+# ****************************************************************************
+@contextmanager
+def allow_errno(errn):
+    """
+    Execute body of 'with' statement, accepting OSError with specific errno
+    'errn'. Propagate any other exception, or an OSError with any other errno.
+    """
+    try:
+        # run the body of the 'with' statement
+        yield
+    except OSError, err:
+        # unless errno == passed errn, re-raise the exception
+        if err.errno != errn:
+            raise
+
 # ****************************************************************************
 #   Main script logic
 # ****************************************************************************
@@ -158,12 +181,9 @@ def fail(message):
 
         # Move the old updater.log file out of the way
         logname = os.path.join(logsdir, "updater.log")
-        try:
+        # Nonexistence is okay. Anything else, not so much.
+        with allow_errno(errno.ENOENT):
             os.rename(logname, logname + ".old")
-        except OSError, err:
-            # Nonexistence is okay. Anything else, not so much.
-            if err.errno != errno.ENOENT:
-                raise
 
         # Open new updater.log.
         global LOGF
@@ -179,6 +199,11 @@ def fail(message):
         # prepare for other cleanup
         with Janitor(LOGF) as janitor:
 
+            # Under some circumstances, this script seems to be invoked with a
+            # nonexistent pathname. Check for that.
+            if not os.path.isfile(dmgfile):
+                fail(dmgfile + " has been deleted")
+
             # Try to derive the name of the running viewer app bundle from our
             # own pathname. (Hopefully the old viewer won't copy this script
             # to a temp dir before running!)
@@ -345,10 +370,24 @@ def fail(message):
             log("touch " + appdir)
             os.utime(appdir, None)      # set to current time
 
+            # MAINT-3331: remove STATE_DIR. Empirically, this resolves a
+            # persistent, mysterious crash after updating our viewer on an OS
+            # X 10.7.5 system.
+            log("rm -rf '%s'" % STATE_DIR)
+            with allow_errno(errno.ENOENT):
+                shutil.rmtree(STATE_DIR)
+
             command = ["open", appdir]
             log(' '.join(command))
             subprocess.check_call(command, stdout=LOGF, stderr=subprocess.STDOUT)
 
+        # If all the above succeeded, delete the .dmg file. We don't do this
+        # as a janitor.later() operation because we only want to do it if we
+        # get this far successfully. Note that this is out of the scope of the
+        # Janitor: we must detach the .dmg before removing it!
+        log("rm " + dmgfile)
+        os.remove(dmgfile)
+
     except Exception, err:
         # Because we carefully set sys.excepthook -- and even modify it to log
         # the problem once we have our log file open -- you might think we
diff --git a/scripts/gpu_table_tester b/scripts/gpu_table_tester
index 0fe3e9e8f7226419691994f35bc89126336aab36..af0678000d7c011977be57ccbbdbf4b772fe809f 100755
--- a/scripts/gpu_table_tester
+++ b/scripts/gpu_table_tester
@@ -85,11 +85,15 @@ my %Recognizer;     # name -> recognizer
 my %Class;          # recognizer -> class
 my %Supported;      # recognizer -> supported
 my @InOrder;        # lowercased recognizers in file order - these are the ones really used to match
+my %StatsBased;
+my %ExpectedOpenGL;
 
 $Name{$NoMatch}      = $NoMatch;
 $NameLine{$NoMatch}  = '(hard-coded)'; # use this for error messages in table parsing
 $Class{$NoMatch}     = '';
 $Supported{$NoMatch} = '';
+$StatsBased{$NoMatch} = '';
+$ExpectedOpenGL{$NoMatch} = '';
 
 while (<GPUS>)
 {
@@ -97,7 +101,7 @@ while (<GPUS>)
     next if m|^\s*$|;  # skip blank lines
 
     chomp;
-    my ($name, $regex, $class, $supported, $extra) = split('\t+');
+    my ($name, $regex, $class, $supported, $stats_based, $expected_opengl, $extra) = split('\t+');
     my $errsOnLine = $ErrorsSeen;
     if (!$name)
     {
@@ -123,7 +127,7 @@ while (<GPUS>)
         print STDERR "     $INPUT_LINE_NUMBER: name '$name'  " . ($supported ? "supported" : "unsupported") .  "  class $class - ignored\n";
         $ErrorsSeen++;
     }
-    if ($class !~ m/[0123]/)
+    if ($class !~ m/[012345]/)
     {
         print STDERR "Invalid class value '$class' on $GpuTable line $INPUT_LINE_NUMBER\n";
         $ErrorsSeen++;
@@ -133,6 +137,16 @@ while (<GPUS>)
         print STDERR "Invalid supported value '$supported' on $GpuTable line $INPUT_LINE_NUMBER\n";
         $ErrorsSeen++;
     }
+    if ($stats_based !~ m/[01]/)
+    {
+        print STDERR "Invalid stats_based value '$stats_based' on $GpuTable line $INPUT_LINE_NUMBER\n";
+        $ErrorsSeen++;
+    }
+    if ($expected_opengl !~ m/\d+(\.\d+)?/)
+    {
+        print STDERR "Invalid expected_opengl value '$expected_opengl' on $GpuTable line $INPUT_LINE_NUMBER\n";
+        $ErrorsSeen++;
+    }
     if ($extra)
     {
         print STDERR "Extra data '$extra' on $GpuTable line $INPUT_LINE_NUMBER\n";
@@ -148,6 +162,8 @@ while (<GPUS>)
         $Recognizer{$name} = $regex;
         $Class{$regex} = $class;
         $Supported{$regex} = $supported ? "supported" : "unsupported";
+        $StatsBased{$regex} = $stats_based;
+        $ExpectedOpenGL{$regex} = $expected_opengl;
     }
 }
 
@@ -163,6 +179,7 @@ my %RecognizedBy;
 while (<>) 
 {
     chomp;
+    $_ = substr($_,0,100);
     my $lcInput = lc $_;  # the real gpu table parser lowercases the input string
     my $recognizer;
     $RecognizedBy{$_} = $NoMatch;
@@ -178,34 +195,31 @@ while (<>)
 }
 
 format STDOUT_TOP =
-GPU String                                                                                               Supported?  Class  Recognizer
-------------------------------------------------------------------------------------------------------   ----------- -----  ------------------------------------
+GPU String                                                                                               Supported?  Class  Stats  OpenGL  Recognizer
+------------------------------------------------------------------------------------------------------   ----------- -----  -----  ------  ------------------------------------
 .
 format STDOUT =
-@<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<...   @<<<<<<<<<<   @>   @<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<...
-$_, $Supported{$RecognizedBy{$_}},$Class{$RecognizedBy{$_}},$Name{$RecognizedBy{$_}}
+@<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<   @<<<<<<<<<<   @>    @>     @<<<<  @<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<...
+$_, $Supported{$RecognizedBy{$_}},$Class{$RecognizedBy{$_}},$StatsBased{$RecognizedBy{$_}},$ExpectedOpenGL{$RecognizedBy{$_}},$Name{$RecognizedBy{$_}}
 .
 
-my $ReportLineTemplate = "A102xxxA12xxxAA*"; # MUST match the format STDOUT above
-
-format DIFF_TOP =
-                                                                                                         ------ OLD ------   ------ NEW ------
-GPU String                                                                                               Supported?  Class   Supported?  Class
-------------------------------------------------------------------------------------------------------   ----------- -----   ----------- -----
-.                                                                                                                                             
+my $ReportLineTemplate = "A102xxxA12xxxA2xxxxA2xxxxA5A*"; # Used to read a previous report - MUST match the format STDOUT above
 
 my ( $oldSupported, $oldClass, $newSupported, $newClass );
 
+format DIFF_TOP =
+                                                                                                         ------------- OLD -------------  ----------- NEW --------------------
+GPU String                                                                                               Supported?  Class Stats OpenGL   Supported?  Class Stats OpenGL  Line
+------------------------------------------------------------------------------------------------------   ----------- ----- ----- ------   ----------- ----- ----- ------ -----
+.                                                                                                                                             
 format DIFF =                                                                                                                                 
-@<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<...   @<<<<<<<<<<   @>    @<<<<<<<<<<   @> 
-$_,                                                                                                $oldSupported, $oldClass, $newSupported, $newClass
+@<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<   @<<<<<<<<<<   @>    @>  @<<<<    @<<<<<<<<<<    @>   @>  @<<<<  @>>>>
+$_, $oldSupported, $oldClass, $oldStatsBased, $oldExpectedOpenGL, $newSupported, $newClass, $newStatsBased, $newExpectedOpenGL, $newRecognizedLine
 .
 
 if ( ! $Diff )
 {
-    ## Print results. 
-    ## For each input, show supported or unsupported, the class, and the recognizer name
-
+    ## Print results of testing each input line and how it was recognized. 
     foreach ( sort keys %RecognizedBy )
     {
         write if ! $UnMatchedOnly || $Name{$RecognizedBy{$_}} eq $NoMatch;
@@ -214,17 +228,20 @@ if ( ! $Diff )
 }
 else
 {
+    ## Print a comparison of how the recognition this time compared to the results from the $Diff file
     open OLD, "<$Diff"
         || die "Failed to open --diff file '$Diff'\n\t$!\n";
     my $discard = 2;
     while ( <OLD> )
     {
-        if ( $discard > 0 )
+        if ( $discard <= 0 )
         {
-            my ( $gpu, $supported, $class ) = unpack $ReportLineTemplate;
+            my ( $gpu, $supported, $class, $stats, $opengl ) = unpack $ReportLineTemplate;
             $gpu =~ s/\s*$//;
             ( $OldSupported{$gpu} = $supported ) =~ s/\s*$//;
             ( $OldClass{$gpu} = $class ) =~ s/\s*$//;
+            ( $OldStatsBased{$gpu} = $stats ) =~ s/\s*$//;
+            ( $OldExpectedOpenGL{$gpu} = $opengl ) =~ s/\s*$//;
         }
         else
         {
@@ -233,33 +250,43 @@ else
     }
     close OLD;
 
-    $FORMAT_TOP_NAME = DIFF_TOP;
-    $FORMAT_NAME = DIFF;
+    $FORMAT_TOP_NAME = 'DIFF_TOP';
+    $FORMAT_NAME = 'DIFF';
     foreach ( sort keys %RecognizedBy )
     {
         $newSupported = $Supported{$RecognizedBy{$_}} || $NoMatch;
         $newClass     = $Class{$RecognizedBy{$_}};
+        $newStatsBased     = $StatsBased{$RecognizedBy{$_}};
+        $newExpectedOpenGL = $ExpectedOpenGL{$RecognizedBy{$_}};
+        $newRecognizedLine = $RecognizerLine{$RecognizedBy{$_}};
 
         if ( ! defined $OldSupported{$_} )
         {
             $oldSupported = 'NEW';
             $oldClass = '-';
+            $oldStatsBased = '-';
+            $oldExpectedOpenGL = '-';
+            write;
+            $-++; # suppresses pagination
         }
         else
         {
             $oldSupported = $OldSupported{$_} || $NoMatch;
             $oldClass     = $OldClass{$_};
+            $oldStatsBased     = $OldStatsBased{$_};
+            $oldExpectedOpenGL = $OldExpectedOpenGL{$_};
 
-            if (   ( $oldSupported eq $newSupported )
-                && ( $oldClass     eq $newClass )
+            if (   ( $oldSupported ne $newSupported )
+                || ( $oldClass  ne $newClass )
+                || ( $oldStatsBased ne $newStatsBased )
+                || ( $oldExpectedOpenGL ne $newExpectedOpenGL )
                 )
             {
-                $newSupported = '';
-                $newClass = '';
+                write;
+                $-++; # suppresses pagination
             }
         }
-        write;
-        $-++; # suppresses pagination
+
     }
 }