diff options
author | Aaron Plattner <aplattner@nvidia.com> | 2008-02-26 12:24:05 -0800 |
---|---|---|
committer | Aaron Plattner <aplattner@nvidia.com> | 2008-02-26 12:24:05 -0800 |
commit | fa97c4c2c69f91ac5a034ef2f62287b7cd5b2bde (patch) | |
tree | 0767eab1816e6bc6d54112c51a215bd45290bec4 /src/nv_driver.c | |
parent | a87b93d5c5b4d1a65a60dad271b06a2d560b71b8 (diff) |
GeForce 9600 GT.
Note that the 9600 GT should already work in 2.1.7. This change just adds its
name to the list.
Diffstat (limited to 'src/nv_driver.c')
-rw-r--r-- | src/nv_driver.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/nv_driver.c b/src/nv_driver.c index d4e0be5..2479331 100644 --- a/src/nv_driver.c +++ b/src/nv_driver.c @@ -113,7 +113,7 @@ _X_EXPORT DriverRec NV = { #endif }; -/* Known cards as of 2008/01/24 */ +/* Known cards as of 2008/02/26 */ static SymTabRec NVKnownChipsets[] = { @@ -385,6 +385,7 @@ static SymTabRec NVKnownChipsets[] = { 0x10DE042F, "Quadro NVS 290" }, { 0x10DE0611, "GeForce 8800 GT" }, { 0x10DE061A, "Quadro FX 3700" }, + { 0x10DE0622, "GeForce 9600 GT" }, {-1, NULL} }; @@ -750,10 +751,12 @@ NVIsG80(int chipType) case 0x0190: case 0x0400: case 0x0420: + case 0x05e0: case 0x0610: case 0x0620: case 0x0630: case 0x0640: + case 0x06e0: return TRUE; } |